Sha256: 7fc39bb82b8fd4589c320b2cf529d88ee32fa9cb5c80a85c630867838754ef8a

Contents?: true

Size: 366 Bytes

Versions: 23

Compression:

Stored size: 366 Bytes

Contents

require "active_support/string_inquirer"

class String
  # Wraps the current string in the <tt>ActiveSupport::StringInquirer</tt> class,
  # which gives you a prettier way to test for equality.
  #
  #   env = 'production'.inquiry
  #   env.production?  # => true
  #   env.development? # => false
  def inquiry
    ActiveSupport::StringInquirer.new(self)
  end
end

Version data entries

23 entries across 23 versions & 3 rubygems

Version Path
activesupport-5.1.7 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.7.rc1 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.6.2 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.6.1 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.6 lib/active_support/core_ext/string/inquiry.rb
tdiary-5.0.8 vendor/bundle/gems/activesupport-5.1.5/lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.5 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.5.rc1 lib/active_support/core_ext/string/inquiry.rb
pract6-0.1.0 .gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.4 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.4.rc1 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.3 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.3.rc3 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.3.rc2 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.3.rc1 lib/active_support/core_ext/string/inquiry.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.2 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.2.rc1 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.1 lib/active_support/core_ext/string/inquiry.rb
activesupport-5.1.0 lib/active_support/core_ext/string/inquiry.rb