1
0
Fork 0
mirror of https://github.com/paper-trail-gem/paper_trail.git synced 2022-11-09 11:33:19 -05:00

Bump to 3.0.0.rc2 [ci skip]

This commit is contained in:
Ben Atkins 2013-11-16 19:00:31 -05:00
parent 6a6e4d1473
commit 0c80986e59
3 changed files with 5 additions and 4 deletions

View file

@ -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`. 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. 2. Generate a migration which will add a `versions` table to your database.

View file

@ -1,3 +1,3 @@
module PaperTrail module PaperTrail
VERSION = '3.0.0.rc1' VERSION = '3.0.0.rc2'
end end

View file

@ -5,11 +5,11 @@ Gem::Specification.new do |s|
s.name = 'paper_trail' s.name = 'paper_trail'
s.version = PaperTrail::VERSION s.version = PaperTrail::VERSION
s.platform = Gem::Platform::RUBY 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.description = s.summary
s.homepage = 'http://github.com/airblade/paper_trail' s.homepage = 'http://github.com/airblade/paper_trail'
s.authors = ['Andy Stewart', 'Ben Atkins'] s.authors = ['Andy Stewart', 'Ben Atkins']
s.email = 'boss@airbladesoftware.com' s.email = 'batkinz@gmail.com'
s.license = 'MIT' s.license = 'MIT'
s.files = `git ls-files`.split("\n") 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 'rake'
s.add_development_dependency 'shoulda', '~> 3.5' 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 'ffaker', '>= 1.15'
s.add_development_dependency 'railties', ['>= 3.0', '< 5.0'] s.add_development_dependency 'railties', ['>= 3.0', '< 5.0']
s.add_development_dependency 'sinatra', '~> 1.0' s.add_development_dependency 'sinatra', '~> 1.0'