-
Notifications
You must be signed in to change notification settings - Fork 14
/
dump.gemspec
30 lines (25 loc) · 1.09 KB
/
dump.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
# encoding: UTF-8
Gem::Specification.new do |s|
s.name = 'dump'
s.version = '1.2.2'
s.summary = %q{Rails app rake and capistrano tasks to create and restore dumps of database and assets}
s.homepage = "https://github.com/toy/#{s.name}"
s.authors = ['Ivan Kuchin']
s.license = 'MIT'
s.metadata = {
'bug_tracker_uri' => "https://github.com/toy/#{s.name}/issues",
'documentation_uri' => "https://www.rubydoc.info/gems/#{s.name}/#{s.version}",
'source_code_uri' => "https://github.com/toy/#{s.name}",
}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = %w[lib]
s.add_dependency 'minitar', '~> 0.6'
s.add_dependency 'progress', '~> 3.0', '>= 3.0.1', '!= 3.2.0', '!= 3.2.1'
s.add_development_dependency 'rspec', '~> 3.0'
if RUBY_VERSION >= '2.5'
s.add_development_dependency 'rubocop', '~> 1.22', '!= 1.22.2'
s.add_development_dependency 'rubocop-rspec', '~> 2.0'
end
end