-
Notifications
You must be signed in to change notification settings - Fork 3
/
power_api.gemspec
42 lines (36 loc) · 1.64 KB
/
power_api.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem"s version:
require "power_api/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "power_api"
s.version = PowerApi::VERSION
s.authors = ["Platanus", "Leandro Segovia"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/platanus/power_api"
s.summary = "Set of other gems and configurations designed to build incredible APIs"
s.description = "It is a Rails engine that gathers a set of other gems and configurations designed to build incredible APIs"
s.license = "MIT"
s.files = `git ls-files`.split($/).reject { |fn| fn.start_with? "spec" }
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails", ">= 6.0"
s.add_dependency "active_model_serializers", "~> 0.10.0"
s.add_dependency "api-pagination"
s.add_dependency "kaminari"
s.add_dependency "ransack"
s.add_dependency "responders"
s.add_dependency "simple_token_authentication", "~> 1.0"
s.add_dependency "versionist", "~> 1.0"
s.add_development_dependency "coveralls"
s.add_development_dependency "factory_bot_rails"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "pry"
s.add_development_dependency "pry-rails"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "rspec_junit_formatter"
s.add_development_dependency "rubocop", "0.65.0"
s.add_development_dependency "rubocop-rspec"
s.add_development_dependency "sqlite3", "~> 1.4.2"
end