public
Description: Build up named scopes conditionally.
Homepage:
Clone URL: git://github.com/ryanb/scope-builder.git
scope-builder / Rakefile
100644 15 lines (12 sloc) 0.508 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('scope-builder', '0.1.2') do |p|
  p.summary = "Build up named scopes conditionally."
  p.description = "Build up named scopes conditionally."
  p.url = "http://github.com/ryanb/scope-builder"
  p.author = 'Ryan Bates'
  p.email = "ryan (at) railscasts (dot) com"
  p.ignore_pattern = ["script/*", "**/*.sqlite3"]
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }