-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrandom_data_generator.gemspec
More file actions
32 lines (27 loc) · 1.26 KB
/
Copy pathrandom_data_generator.gemspec
File metadata and controls
32 lines (27 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true
require_relative 'lib/random_data_generator/version'
Gem::Specification.new do |spec|
spec.name = 'random_data_generator'
spec.version = RandomDataGenerator::VERSION
spec.authors = ['vgartg']
spec.email = ['gopik539@mail.ru']
spec.summary = 'A Ruby library and web app for generating random data.'
spec.description = 'Generates random strings, numbers, dates, addresses, ' \
'colors, emails, phones, and more. Ships with a Sinatra ' \
'API and a Vite/TypeScript frontend.'
spec.homepage = 'https://github.com/vgartg/PET_Random-Data-Generator'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.2.0'
spec.files = Dir['lib/**/*.rb'] + Dir['resources/**/*'] + %w[LICENSE.txt README.md]
spec.require_paths = ['lib']
spec.add_dependency 'puma', '~> 6.4'
spec.add_dependency 'rack', '~> 3.1'
spec.add_dependency 'rackup', '~> 2.2'
spec.add_dependency 'sinatra', '~> 4.1'
spec.add_dependency 'sinatra-contrib', '~> 4.1'
spec.metadata = {
'source_code_uri' => 'https://github.com/vgartg/PET_Random-Data-Generator',
'bug_tracker_uri' => 'https://github.com/vgartg/PET_Random-Data-Generator/issues',
'rubygems_mfa_required' => 'true'
}
end