Skip to content

Commit

Permalink
spaces to underscores in clean_name
Browse files Browse the repository at this point in the history
  • Loading branch information
osheroff authored and Gabe Berke-Williams committed Mar 25, 2012
1 parent 75a4970 commit b21220a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/appraisal/appraisal.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def gemfile_root
end end


def clean_name def clean_name
name.gsub(/[^\w\.]/, '') name.gsub(/\s+/, '_').gsub(/[^\w]/, '')
end end
end end
end end
Expand Down

0 comments on commit b21220a

Please sign in to comment.