Travis-ci: Temporarily comment-out "ruby-head" test

Travis currently unable to load from rubygems.org. Tested with ruby
2.0.0-head as well today; same issue.
This commit is contained in:
jonatack 2013-07-02 12:31:40 +02:00
parent 5aefc4643c
commit f60123591e
2 changed files with 6 additions and 4 deletions

View File

@ -5,7 +5,7 @@ rvm:
- 2.0.0
- ree
- rbx-18mode
- ruby-head
# - ruby-head
env:
- RAILS=3-2-stable

View File

@ -16,6 +16,8 @@ for Ransack (or MetaSearch, for that matter). Try
In your Gemfile:
For Rails 3:
```ruby
gem "ransack" # Last officially released gem (Rails 3)
```
@ -23,13 +25,13 @@ gem "ransack" # Last officially released gem (Rails 3)
Or if you want to use the bleeding edge (Rails 3):
```ruby
gem "ransack", :git => "git://github.com/ernie/ransack.git" # Track git repo
gem "ransack", :git => "git://github.com/ernie/ransack.git" # Track git repo (Rails 3)
```
For Rails 4, specify the 'rails-4' branch:
For Rails 4, specify the "rails-4" branch:
```ruby
gem 'ransack', :github => 'ernie/ransack', :branch => 'rails-4'
gem "ransack", github: "ernie/ransack", branch: "rails-4" # Use rails 4 branch
```
## Usage