-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
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
Rails 4.1 compatibility? #76
Comments
I ran into the same issue. As a workaround, you can just manually create the appropriate migrations and then copy and paste the code from the templates into the generated migrations. |
+1 for mer too. /Users/boti/.rvm/gems/ruby-2.0.0-p353@dime/gems/letsrate-1.0.9/lib/generators/letsrate/letsrate_generator.rb:37:in |
There is a folk of this gem that supports Rails 4.1.5. |
thanks @sungwoncho |
FYI Change this def create_migration
migration_template "migration.rb", "db/migrate/create_rates.rb"
end To this def create_rates_migration
migration_template "migration.rb", "db/migrate/create_rates.rb"
end |
Worked for me. |
`create_migration` method is reserved More details is here: muratguzel/letsrate#76 (comment)
how to access this file |
Doesn't seem to work with Rails 4.1 ... tried 1.0.8 and latest
The text was updated successfully, but these errors were encountered: