Explicitly require ActiveSupport as a dependency; bump to 3.0.0.rc1 [ci skip]

This commit is contained in:
Ben Atkins 2013-10-29 14:09:35 -04:00
parent 36a402d115
commit 507155f74f
3 changed files with 4 additions and 2 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`.
`gem 'paper_trail', '>= 3.0.0.beta1'`
`gem 'paper_trail', '>= 3.0.0.rc1'`
2. Generate a migration which will add a `versions` table to your database.
@ -1053,6 +1053,7 @@ Many thanks to:
* [Paul Belt](https://github.com/belt)
* [Vlad Bokov](https://github.com/razum2um)
* [Sean Marcia](https://github.com/SeanMarcia)
* [Chulki Lee](https://github.com/chulkilee)
## Inspirations

View File

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

View File

@ -18,6 +18,7 @@ Gem::Specification.new do |s|
s.require_paths = ['lib']
s.add_dependency 'activerecord', ['>= 3.0', '< 5.0']
s.add_dependency 'activesupport', ['>= 3.0', '< 5.0']
s.add_development_dependency 'rake'
s.add_development_dependency 'shoulda', '~> 3.5'