Sha256: ae6625da8789c2d0938a251937f1b10d26e430c1583e972557c126c4cebbe6c9

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "seed-fu"
    gemspec.summary = "Allows easier database seeding of tables in Rails."
    gemspec.email = "michael@intridea.com"
    gemspec.homepage = "http://github.com/mblegih/seed-fu"
    gemspec.description = "Seed Fu is an attempt to once and for all solve the problem of inserting and maintaining seed data in a database. It uses a variety of techniques gathered from various places around the web and combines them to create what is hopefully the most robust seed data system around."
    gemspec.authors = ["Michael Bleigh"]
    gemspec.add_dependency 'rails', '>= 2.1'
    gemspec.files = FileList["[A-Z]*", "{lib,spec,rails}/**/*"] - FileList["**/*.log"]
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end


desc 'Default: run specs.'
task :default => :spec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
seed-fu-1.2.2 Rakefile