Sha256: 93997d2d3486aec738955cb28600cdaadde1eee38b42569c9a80b370413021d5

Contents?: true

Size: 1.28 KB

Versions: 2

Compression:

Stored size: 1.28 KB

Contents

# ActiveRecordAssociationQueryEconomizer

Enables to define preloading conditions in the arguments of `has_many`.

Condition is defined as an array of symbolized method name or Proc object.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'active_record_association_query_economizer'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install active_record_association_query_economizer

## Usage

```ruby
class SampleObject < ActiveRecord::Base
  has_many :sample_associations, preload_if: [:one_condition?, :another_condition?]

  def one_condition?
    true
  end

  def another_condition?
    false
  end
end
```

(Proc)

```ruby
class SampleObject < ActiveRecord::Base
  has_many :sample_associations, preload_if: -> (record) {
    true
  }
end
```

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/active_record_association_query_economizer. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.

### Testing
```
$ rake test:all
```

## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
active_record_association_query_economizer-0.1.6 README.md
active_record_association_query_economizer-0.1.5 README.md