Sha256: 4b5983dce5365837869c5a3fe72172c72827a72a615d859f6eac16d570194bad

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 KB

Contents

# Scopelist

A simple way to track scopes in ActiveRecord 4.0 and 4.1.

NOTE: Only Ruby 1.9.3 and later are supported

[![Build Status](https://travis-ci.org/t27duck/scopelist.svg?branch=master)](https://travis-ci.org/t27duck/scopelist)

## Installation

Add this line to your application's Gemfile:

    gem 'scopelist'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install scopelist

## Usage

Get a list of scopes in any model:

```ruby
class MyModel < ActiveRecord::Base
  scope :a_scope, -> {...}
  scope :another_scope, -> {...}
  ...
end

MyModel.available_scopes
=> [:a_scope, :another_scope, ...]
```

Now scopes are really just class methods. If you'd like to include class methods that act like scopes, you can append the list easily.

```ruby
class MyModel < ActiveRecord::Base
  ...

  def self.some_scope
    where(...)
  end
  additional_available_scope :some_scope
end

MyModel.available_scopes
=> [:a_scope, :another_scope, :some_scope, ...]
```

## Contributing

1. Fork it ( http://github.com/t27duck/scopelist/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
scopelist-0.0.3 README.md