File: ruby-progressbar.gemspec

package info (click to toggle)
ruby-progressbar 1.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 840 kB
  • sloc: ruby: 2,958; sh: 29; makefile: 10
file content (35 lines) | stat: -rw-r--r-- 1,979 bytes parent folder | download
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
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruby-progressbar/version'

Gem::Specification.new do |spec|
  spec.name          = 'ruby-progressbar'
  spec.version       = ProgressBar::VERSION
  spec.authors       = ['thekompanee', 'jfelchner']
  spec.email         = ['support@thekompanee.com']
  spec.summary       = %q{Ruby/ProgressBar is a flexible text progress bar library for Ruby.}
  spec.description   = %q{Ruby/ProgressBar is an extremely flexible text progress bar library for Ruby. The output can be customized with a flexible formatting system including: percentage, bars of various formats, elapsed time and estimated time remaining.}
  spec.homepage      = 'https://github.com/jfelchner/ruby-progressbar'
  spec.licenses      = ['MIT']

  spec.cert_chain    = ['certs/jfelchner.pem']
  spec.signing_key   = File.expand_path('~/.gem/certs/jfelchner-private_key.pem') if $0 =~ /gem\z/

  spec.executables   = []
  spec.files         = Dir['{app,config,db,lib/ruby-progressbar}/**/*'] + %w{lib/ruby-progressbar.rb lib/progressbar.rb Rakefile README.md LICENSE.txt}

  spec.metadata      = {
    'bug_tracker_uri'   => 'https://github.com/jfelchner/ruby-progressbar/issues',
    'changelog_uri'     => 'https://github.com/jfelchner/ruby-progressbar/blob/master/CHANGELOG.md',
    'documentation_uri' => "https://github.com/jfelchner/ruby-progressbar/tree/releases/v#{ProgressBar::VERSION}",
    'homepage_uri'      => 'https://github.com/jfelchner/ruby-progressbar',
    'source_code_uri'   => 'https://github.com/jfelchner/ruby-progressbar',
    'wiki_uri'          => 'https://github.com/jfelchner/ruby-progressbar/wiki',
  }

  spec.add_development_dependency 'rspec',          ["~> 3.7"]
  spec.add_development_dependency 'rspectacular',   ["~> 0.70.6"]
  spec.add_development_dependency 'fuubar',         ["~> 2.3"]
  spec.add_development_dependency 'timecop',        ["= 0.6.0"]
end