Sha256: 9b2f12c0b3b541d2eb0c6963fa3aa5b57657abfae921916fdf49feab38308b8e
Contents?: true
Size: 849 Bytes
Versions: 2
Compression:
Stored size: 849 Bytes
Contents
# encoding: utf-8 source 'https://rubygems.org' # Use local clones if possible. # If you want to use your local copy, just symlink it to vendor. # See http://blog.101ideas.cz/posts/custom-gems-in-gemfile.html extend Module.new { def gem(name, *args) options = args.last.is_a?(Hash) ? args.last : Hash.new local_path = File.expand_path("../vendor/#{name}", __FILE__) if File.exist?(local_path) super name, options.merge(:path => local_path). delete_if { |key, _| [:git, :branch].include?(key) } else super name, *args end end } gem "SystemTimer", "1.2", :platform => :ruby_18 group :development do gem "rake" gem "yard", ">= 0.7.2" # Yard tags this buddy along. gem "RedCloth", :platform => :mri gem "changelog" gem "byebug" end group :test do gem "rspec", "~> 3.6.0" end gemspec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bunny-0.7.12 | Gemfile |
bunny-0.7.11 | Gemfile |