We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The very first require 'date' fails with error:
require 'date'
Exception NoMethodError: undefined method 'new' for: #<NameError: undefined method 'strftime' for class 'Date'>
As a workaround:
# app/application.rb require 'rho/rhoapplication' begin require 'date' rescue require 'date' end ... class AppApplication < Rho::RhoApplication ... end
The text was updated successfully, but these errors were encountered:
hramovnik
No branches or pull requests
The very first
require 'date'
fails with error:As a workaround:
The text was updated successfully, but these errors were encountered: