-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathfuubar.gemspec
34 lines (28 loc) · 1.54 KB
/
fuubar.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
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'fuubar'
spec.version = '2.5.1'
spec.authors = ['Nicholas Evans', 'Jeff Kreeftmeijer', 'jfelchner']
spec.email = ['jeff@kreeftmeijer.nl', 'accounts+git@thekompanee.com']
spec.summary = %q{the instafailing RSpec progress bar formatter}
spec.description = %q{the instafailing RSpec progress bar formatter}
spec.homepage = 'https://github.com/thekompanee/fuubar'
spec.licenses = ['MIT']
spec.cert_chain = ['certs/thekompanee.pem']
spec.signing_key = File.expand_path('~/.gem/certs/thekompanee-private_key.pem') if $0 =~ /gem\z/
spec.executables = []
spec.files = Dir['{app,config,db,lib,templates}/**/*'] + %w{README.md LICENSE.txt}
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/thekompanee/fuubar/issues',
'changelog_uri' => 'https://github.com/thekompanee/fuubar/blob/master/CHANGELOG.md',
'documentation_uri' => 'https://github.com/thekompanee/fuubar/tree/releases/v2.4.0',
'homepage_uri' => 'https://github.com/thekompanee/fuubar',
'source_code_uri' => 'https://github.com/thekompanee/fuubar',
'wiki_uri' => 'https://github.com/thekompanee/fuubar/wiki',
}
spec.add_dependency 'rspec-core', ["~> 3.0"]
spec.add_dependency 'ruby-progressbar', ["~> 1.4"]
spec.add_development_dependency 'rspec', ["~> 3.7"]
end