README.rdoc in secondbase-0.3.1 vs README.rdoc in secondbase-0.3.2
- old
+ new
@@ -13,13 +13,16 @@
* Commit and push until you are happy with your contribution
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
== System Requirements
-Secondbase requires Rails 3.x. This is mainly because it was easier to include the rake tasks into your Rails application root. With that being said, it would not be hard to port this to Rails 2.x, you simply need to manually modify your Rakefile to require 'secondbase/tasks'.
+Secondbase now supports Rails 2.x and Rails 3.x.
-If you have the time to update this gem to be backward compatible, by all means...
+== Known Issues
+The custom migration generator does not work in Rails 2.x. The work around for the time being is to use the normal migration generator provided in Rails 2.x, and then move the migration to db/migrate/secondbase:
+ ./script/generate migration CreateWidgetsTable
+ mv db/migrate/20101203211338_create_widgets_table.rb db/migrate/secondbase
== Installation
Modify your Gemfile to include Secondbase:
gem 'secondbase', '0.3.0'