lib/foodie/food.rb in foodie-oscarpay4-test-0.2.0 vs lib/foodie/food.rb in foodie-oscarpay4-test-0.2.1
- old
+ new
@@ -16,7 +16,13 @@
end
def self.pluralize(word)
word.pluralize
end
+
+ def self.something_cool
+ raise StandardError, "Important ID undefined." if important_id.blank?
+
+ "Something Cool!"
+ end
end
end