GithubHelp home page GithubHelp logo

scope-builder's Introduction

= Scope Builder

Build up named scopes conditionally.


== Install

First specify it in your Rails config.

	config.gem 'ryanb-scope-builder', :lib => 'scope_builder', :source => 'http://gems.github.com'

And then install it.

  rake gems:install

Rails 2.1 or later required.


== Usage

This gem adds the scope_builder method to all Active Record models. A 
builder behaves exactly like any other named scope except that calling 
other named scopes on it will alter the builder itself rather than 
returning a new named scope.

  builder = Product.scope_builder
  builder.released.visible # call a couple named scopes to change builder
  builder.cheap if only_show_cheap_products? # build scopes conditionally

The scope_builder method can also take a block which will return the 
builder. This is useful when you are using the builder in a model 
search method.

  # in product model
  def self.search(options)
    scope_builder do |builder|
      builder.released.visible
      builder.cheap if options[:cheap]
    end
  end

The scope_builder method can also be called on an existing scope.

  products = Product.released.visible
  builder = products.scope_builder
  builder.cheap if only_show_cheap_products?


== Development

This project can be found on github at the following URL.

http://github.com/ryanb/scope-builder/

If you would like to contribute to this project, please fork the 
repository and send me a pull request.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.