forked from thekompanee/fuubar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuubar.gemspec
32 lines (24 loc) · 1.16 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.rubygems_version = '1.3.5'
s.name = 'fuubar'
s.rubyforge_project = 'fuubar'
s.version = '1.3.2'
s.platform = Gem::Platform::RUBY
s.authors = ['Nicholas Evans', 'Jeff Kreeftmeijer', 'jfelchner']
s.email = ['[email protected]']
s.date = Time.now
s.homepage = 'https://github.com/jeffkreeftmeijer/fuubar'
s.summary = 'the instafailing RSpec progress bar formatter'
s.description = 'the instafailing RSpec progress bar formatter'
s.rdoc_options = ['--charset', 'UTF-8']
s.extra_rdoc_files = %w[README.md LICENSE]
#= Manifest =#
s.files = Dir.glob("lib/**/*")
s.test_files = Dir.glob("{test,spec,features}/**/*")
s.executables = Dir.glob("bin/*").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_dependency 'rspec', ['>= 2.14.0', '< 3.1.0']
s.add_dependency 'ruby-progressbar', '~> 1.3'
end