ace/project_generator/content/Gemfile

26 lines
556 B
Ruby
Raw Normal View History

2011-06-12 20:46:39 +02:00
# 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"
2011-06-14 13:31:33 +02:00
# gem "pupu"
2011-06-12 20:46:39 +02:00
2011-06-14 12:10:13 +02:00
group(:development) do
2011-06-12 20:46:39 +02:00
gem "rack"
end