File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1
1
Gemfile.lock
2
- Makefile
3
- pkg
2
+ log
4
3
tmp
5
- * .bundle
6
4
* .gem
7
- * .jar
8
- * .o
9
- * .so
Original file line number Diff line number Diff line change @@ -22,13 +22,20 @@ Gem::Specification.new do |s|
22
22
s . add_development_dependency 'rack'
23
23
s . add_development_dependency 'rspec'
24
24
25
- unless RUBY_PLATFORM =~ /java/
25
+ jruby = RUBY_PLATFORM =~ /java/
26
+ rbx = defined? ( RUBY_ENGINE ) && RUBY_ENGINE =~ /rbx/
27
+
28
+ unless jruby
26
29
s . add_development_dependency 'rainbows' , '~> 4.4.0'
27
30
s . add_development_dependency 'thin' , '>= 1.2.0'
28
31
end
29
32
30
- unless ( defined? ( RUBY_ENGINE ) and RUBY_ENGINE =~ / rbx/ ) or RUBY_VERSION < '1.9'
33
+ unless rbx or RUBY_VERSION < '1.9'
31
34
s . add_development_dependency 'goliath'
32
35
end
36
+
37
+ unless jruby or rbx
38
+ s . add_development_dependency 'passenger' , '>= 4.0.0'
39
+ end
33
40
end
34
41
You can’t perform that action at this time.
0 commit comments