Skip to content

Commit

Permalink
Remove 1.8.7 from Travis, add 2.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: David Celis <me@davidcel.is>
  • Loading branch information
davidcelis committed Jan 9, 2014
1 parent dd9e9dc commit 2f698f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -2,10 +2,10 @@ language: ruby
services: services:
- redis-server - redis-server
rvm: rvm:
- 1.8.7
- 1.9.2 - 1.9.2
- 1.9.3 - 1.9.3
- 2.0.0 - 2.0.0
- 2.1.0
- jruby-19mode - jruby-19mode
gemfile: gemfile:
- gemfiles/rails_31.gemfile - gemfiles/rails_31.gemfile
Expand All @@ -17,3 +17,4 @@ matrix:
gemfile: gemfiles/rails_40.gemfile gemfile: gemfiles/rails_40.gemfile
- rvm: 1.9.2 - rvm: 1.9.2
gemfile: gemfiles/rails_40.gemfile gemfile: gemfiles/rails_40.gemfile
script: bundle exec rake test
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -4,7 +4,7 @@ Recommendable is a gem that allows you to quickly add a recommendation engine fo


## Requirements ## Requirements


* Ruby 1.9.x or 2.0.0. 1.8.7 works, but is no longer supported. * Ruby >= 1.9.3
* ActiveRecord, Sequel, DataMapper, Mongoid, or MongoMapper (your models must have an `id` field) * ActiveRecord, Sequel, DataMapper, Mongoid, or MongoMapper (your models must have an `id` field)
* [Sidekiq][sidekiq], [Resque][resque], [DelayedJob][delayed-job] (optional but highly recommended) * [Sidekiq][sidekiq], [Resque][resque], [DelayedJob][delayed-job] (optional but highly recommended)


Expand All @@ -18,7 +18,7 @@ Add the following to your application's `Gemfile`:
gem 'recommendable' gem 'recommendable'
``` ```


Please note that you currently must need to place Recommendable below your ORM and queueing system in the Gemfile. If you are using Sidekiq and ActiveRecord, please place `gem recommendable` below both `gem 'rails'` and `gem 'sidekiq'`. Please note that you currently must need to place Recommendable below your ORM and queueing system in the Gemfile. If you are using Sidekiq and ActiveRecord, please place `gem recommendable` below both `gem 'rails'` and `gem 'sidekiq'`.


After bundling, you should configure Recommendable. Do this somewhere after you've required it, but before it's actually used. For example, Rails users would create an initializer (`config/initializers/recommendable.rb`): After bundling, you should configure Recommendable. Do this somewhere after you've required it, but before it's actually used. For example, Rails users would create an initializer (`config/initializers/recommendable.rb`):


Expand Down

0 comments on commit 2f698f6

Please sign in to comment.