forked from activerecord-hackery/meta_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta_search.gemspec
98 lines (92 loc) · 3.31 KB
/
meta_search.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{meta_search}
s.version = "1.1.0.pre"
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = [%q{Ernie Miller}]
s.date = %q{2011-05-06}
s.description = %q{
Allows simple search forms to be created against an AR3 model
and its associations, has useful view helpers for sort links
and multiparameter fields as well.
}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".document",
".gitmodules",
"CHANGELOG",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/meta_search.rb",
"lib/meta_search/builder.rb",
"lib/meta_search/exceptions.rb",
"lib/meta_search/helpers.rb",
"lib/meta_search/helpers/form_builder.rb",
"lib/meta_search/helpers/form_helper.rb",
"lib/meta_search/helpers/url_helper.rb",
"lib/meta_search/join_dependency.rb",
"lib/meta_search/locale/en.yml",
"lib/meta_search/method.rb",
"lib/meta_search/model_compatibility.rb",
"lib/meta_search/searches/active_record.rb",
"lib/meta_search/utility.rb",
"lib/meta_search/where.rb",
"meta_search.gemspec",
"test/fixtures/companies.yml",
"test/fixtures/company.rb",
"test/fixtures/data_type.rb",
"test/fixtures/data_types.yml",
"test/fixtures/developer.rb",
"test/fixtures/developers.yml",
"test/fixtures/developers_projects.yml",
"test/fixtures/note.rb",
"test/fixtures/notes.yml",
"test/fixtures/project.rb",
"test/fixtures/projects.yml",
"test/fixtures/schema.rb",
"test/helper.rb",
"test/locales/es.yml",
"test/locales/flanders.yml",
"test/test_search.rb",
"test/test_view_helpers.rb"
]
s.homepage = %q{http://metautonomo.us/projects/metasearch/}
s.post_install_message = %q{
*** Thanks for installing MetaSearch! ***
Be sure to check out http://metautonomo.us/projects/metasearch/ for a
walkthrough of MetaSearch's features, and click the donate button if
you're feeling especially appreciative. It'd help me justify this
"open source" stuff to my lovely wife. :)
}
s.require_paths = [%q{lib}]
s.rubygems_version = %q{1.8.0}
s.summary = %q{Object-based searching (and more) for simply creating search forms.}
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_runtime_dependency(%q<activerecord>, ["~> 3.1.0.alpha"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.1.0.alpha"])
s.add_runtime_dependency(%q<actionpack>, ["~> 3.1.0.alpha"])
else
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<activerecord>, ["~> 3.1.0.alpha"])
s.add_dependency(%q<activesupport>, ["~> 3.1.0.alpha"])
s.add_dependency(%q<actionpack>, ["~> 3.1.0.alpha"])
end
else
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<activerecord>, ["~> 3.1.0.alpha"])
s.add_dependency(%q<activesupport>, ["~> 3.1.0.alpha"])
s.add_dependency(%q<actionpack>, ["~> 3.1.0.alpha"])
end
end