-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommons.gemspec
More file actions
36 lines (30 loc) · 1.31 KB
/
commons.gemspec
File metadata and controls
36 lines (30 loc) · 1.31 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
33
34
35
36
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "commons/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "commons_yellowme"
spec.version = Commons::VERSION
spec.date = '2019-12-10'
spec.summary = "Commons is Yellowme's Rails APIs utilities gem"
spec.description = "Commons is Yellowme's Rails APIs utilities gem"
spec.authors = ["Yellowme"]
spec.email = 'hola@yellowme.mx'
spec.homepage = 'https://github.com/yellowme/commons-rails'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.add_dependency "rails", ">= 5.2"
spec.add_dependency 'json', '~> 2.0'
spec.add_dependency "active_model_serializers", "~> 0.10.10"
spec.add_dependency "strip_attributes"
spec.add_dependency "jwt"
spec.add_dependency "dry-validation"
spec.add_dependency "phonelib", "~> 0.6.29"
spec.add_development_dependency "sqlite3"
spec.add_development_dependency "rspec-rails"
spec.add_development_dependency "factory_bot_rails", "~> 5.1.1"
spec.add_development_dependency "faker"
spec.add_development_dependency "simplecov"
end