Created
August 16, 2013 05:05
-
-
Save ppworks/6247467 to your computer and use it in GitHub Desktop.
Rails.env.test?みたいなやつを普通の文字列でもヤりたい ref: http://qiita.com/ppworks/items/8a200001aa6f0c6fc068
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a= 'hoge' | |
a.hoge? # NoMethodError: undefined method `hoge?' for "hoge":String | |
a = ActiveSupport::StringInquirer.new('hoge') | |
a.hoge? # => true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment