-
Notifications
You must be signed in to change notification settings - Fork 0
/
rest-api-generator.gemspec
50 lines (40 loc) · 1.88 KB
/
rest-api-generator.gemspec
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require_relative "lib/rest_api_generator/version"
Gem::Specification.new do |spec|
spec.name = "rest-api-generator"
spec.version = RestApiGenerator::VERSION
spec.authors = ["PedroAugustoRamalhoDuarte"]
spec.email = ["pedro_aduarte@aluno.unb.br"]
spec.summary = "Build a Ruby on Rails REST API faster"
spec.description = "This gem helps you to build a Ruby on Rails REST API faster, using a scaffold-like generator that follows the best practices."
spec.homepage = "https://github.com/SwitchDreams/rest-api-generator"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata["allowed_push_host"] = "https://rubygems.org/"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/SwitchDreams/rest-api-generator"
spec.metadata["changelog_uri"] = "https://github.com/SwitchDreams/rest-api-generator"
spec.metadata["github_repo"] = "https://github.com/SwitchDreams/rest-api-generator"
spec.files = Dir["{bin,sig,lib,public,app}/**/*",
"MIT-LICENSE",
"Rakefile",
"README.md",
"rest-api-generator.gemspec",
"Gemfile",
"Gemfile.lock"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
spec.metadata["rubygems_mfa_required"] = "true"
spec.add_dependency "anyway_config", ">= 2.0.0"
spec.add_dependency "pagy"
spec.add_dependency "rails", ">= 5.0"
spec.add_development_dependency "ammeter", "~> 1.1.5"
spec.add_development_dependency "database_cleaner"
spec.add_development_dependency "rspec-rails", "~> 6.0.0"
spec.add_development_dependency "rswag"
spec.add_development_dependency "rswag-specs"
end