Skip to content

Instantly share code, notes, and snippets.

@ukitazume
Created February 28, 2012 09:56
Show Gist options
  • Select an option

  • Save ukitazume/1931660 to your computer and use it in GitHub Desktop.

Select an option

Save ukitazume/1931660 to your computer and use it in GitHub Desktop.
require 'rake'
def create
if @sub
p "created"
else
p 'cant cleated'
end
end
task :prepare do
@sub = 'paper'
p 'prepare'
end
task :create do
Rake::Task['prepare'].invoke
create
end
task :noprepare_create do
create
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment