-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathon_container.gemspec
29 lines (23 loc) · 1.29 KB
/
on_container.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
require_relative 'lib/on_container/version'
Gem::Specification.new do |spec|
spec.name = 'on_container'
spec.version = OnContainer::VERSION
spec.authors = ['Roberto Quintanilla']
spec.email = ['[email protected]']
spec.summary = %q{A small collection of scripts and routines to help ruby development within containers}
spec.description = %q{A small collection of scripts and routines to help ruby development within containers}
spec.homepage = 'https://github.com/IcaliaLabs/on-container-for-ruby'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.files = `git ls-files -- lib/* *.md *.gemspec *.txt Rakefile`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.bindir = 'exe'
spec.require_paths = ['lib']
spec.add_runtime_dependency 'activesupport', '>= 4'
spec.add_development_dependency 'bundler', '~> 2.1'
end