public
Fork of pelargir/finder_filter
Description: An easy way to add common finders to your Rails controllers.
Homepage:
Clone URL: git://github.com/ffmike/finder_filter.git
finder_filter / finder_filter.gemspec
100644 23 lines (23 sloc) 0.714 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
  s.name = "finder_filter"
  s.version = "0.5"
  s.date = "2008-08-14"
  s.summary = "An easy way to add common finders to your Rails controllers."
  s.email = "pelargir@gmail.com"
  s.homepage = "http://github.com/pelargir/finder_filter"
  s.description = "An easy way to add common finders to your Rails controllers."
  s.has_rdoc = true
  s.authors = ["Matthew Bass"]
  s.files = [
    "CHANGELOG",
"README",
"Rakefile",
"finder_filter.gemspec",
"lib/finder_filter.rb",
"test/test_helper.rb",
"test/finder_filter_test.rb"
]
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README"]
  s.add_dependency("actionpack", ["> 2.0.1"])
end