Sha256: 235e3af55e479bdc4ee4a3d8b5743ee821a62e165fefc053731e07a0b74bba2f
Contents?: true
Size: 540 Bytes
Versions: 1
Compression:
Stored size: 540 Bytes
Contents
# encoding: utf-8 # Use local clones if possible. # If you want to use your local copy, just symlink it to vendor. extend Module.new { def gem(name, options = 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, options end end } source "http://gemcutter.org" gem "ace" gem "nake" gem "template-inheritance" group(:development) gem "rack" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ace-0.4 | project_generator/content/Gemfile |