Sequel plugin which add mass assign ability for one_to_many associations for model.
Simply install it as any other gem:
gem install sequel_bulk_attributes
Or when using bundler, add it got your Gemfile:
gem sequel_bulk_attributes
In your model:
class User < Sequel::Model plugin :bulk_attributes end
In your controller you can then do:
def index user.languages = array_of_languages end
-
Source documentation (rdoc)
-
Tests
If you’d like to contribute a feature or bugfix: Thanks! To make sure your fix/feature has a high chance of being included, please read the following guidelines:
-
Fork the project.
-
Make your feature addition or bug fix.
-
Add tests for it. This is important so we don’t break anything in a future version unintentionally.
-
Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
-
Send me a pull request. Bonus points for topic branches.