I'm trying to test a method in my console, but even the basic pluralize -
pluralize(1, 'person')
wont work..
Output:
NoMethodError: undefined method 'pluralize' for main:Object
from (pry):42:in '<main>'
but helper.method(:pluralize)
shows me : Method: ActionView::Base(ActionView::Helpers::TextHelper)#pluralize
What am i missing?
The helpers aren't included by default in the console. You can include them first and it'll work:
>> include ActionView::Helpers::TextHelper
>> pluralize(1, 'person')
# => "1 person"
Or, you can use the helper
object which Rails gives you in the console:
>> helper.pluralize(1, 'person')
# => "1 person"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With