forked from robertwahler/scope-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscope-builder.gemspec
59 lines (51 loc) · 2.41 KB
/
scope-builder.gemspec
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
53
54
55
56
57
58
59
$LOAD_PATH << File.expand_path('lib')
require 'scope_builder/version'
# Gem::Specification for Scope-builder-0.1.2
# Originally generated by Echoe
Gem::Specification.new do |s|
s.name = %q{scope-builder}
s.version = ScopeBuilder::VERSION
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.rdoc", "scope_builder_tasks/deployment.rake", "scope_builder_tasks/spec.rake"]
s.files = ["CHANGELOG", "lib/scope_builder/builder.rb", "lib/scope_builder/model_additions.rb", "lib/scope_builder.rb", "LICENSE", "Manifest", "README.rdoc", "scope-builder.gemspec", "spec/models/category.rb", "spec/models/product.rb", "spec/scope_builder/builder_spec.rb", "spec/spec_helper.rb", "scope_builder_tasks/deployment.rake", "scope_builder_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
s.add_development_dependency 'mocha'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rake'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'activerecord', '3.2.8'
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 }