diff --git a/README.md b/README.md index fa3c61961..4340e2690 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ The Rails 2.3 code is on the [`rails2`](https://github.com/airblade/paper_trail/ 1. Add `PaperTrail` to your `Gemfile`. - `gem 'paper_trail', '>= 3.0.0.rc1'` + `gem 'paper_trail', '>= 3.0.0.rc2'` 2. Generate a migration which will add a `versions` table to your database. diff --git a/lib/paper_trail/version_number.rb b/lib/paper_trail/version_number.rb index 18af9ed09..fc40f425c 100644 --- a/lib/paper_trail/version_number.rb +++ b/lib/paper_trail/version_number.rb @@ -1,3 +1,3 @@ module PaperTrail - VERSION = '3.0.0.rc1' + VERSION = '3.0.0.rc2' end diff --git a/paper_trail.gemspec b/paper_trail.gemspec index 1130b56b0..41ea961bb 100644 --- a/paper_trail.gemspec +++ b/paper_trail.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = 'paper_trail' s.version = PaperTrail::VERSION s.platform = Gem::Platform::RUBY - s.summary = "Track changes to your models' data. Good for auditing or versioning." + s.summary = "Track changes to your models' data. Good for auditing or versioning." s.description = s.summary s.homepage = 'http://github.com/airblade/paper_trail' s.authors = ['Andy Stewart', 'Ben Atkins'] - s.email = 'boss@airbladesoftware.com' + s.email = 'batkinz@gmail.com' s.license = 'MIT' s.files = `git ls-files`.split("\n") @@ -22,6 +22,7 @@ Gem::Specification.new do |s| s.add_development_dependency 'rake' s.add_development_dependency 'shoulda', '~> 3.5' + # s.add_development_dependency 'shoulda-matchers', '~> 1.5' # needed for ActiveRecord < 4 s.add_development_dependency 'ffaker', '>= 1.15' s.add_development_dependency 'railties', ['>= 3.0', '< 5.0'] s.add_development_dependency 'sinatra', '~> 1.0'