public
Description: Build up named scopes conditionally.
Homepage:
Clone URL: git://github.com/ryanb/scope-builder.git
scope-builder / scope-builder.gemspec
100644 52 lines (44 sloc) 2.12 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Gem::Specification for Scope-builder-0.1.2
# Originally generated by Echoe
 
Gem::Specification.new do |s|
  s.name = %q{scope-builder}
  s.version = "0.1.2"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Ryan Bates"]
  s.date = %q{2008-08-28}
  s.description = %q{Build up named scopes conditionally.}
  s.email = %q{ryan (at) railscasts (dot) com}
  s.extra_rdoc_files = ["CHANGELOG", "lib/scope_builder/builder.rb", "lib/scope_builder/model_additions.rb", "lib/scope_builder.rb", "LICENSE", "README", "tasks/deployment.rake", "tasks/spec.rake"]
  s.files = ["CHANGELOG", "lib/scope_builder/builder.rb", "lib/scope_builder/model_additions.rb", "lib/scope_builder.rb", "LICENSE", "Manifest", "README", "scope-builder.gemspec", "spec/models/category.rb", "spec/models/product.rb", "spec/scope_builder/builder_spec.rb", "spec/spec_helper.rb", "tasks/deployment.rake", "tasks/spec.rake"]
  s.has_rdoc = true
  s.homepage = %q{http://github.com/ryanb/scope-builder}
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Scope-builder", "--main", "README"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{scope-builder}
  s.rubygems_version = %q{1.2.0}
  s.summary = %q{Build up named scopes conditionally.}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if current_version >= 3 then
    else
    end
  else
  end
end
 
 
# # Original Rakefile source (requires the Echoe gem):
#
# 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 }