Skip to content

Commit 771cd3c

Browse files
valichviuginick1
authored andcommitted
do not even try to include debase if ruby < 2.0
1 parent 44e88a2 commit 771cd3c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ source "http://rubygems.org"
22

33
gem "ruby-debug-base", :platforms => [:jruby, :ruby_18, :mingw_18]
44
gem "ruby-debug-base19x", ">= 0.11.30.pre4", :platforms => [:ruby_19, :mingw_19]
5-
gem "debase", ">= 0.2.2.beta12", :platforms => [:ruby_20, :mingw_20, :ruby_21, :mingw_21, :ruby_22, :mingw_22, :ruby_23, :mingw_23, :ruby_24, :mingw_24]
5+
if RUBY_VERSION && RUBY_VERSION >= "2.0"
6+
gem "debase", ">= 0.2.2.beta12", :platforms => [:ruby_20, :mingw_20, :ruby_21, :mingw_21, :ruby_22, :mingw_22, :ruby_23, :mingw_23, :ruby_24, :mingw_24]
7+
end
68

79
gemspec
810

0 commit comments

Comments
 (0)