-
-
Notifications
You must be signed in to change notification settings - Fork 132
/
ruby-progressbar.gemspec
35 lines (30 loc) · 1.91 KB
/
ruby-progressbar.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
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 = ['[email protected]']
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 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.9"]
end