lib/blazing/recipes/rvm_recipe.rb in blazing-0.0.7 vs lib/blazing/recipes/rvm_recipe.rb in blazing-0.0.8
- old
+ new
@@ -1,17 +1,11 @@
require 'blazing/recipe'
module Blazing
-
class RvmRecipe < Blazing::Recipe
- def self.run
- puts 'buhuuuuuu, running rvm!'
- success
+ def run
+ false
end
- def self.success
- puts 'yay, ran rvm successfully!!!!!!'
- end
end
-
end