Sha256: 0057e7ee8698493c5f60e48d8ab44c44de037b1ccc019bfa5d794a674dd25d6a
Contents?: true
Size: 1.06 KB
Versions: 3
Compression:
Stored size: 1.06 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/bundle_info/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Andy Waite"] gem.email = ["github.aw@andywaite.com"] gem.description = "Command-line tool to display information about all the gems in a project's Gemfile" gem.summary = "Command-line tool to display information about all the gems in a project's Gemfile" gem.homepage = "https://github.com/andyw8/bundle_info" gem.files = `git ls-files`.split($\) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = "bundle_info" gem.require_paths = ["lib"] gem.version = BundleInfo::VERSION gem.add_dependency "gemnasium-parser" gem.add_dependency "gems" gem.add_dependency "activesupport" gem.add_dependency "colored" gem.add_development_dependency "rspec" gem.add_development_dependency "vcr" gem.add_development_dependency "webmock" gem.add_development_dependency "aruba" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bundle_info-0.0.4 | bundler_info.gemspec |
bundle_info-0.0.3 | bundler_info.gemspec |
bundle_info-0.0.2 | bundler_info.gemspec |