Sha256: 064a80a86b09e0f464aa263b1593a0500f7b38561fb603be81650c5137621cdf
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
# -*- encoding: utf-8 -*- # Bumbler may be already required due to the RUBYOPT=-rbumbler/go that we use to activate. Clear it # if so to get rid of our warning, and then load it. We just need the version number Bumbler.send(:remove_const, :VERSION) if Object.const_defined? :Bumbler load File.expand_path('../lib/bumbler.rb', __FILE__) Gem::Specification.new do |s| s.name = 'bumbler' s.version = Bumbler::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Ian MacLeod'] s.email = ['ian@nevir.net'] s.homepage = 'https://github.com/nevir/Bumbler' s.summary = %q{Track the load progress of your Bundler-based projects} s.description = %q{Why stare blankly at your terminal window when you can clutter it up with awesome progress bars?} s.rubyforge_project = 'bumbler' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ['lib'] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bumbler-0.1.4 | bumbler.gemspec |
bumbler-0.1.3 | bumbler.gemspec |