Skip to content

Instantly share code, notes, and snippets.

@ppworks
Created August 16, 2013 05:05
Show Gist options
  • Save ppworks/6247467 to your computer and use it in GitHub Desktop.
Save ppworks/6247467 to your computer and use it in GitHub Desktop.
Rails.env.test?みたいなやつを普通の文字列でもヤりたい ref: http://qiita.com/ppworks/items/8a200001aa6f0c6fc068
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