Skip to content

Commit

Permalink
fix File.join(Rails.root) - jeremy being a stickler
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrock committed Jun 22, 2011
1 parent 6f0c46c commit ab5c363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/heroku.rake
Expand Up @@ -12,7 +12,7 @@ namespace :gems do

# output .gems
raise "wtf, Rails.root is not set" unless Rails.root.present?
dot_gems = File.join(Rails.root, ".gems")
dot_gems = Rails.root.join(".gems")
File.open(dot_gems, "w") do |f|
output = []
gems.each do |gem|
Expand Down

0 comments on commit ab5c363

Please sign in to comment.