Skip to content
This repository has been archived by the owner on May 18, 2018. It is now read-only.

Commit

Permalink
Update fir Rails 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dim committed Jan 24, 2012
1 parent 295477b commit e632eb7
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rvm:
- 1.9.2
- 1.9.3
- ree
gemfile:
- Gemfile
- Gemfile.activerecord-3.1.x
4 changes: 4 additions & 0 deletions Gemfile.activerecord-3.1.x
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "http://rubygems.org"

gemspec
gem "activerecord", "~> 3.1.0"
52 changes: 52 additions & 0 deletions Gemfile.activerecord-3.1.x.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
PATH
remote: .
specs:
preferable (0.5.0)
abstract
activerecord (>= 3.1.0)

GEM
remote: http://rubygems.org/
specs:
abstract (1.0.0)
activemodel (3.1.3)
activesupport (= 3.1.3)
builder (~> 3.0.0)
i18n (~> 0.6)
activerecord (3.1.3)
activemodel (= 3.1.3)
activesupport (= 3.1.3)
arel (~> 2.2.1)
tzinfo (~> 0.3.29)
activesupport (3.1.3)
multi_json (~> 1.0)
arel (2.2.1)
builder (3.0.0)
diff-lcs (1.1.3)
i18n (0.6.0)
multi_json (1.0.4)
rake (0.9.2.2)
rspec (2.8.0)
rspec-core (~> 2.8.0)
rspec-expectations (~> 2.8.0)
rspec-mocks (~> 2.8.0)
rspec-core (2.8.0)
rspec-expectations (2.8.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.8.0)
shoulda-matchers (1.0.0)
sqlite3 (1.3.5)
sqlite3-ruby (1.3.3)
sqlite3 (>= 1.3.3)
tzinfo (0.3.31)

PLATFORMS
ruby

DEPENDENCIES
activerecord (~> 3.1.0)
preferable!
rake
rspec
shoulda-matchers
sqlite3-ruby
46 changes: 23 additions & 23 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
PATH
remote: .
specs:
preferable (0.4.0)
preferable (0.5.0)
abstract
activerecord (~> 3.1.0)
activerecord (>= 3.1.0)

GEM
remote: http://rubygems.org/
specs:
abstract (1.0.0)
activemodel (3.1.1)
activesupport (= 3.1.1)
activemodel (3.2.0)
activesupport (= 3.2.0)
builder (~> 3.0.0)
i18n (~> 0.6)
activerecord (3.1.1)
activemodel (= 3.1.1)
activesupport (= 3.1.1)
arel (~> 2.2.1)
activerecord (3.2.0)
activemodel (= 3.2.0)
activesupport (= 3.2.0)
arel (~> 3.0.0)
tzinfo (~> 0.3.29)
activesupport (3.1.1)
activesupport (3.2.0)
i18n (~> 0.6)
multi_json (~> 1.0)
arel (2.2.1)
arel (3.0.0)
builder (3.0.0)
diff-lcs (1.1.3)
i18n (0.6.0)
multi_json (1.0.3)
rake (0.9.2)
rspec (2.7.0)
rspec-core (~> 2.7.0)
rspec-expectations (~> 2.7.0)
rspec-mocks (~> 2.7.0)
rspec-core (2.7.1)
rspec-expectations (2.7.0)
multi_json (1.0.4)
rake (0.9.2.2)
rspec (2.8.0)
rspec-core (~> 2.8.0)
rspec-expectations (~> 2.8.0)
rspec-mocks (~> 2.8.0)
rspec-core (2.8.0)
rspec-expectations (2.8.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.7.0)
shoulda-matchers (1.0.0.beta3)
sqlite3 (1.3.4)
rspec-mocks (2.8.0)
shoulda-matchers (1.0.0)
sqlite3 (1.3.5)
sqlite3-ruby (1.3.3)
sqlite3 (>= 1.3.3)
tzinfo (0.3.30)
tzinfo (0.3.31)

PLATFORMS
ruby
Expand Down
6 changes: 3 additions & 3 deletions preferable.gemspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 1.8.7'
s.required_ruby_version = '>= 1.9.2'
s.required_rubygems_version = ">= 1.3.6"

s.name = "preferable"
s.summary = "Simple preferences store for ActiveRecord"
s.description = "Great for storing user preferences"
s.version = '0.4.0'
s.version = '0.5.0'

s.authors = ["Dimitrij Denissenko", "Evgeniy Dolzhenko"]
s.email = "dimitrij@blacksquaremedia.com"
Expand All @@ -18,7 +18,7 @@ Gem::Specification.new do |s|
s.test_files = Dir['spec/**/*']

s.add_dependency "abstract"
s.add_dependency "activerecord", "~> 3.1.0"
s.add_dependency "activerecord", ">= 3.1.0"

s.add_development_dependency "rake"
s.add_development_dependency "rspec"
Expand Down

0 comments on commit e632eb7

Please sign in to comment.