public
Description: Another fixture replacement using named_scope. It's fast and simple.
Homepage:
Clone URL: git://github.com/jeremymcanally/foundry.git
tnp (author)
Sun May 03 13:13:22 -0700 2009
jeremymcanally (committer)
Mon May 11 14:56:35 -0700 2009
foundry / foundry.gemspec
100644 22 lines (21 sloc) 0.765 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FOUNDRY_GEMSPEC = Gem::Specification.new do |s|
  s.name = "foundry"
  s.version = "0.1.0"
  s.date = "2009-02-09"
  s.summary = s.description = "Another fixture replacement using named_scope. It's fast and simple."
  s.email = "jeremymcanally@gmail.com"
  s.homepage = "http://github.com/jeremymcanally/foundry/"
  s.has_rdoc = true
  s.authors = ["Jeremy McNally"]
  s.files = ["init.rb",
                "lib/dsl.rb",
                "lib/foundry.rb",
                "MIT-LICENSE",
                "Rakefile",
                "README.rdoc",
                "test/dsl_test.rb",
                "test/foundry_test.rb",
                "test/test_helper.rb"]
  s.rdoc_options = ["--main", "README.rdoc"]
  s.extra_rdoc_files = ["README.rdoc"]
end