Sha256: 4d9da5ea1c254259322b726bf2935abb25c648f19ba87b6cb1c3b3c3949c635c
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# encoding: UTF-8 Gem::Specification.new do |s| s.name = 'progress' s.version = '3.5.1' s.summary = %q{Show progress of long running tasks} s.homepage = "http://github.com/toy/#{s.name}" s.authors = ['Ivan Kuchin'] s.license = 'MIT' s.required_ruby_version = '>= 1.9.3' s.rubyforge_project = s.name s.metadata = { 'bug_tracker_uri' => "https://github.com/toy/#{s.name}/issues", 'changelog_uri' => "https://github.com/toy/#{s.name}/blob/master/CHANGELOG.markdown", '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_development_dependency 'rspec', '~> 3.0' if RUBY_VERSION >= '2.2' s.add_development_dependency 'rubocop', '~> 0.59' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
progress-3.5.1 | progress.gemspec |