Sha256: bd1f56ef453e5a50256bcd0702098549c5d7a4abdec8c6062922a03e2197198f

Contents?: true

Size: 1.02 KB

Versions: 4

Compression:

Stored size: 1.02 KB

Contents

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

desc 'Default: run unit tests.'
task :default=>:test

desc 'Test the version_fu plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.libs << 'test/models'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "nbudin-version_fu"
    gemspec.summary = "Gemified version of the version_fu plugin, tracking changes from revo and jmckible."
    gemspec.description = "version_fu is a ActveRecord versioning gem that takes advantage of the new dirty attribute checking available in Rails 2.1. Previous solutions like Rick Olson's acts_as_versioned are no long compatible with Rails."
    gemspec.email = ""
    gemspec.homepage = "http://github.com/nbudin/version_fu"
    gemspec.authors = ["Jordan McKible"]
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
version_fu-1.0.2 Rakefile
edouard-version_fu-1.0.2 Rakefile
version_fu-1.0.1 Rakefile
nbudin-version_fu-1.0.0 Rakefile