Sha256: f73e1bc9c9356032fcdbabd9c74bfcffa18310351ce18760ecf8104dc29e78d8

Contents?: true

Size: 1.74 KB

Versions: 12

Compression:

Stored size: 1.74 KB

Contents

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "dirty_history"
  gem.homepage = "http://github.com/GAV1N/dirty_history"
  gem.license = "MIT"
  gem.summary = "Easily keep track of changes to specific model fields."
  gem.description = "Dirty History is a simple gem that allows you to keep track of changes to specific fields in your Rails models using the ActiveRecord::Dirty module."
  gem.email = "gavin.todes@gmail.com"
  gem.authors = ["Gavin Todes"]
  # Include your dependencies below. Runtime dependencies are required when using your gem,
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
  #  gem.add_runtime_dependency 'jabber4r', '> 0.1'
  #  gem.add_development_dependency 'rspec', '> 1.2.3'  
  gem.add_dependency 'rails3_acts_as_paranoid'
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
  test.libs << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "dirty_history #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
dirty_history-0.5.1 Rakefile
dirty_history-0.5.0 Rakefile
dirty_history-0.4.10 Rakefile
dirty_history-0.4.9 Rakefile
dirty_history-0.4.8 Rakefile
dirty_history-0.4.7 Rakefile
dirty_history-0.4.6 Rakefile
dirty_history-0.4.5 Rakefile
dirty_history-0.4.4 Rakefile
dirty_history-0.4.3 Rakefile
dirty_history-0.4.2 Rakefile
dirty_history-0.3.0 Rakefile