No commit activity in last 3 years
No release in over 3 years
To enable to use ActiveRecord association in the module is not ActiveRecord.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.10
~> 10.0
>= 0

Runtime

 Project Readme

FakeAssociations

Gem Version Build Status Coverage Status Code Climate

Enables association DSL in classes that don't inherit from ActiveRecord.

Installation

Add this line to your application's Gemfile:

gem 'fake_associations'

And then execute:

$ bundle

Or install it yourself as:

$ gem install fake_associations

Usage

class User
  include FakeAssociations

  # Need
  attr_accessor :id
	
  has_many :tweets
  has_many :favorites
	
  has_many :friendships, foreign_key: 'follower_id'
  has_many :followed_user, through: :friendships, source: :followed
	
  has_many :reverse_friendships, foreign_key: 'followed_id', class_name: 'Friendship'
  has_many :followers, through: :reverse_friendships, source: :follower
	
  has_many :favorite_tweets, through: :favorites, source: :tweet
end

class Friendship < ActiveRecord::Base
  #  Table name: friendships
  #
  #  id          :integer  not null, primary key
  #  follower_id :integer
  #  followed_id :integer

  belongs_to :follower, class_name: 'User'
  belongs_to :followed, class_name: 'User'
end

class Tweet < ActiveRecord::Base
  #  Table name: tweets
  #
  #  id          :integer  not null, primary key
  #  user_id     :integer
end

class Favorite < ActiveRecord::Base
  #  Table name: favorites
  #
  #  id          :integer  not null, primary key
  #  user_id     :integer
  #  tweet_id    :integer

  belongs_to :post
  belongs_to :user
end

Limitation

Support associations is only has_many and limited options.

In the future, will support more association.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake false to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/fake_associations.