Skip to content

Commit

Permalink
Enable CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Aug 28, 2013
1 parent 4f659e3 commit 74a7ffa
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: ruby
script: 'bundle exec rake'
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- rbx-19mode
- jruby-19mode
- jruby-head

matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
source 'https://rubygems.org'
gemspec

gem 'redis-store', '~> 1.1.0', path: '../redis-store'
if ::File.directory?(gem_path = '../redis-store')
gem 'redis-store', '~> 1.1.0', path: gem_path
end
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ __`redis-rack`__ provides a Redis backed session store __Rack__. See the main [r
gem 'redis-rack'
```

### Usage
## Usage

If you are using redis-store with Rails, consider using the [redis-rails gem](https://github.com/redis-store/redis-rails) instead. For standalone usage:

Expand All @@ -33,6 +33,10 @@ bundle exec rake

If you are on **Snow Leopard** you have to run `env ARCHFLAGS="-arch x86_64" bundle exec rake`

## Status

[![Gem Version](https://badge.fury.io/rb/redis-rack.png)](http://badge.fury.io/rb/redis-rack) [![Build Status](https://secure.travis-ci.org/redis-store/redis-rack.png?branch=master)](http://travis-ci.org/jodosha/redis-rack?branch=master) [![Code Climate](https://codeclimate.com/github/jodosha/redis-store.png)](https://codeclimate.com/github/redis-store/redis-rack)

## Copyright

(c) 2009 - 2013 Luca Guidi - [http://lucaguidi.com](http://lucaguidi.com), released under the MIT license
2009 - 2013 Luca Guidi - [http://lucaguidi.com](http://lucaguidi.com), released under the MIT license

0 comments on commit 74a7ffa

Please sign in to comment.