|
| 1 | +# encoding: utf-8 |
| 2 | +lib = File.expand_path('../../../lib', __FILE__) |
| 3 | +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) |
| 4 | +require 'ruby-progressbar/version' |
| 5 | + |
| 6 | +Gem::Specification.new do |spec| |
| 7 | + spec.name = 'ruby-progressbar' |
| 8 | + spec.version = ProgressBar::VERSION |
| 9 | + spec.authors = ['thekompanee', 'jfelchner'] |
| 10 | + spec.email = ['support@thekompanee.com'] |
| 11 | + spec.summary = %q{Ruby/ProgressBar is a flexible text progress bar library for Ruby.} |
| 12 | + 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.} |
| 13 | + spec.homepage = 'https://github.com/jfelchner/ruby-progressbar' |
| 14 | + spec.licenses = ['MIT'] |
| 15 | + |
| 16 | + spec.cert_chain = ['certs/jfelchner.pem'] |
| 17 | + spec.signing_key = File.expand_path('~/.gem/certs/jfelchner-private_key.pem') if $0 =~ /gem\z/ |
| 18 | + |
| 19 | + spec.executables = [] |
| 20 | + spec.files = Dir['{app,config,db,lib/ruby-progressbar}/**/*'] + %w{lib/ruby-progressbar.rb Rakefile README.md LICENSE.txt} |
| 21 | + |
| 22 | + spec.metadata = { |
| 23 | + 'bug_tracker_uri' => 'https://github.com/jfelchner/ruby-progressbar/issues', |
| 24 | + 'changelog_uri' => 'https://github.com/jfelchner/ruby-progressbar/blob/master/CHANGELOG.md', |
| 25 | + 'documentation_uri' => "https://github.com/jfelchner/ruby-progressbar/tree/releases/v#{ProgressBar::VERSION}", |
| 26 | + 'homepage_uri' => 'https://github.com/jfelchner/ruby-progressbar', |
| 27 | + 'source_code_uri' => 'https://github.com/jfelchner/ruby-progressbar', |
| 28 | + 'wiki_uri' => 'https://github.com/jfelchner/ruby-progressbar/wiki', |
| 29 | + } |
| 30 | + |
| 31 | + spec.add_development_dependency 'rspec', ["~> 3.7"] |
| 32 | + spec.add_development_dependency 'rspectacular', ["~> 0.70.6"] |
| 33 | + spec.add_development_dependency 'fuubar', ["~> 2.3"] |
| 34 | + spec.add_development_dependency 'timecop', ["~> 0.9"] |
| 35 | +end |
0 commit comments