Skip to content

Commit

Permalink
more prep for rails 4 version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
spilliton committed Jul 20, 2013
1 parent ee0f5dc commit 342f3ac
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -12,6 +12,6 @@ env:
- DB=mysql ACTIVE_RECORD_VERSION=3.2.13
- DB=sqlite3 ACTIVE_RECORD_VERSION=3.2.13
# active record 4 and whatever is latest
- DB=postgres
- DB=mysql
- DB=sqlite3
- DB=postgres ACTIVE_RECORD_VERSION=latest
- DB=mysql ACTIVE_RECORD_VERSION=latest
- DB=sqlite3 ACTIVE_RECORD_VERSION=latest
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
### 0.4.0

* Support for Active Record 4

### 0.3.1

* Added support for PostGIS
Expand Down
2 changes: 1 addition & 1 deletion lib/randumb/version.rb
@@ -1,3 +1,3 @@
module Randumb
VERSION = "0.3.1"
VERSION = "0.4.0"
end
3 changes: 2 additions & 1 deletion randumb.gemspec
Expand Up @@ -16,7 +16,8 @@ Gem::Specification.new do |s|
s.add_dependency 'rake'

# need to test different versions of active record
ar_env = ENV['ACTIVE_RECORD_VERSION'] || '>= 4.0.0'
ar_env = ENV['ACTIVE_RECORD_VERSION'] || '>= 3.0.0'
ar_env = ">= 4.0.0" if ar_env == 'latest'
s.add_dependency 'activesupport', ar_env
s.add_dependency 'activerecord', ar_env

Expand Down

0 comments on commit 342f3ac

Please sign in to comment.