public
Description: A Rails plugin to simplify the fetching and memoization of records for parameter-based finds.
Homepage:
Clone URL: git://github.com/mbleigh/fetches.git
fetches / fetches.gemspec
100644 21 lines (21 sloc) 0.76 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
  s.name = "fetches"
  s.version = "0.0.4"
  s.date = "2008-07-28"
  s.summary = "Rails plugin for simplified parameter-based model fetching."
  s.email = "michael@intridea.com"
  s.homepage = "http://github.com/mbleigh/fetches"
  s.description = "Rails plugin for simplified parameter-based model fetching."
  s.has_rdoc = true
  s.authors = ["Michael Bleigh"]
  s.files = [ "MIT-LICENSE",
              "README",
              "Rakefile",
              "lib/fetches.rb",
              "lib/action_controller/fetches.rb",
              "rails/init.rb",
              "test/fetcher_test_helper.rb",
              "test/fetches_test.rb" ]
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README", "MIT-LICENSE"]
end