Skip to content

Commit

Permalink
Remove one last ActiveSupport dependency
Browse files Browse the repository at this point in the history
kmayer committed Nov 24, 2012
1 parent 847646e commit b3fa28d
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/heroku_san/tasks.rb
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@
rev = stage.revision
puts "#{stage.name} is shorthand for the Heroku app #{stage.app} located at:"
puts " #{stage.repo}"
puts " @ #{rev.blank? ? 'not deployed' : rev}"
puts " @ #{(rev == '') ? 'not deployed' : rev}"
puts
end
end
2 changes: 1 addition & 1 deletion lib/heroku_san/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module HerokuSan
VERSION = "4.0.5"
VERSION = "4.0.6"
end

0 comments on commit b3fa28d

Please sign in to comment.