Adds basic ActiveRecord-like associations to static data.
Add this line to your application's Gemfile:
gem "static_association"And then execute:
$ bundle
Or install it yourself as:
$ gem install static_association
Create your static association class:
class Day
include StaticAssociation
attr_accessor :name
record id: 0 do |day|
day.name = :monday
end
endCalling record will allow you to create an instance of this static model,
a unique id is mandatory. The newly created object is yielded to the passed
block.
The Day class will gain .all, .find, .find_by_id, and .where methods.
- The
.allmethod returns all the static records defined in the class. - The
.findmethod accepts a single id and returns the matching record. If the record does not exist, aRecordNotFounderror is raised. - The
.find_by_idmethod behaves similarly to the.findmethod, except it returnsnilwhen a record does not exist. - The
.wheremethod accepts an array of ids and returns all records with matching ids.
Currently just a 'belongs to' association can be created. This behaviour can be
mixed into an ActiveRecord model:
class Event < ActiveRecord::Base
extend StaticAssociation::AssociationHelpers
belongs_to_static :day
endThis assumes your model has a field day_id.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Run lint checks and tests (
bundle exec rake) - Push to the branch (
git push origin my-new-feature) - Create new Pull Request