forked from jfelchner/ruby-progressbar
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-progressbar.gemspec
More file actions
Latest commit
39 lines (31 loc) · 1.53 KB
/
Copy pathruby-progressbar.gemspec
File metadata and controls
39 lines (31 loc) · 1.53 KB
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
36
37
38
39
# -*- encoding: utf-8 -*-
$:.pushFile.expand_path("../lib",__FILE__)
require"ruby-progressbar/version"
Gem::Specification.newdo |s|
s.rubygems_version='1.3.5'
s.name='ruby-progressbar'
s.rubyforge_project='ruby-progressbar'
s.version=ProgressBar::VERSION
s.platform=Gem::Platform::RUBY
s.authors=["thekompanee","jfelchner"]
s.email='support@thekompanee.com'
s.date=Time.now
s.homepage='https://github.com/jfelchner/ruby-progressbar'
s.summary='Ruby/ProgressBar is a flexible text progress bar library for Ruby.'
s.description=<<-THEDOCTOR
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.
THEDOCTOR
s.rdoc_options=['--charset','UTF-8']
s.extra_rdoc_files=%w[README.mdLICENSE]
#= Manifest =#
s.files=`git ls-files`.split($/)
s.executables=s.files.grep(%r{^bin/}){ |f| File.basename(f)}
s.test_files=s.files.grep(%r{^(test|spec|features)/})
s.require_paths=["lib"]
s.add_development_dependency('rspec','~> 2.13')
s.add_development_dependency('rspectacular','~> 0.13')
s.add_development_dependency('timecop','~> 0.6')
s.add_development_dependency('simplecov','~> 0.8pre')
end