This repository has been archived by the owner on Mar 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 140
/
meta_search.gemspec
90 lines (85 loc) · 3.38 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
# 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 = "meta_search"
s.version = "1.1.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Ernie Miller"]
s.date = "2012-02-02"
s.description = "\n Allows simple search forms to be created against an AR3 model\n and its associations, has useful view helpers for sort links\n and multiparameter fields as well.\n "
s.email = "[email protected]"
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".document",
".gitmodules",
"CHANGELOG",
"Gemfile",
"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/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 = "http://metautonomo.us/projects/metasearch/"
s.post_install_message = "\n*** Thanks for installing MetaSearch! ***\nBe sure to check out http://metautonomo.us/projects/metasearch/ for a\nwalkthrough of MetaSearch's features, and click the donate button if\nyou're feeling especially appreciative. It'd help me justify this\n\"open source\" stuff to my lovely wife. :)\n\n"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.15"
s.summary = "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_runtime_dependency(%q<activerecord>, ["~> 3.1"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.1"])
s.add_runtime_dependency(%q<polyamorous>, ["~> 0.5.0"])
s.add_runtime_dependency(%q<actionpack>, ["~> 3.1"])
s.add_development_dependency(%q<shoulda>, ["~> 2.11"])
else
s.add_dependency(%q<activerecord>, ["~> 3.1"])
s.add_dependency(%q<activesupport>, ["~> 3.1"])
s.add_dependency(%q<polyamorous>, ["~> 0.5.0"])
s.add_dependency(%q<actionpack>, ["~> 3.1"])
s.add_dependency(%q<shoulda>, ["~> 2.11"])
end
else
s.add_dependency(%q<activerecord>, ["~> 3.1"])
s.add_dependency(%q<activesupport>, ["~> 3.1"])
s.add_dependency(%q<polyamorous>, ["~> 0.5.0"])
s.add_dependency(%q<actionpack>, ["~> 3.1"])
s.add_dependency(%q<shoulda>, ["~> 2.11"])
end
end