Skip to content

Commit

Permalink
Soething
Browse files Browse the repository at this point in the history
  • Loading branch information
cchalm committed May 17, 2014
1 parent dc29d8d commit a1e10c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/models/ingredient_factory.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def get_ingredient_from_db_object(db_ingredient)
@ingredients[db_ingredient.id]
end

private:
private
def construct_new_ingredient(db_ingredient)
IngredientObject.new(db_ingredient.description, db_ingredient.quantity,
db_ingredient.units)
Expand Down
2 changes: 1 addition & 1 deletion app/models/recipe_factory.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def get_recipe_from_db_object(db_recipe)
@recipes[db_recipe.id]
end

private:
private
def construct_new_recipe(db_recipe)
step_maker = StepFactory.new
ingred_maker = IngredientFactory.new
Expand Down
2 changes: 1 addition & 1 deletion app/models/step_factory.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_step_from_db_object(db_step)
@steps[db_step.id]
end

private:
private
def construct_new_step(db_step)
equipment = Set[]
unless db_step.equipment.burner == 0
Expand Down

1 comment on commit a1e10c6

@src712
Copy link
Collaborator

@src712 src712 commented on a1e10c6 May 17, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Syntax error that prevented Heroku from deploying our website.

Please sign in to comment.