public
Rubygem
Description: Dumps YAML fixtures from existing data using ActiveRecord
Homepage: http://nubyonrails.com
Clone URL: git://github.com/topfunky/ar_fixtures.git
ar_fixtures / Rakefile
100644 14 lines (12 sloc) 0.47 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rubygems'
require 'hoe'
 
Hoe.new("ar_fixtures", '0.0.4') do |p|
  p.summary = "Creates test fixtures from data in the database."
  p.description = "Creates test fixtures from data in the database."
  p.rubyforge_name = 'seattlerb'
  p.author = 'Geoffrey Grosenbach'
  p.email = 'boss AT topfunky.com'
  p.url = "http://rubyforge.org/projects/seattlerb"
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
  p.test_globs = ["test/*_test.rb"]
end