├── .gitignore ├── CHANGELOG ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── has-many-with-set.gemspec ├── lib ├── generators │ └── has_many_with_set │ │ ├── migration_generator.rb │ │ └── templates │ │ └── sets.rb.erb ├── has-many-with-set.rb └── has-many-with-set │ ├── accessors.rb │ ├── callbacks.rb │ ├── has-many-with-set.rb │ ├── queries.rb │ ├── relationships.rb │ └── version.rb └── test ├── .gitignore ├── has-many-with-set_test.rb ├── support ├── models.rb └── prepare_activerecord.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/Rakefile -------------------------------------------------------------------------------- /has-many-with-set.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/has-many-with-set.gemspec -------------------------------------------------------------------------------- /lib/generators/has_many_with_set/migration_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/lib/generators/has_many_with_set/migration_generator.rb -------------------------------------------------------------------------------- /lib/generators/has_many_with_set/templates/sets.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/lib/generators/has_many_with_set/templates/sets.rb.erb -------------------------------------------------------------------------------- /lib/has-many-with-set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/lib/has-many-with-set.rb -------------------------------------------------------------------------------- /lib/has-many-with-set/accessors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/lib/has-many-with-set/accessors.rb -------------------------------------------------------------------------------- /lib/has-many-with-set/callbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/lib/has-many-with-set/callbacks.rb -------------------------------------------------------------------------------- /lib/has-many-with-set/has-many-with-set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/lib/has-many-with-set/has-many-with-set.rb -------------------------------------------------------------------------------- /lib/has-many-with-set/queries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/lib/has-many-with-set/queries.rb -------------------------------------------------------------------------------- /lib/has-many-with-set/relationships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/lib/has-many-with-set/relationships.rb -------------------------------------------------------------------------------- /lib/has-many-with-set/version.rb: -------------------------------------------------------------------------------- 1 | module HasManyWithSet 2 | VERSION = "2.0.2" 3 | end 4 | -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | -------------------------------------------------------------------------------- /test/has-many-with-set_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/test/has-many-with-set_test.rb -------------------------------------------------------------------------------- /test/support/models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/test/support/models.rb -------------------------------------------------------------------------------- /test/support/prepare_activerecord.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/test/support/prepare_activerecord.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebobby/has-many-with-set/HEAD/test/test_helper.rb --------------------------------------------------------------------------------