wilson (owner)

Revisions

gist: 214626 Download_button fork
public
Public Clone URL: git://gist.github.com/214626.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Run the bundler directly instead of relying on Rake to do it
if ARGV.any? {|task_name| task_name =~ /^gems:bundle$/}
  system "gem bundle"
end
 
require(File.join(File.dirname(__FILE__), 'config', 'boot'))
 
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
require 'tasks/rails'
 
namespace :gem do
  desc "Fictitious task to represent gem bundling"
  task :bundle do
    #nothing
  end
end