-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontainer_broker.gemspec
61 lines (51 loc) · 2.32 KB
/
container_broker.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
51
52
53
54
55
56
57
58
59
60
61
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "container_broker/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "container_broker"
spec.version = ContainerBroker::VERSION
spec.authors = ["Douglas Lise", "Mateus Nava", "João Vieira"]
spec.homepage = "https://github.com/globocom/container-broker"
spec.summary = "ContainerBroker"
spec.description = "ContainerBroker"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'https://rubygems.org/'
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", "~> 6.0.3", ">= 6.0.3.2"
spec.add_dependency "mongoid"
spec.add_dependency "mongoid_enumerable"
spec.add_development_dependency "byebug"
spec.add_development_dependency "fabrication"
spec.add_development_dependency "rspec-rails", "~> 4.0.0"
spec.add_development_dependency "database_cleaner"
spec.add_development_dependency "rspec-collection_matchers"
spec.add_development_dependency "rspec-json_expectations"
spec.add_development_dependency "rspec-nc"
spec.add_development_dependency "listen"
spec.add_development_dependency "spring"
spec.add_development_dependency "spring-commands-rspec"
spec.add_development_dependency "spring-watcher-listen", "~> 2.0.0"
spec.add_development_dependency "guard-rspec"
spec.add_development_dependency "rubocop"
spec.add_development_dependency "bundler-audit"
spec.add_dependency "active_model_serializers"
spec.add_dependency "config"
spec.add_dependency "idempotent-request"
spec.add_dependency "kubeclient"
spec.add_dependency "mongoid-uuid"
spec.add_dependency "sentry-raven"
spec.add_dependency "sidekiq"
spec.add_dependency "sidekiq-failures"
spec.add_dependency "sidekiq-scheduler"
spec.add_dependency "docker-api"
spec.add_dependency "measures"
end