Sha256: 543c50bb8fca9dfecfe4dc6cd6b17429d6acb23195f81cf74296afb89d66fc31
Contents?: true
Size: 556 Bytes
Versions: 8
Compression:
Stored size: 556 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" # gem "pupu" group(:development) do gem "rack" end
Version data entries
8 entries across 8 versions & 1 rubygems