File tree Expand file tree Collapse file tree 2 files changed +19
-12
lines changed Expand file tree Collapse file tree 2 files changed +19
-12
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,15 @@ language: ruby
2
2
script : " script/test_all"
3
3
bundler_args : " --standalone --binstubs --without documentation"
4
4
rvm :
5
- - 1.8.7
6
- - 1.9.2
5
+ - 2.1.0
6
+ - 2.0.0
7
7
- 1.9.3
8
+ - 1.9.2
9
+ - 1.8.7
8
10
- ree
9
- - jruby-18mode
10
11
- jruby-19mode
11
- - rbx-18mode
12
- - rbx-19mode
13
- - 2.0.0
14
- matrix :
15
- allow_failures :
16
- - rvm : rbx-19mode
17
- - rvm : rbx-18mode
12
+ - jruby-18mode
13
+ - rbx
14
+ env :
15
+ - BRANCH=master
16
+ - BRANCH=2-99-maintenance
Original file line number Diff line number Diff line change @@ -2,17 +2,25 @@ source 'https://rubygems.org'
2
2
3
3
gemspec
4
4
5
- %w[ rspec rspec-core rspec-expectations rspec-mocks rspec-support ] . each do |lib |
5
+ %w[ rspec rspec-core rspec-expectations rspec-mocks ] . each do |lib |
6
6
library_path = File . expand_path ( "../../#{ lib } " , __FILE__ )
7
7
if File . exist? ( library_path )
8
8
gem lib , :path => library_path
9
9
else
10
- gem lib , :git => "git://github.com/rspec/#{ lib } .git" , :branch => "2-99-maintenance" unless lib == 'rspec-support'
10
+ gem lib , :git => "git://github.com/rspec/#{ lib } .git" ,
11
+ :branch => ENV . fetch ( 'BRANCH' , "master" )
11
12
end
12
13
end
13
14
15
+ # only the master branche is supported on rspec-support
16
+ gem "rspec-support" , :git => "git://github.com/rspec/rspec-support.git"
17
+
14
18
gem "cucumber" , "~> 1.1.9"
15
19
gem "aruba" , "~> 0.5"
16
20
gem "rake" , "~> 10.0.0"
17
21
22
+ platform :rbx do
23
+ gem 'rubysl'
24
+ end
25
+
18
26
eval File . read ( 'Gemfile-custom' ) if File . exist? ( 'Gemfile-custom' )
You can’t perform that action at this time.
0 commit comments