Sha256: f317dbd3eb5d8e932a00502a5891cf1674b5ef013d6e0c3d38f8de2e5806753a

Contents?: true

Size: 1018 Bytes

Versions: 1

Compression:

Stored size: 1018 Bytes

Contents

# encoding: UTF-8

Gem::Specification.new do |s|
  s.name        = 'progress'
  s.version     = '3.6.0'
  s.summary     = %q{Show progress of long running tasks}
  s.homepage    = "https://github.com/toy/#{s.name}"
  s.authors     = ['Ivan Kuchin']
  s.license     = 'MIT'

  s.required_ruby_version = '>= 1.9.3'

  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.4'
    s.add_development_dependency 'rubocop', '~> 1.0'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
progress-3.6.0 progress.gemspec