Skip to content

Commit

Permalink
Revert back to irb 1.0.0 for now
Browse files Browse the repository at this point in the history
Recent irb versions have code that uses JRuby.compile_ir to test
the syntax of incoming code. However we recently changed our boot
requires such that `compile_ir` is not bound by default.

This can be reverted and IRB updated once ruby/irb#93 gets into
a release.
  • Loading branch information
headius committed Apr 13, 2020
1 parent 8377849 commit 52f3012
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 40 deletions.
4 changes: 1 addition & 3 deletions lib/pom.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ def log(message=nil)
['e2mmap', '0.1.0'],
['fileutils', '1.4.1'],
['forwardable', '1.2.0'],
['io-console', '0.5.6'], # dummy on JRuby but dependency of irb
['ipaddr', '1.2.2'],
['irb', '1.2.3'],
['irb', '1.0.0'],
['jar-dependencies', '${jar-dependencies.version}'],
['jruby-readline', '1.3.7'],
['jruby-openssl', '0.10.4'],
Expand All @@ -36,7 +35,6 @@ def log(message=nil)
['racc', '1.5.0'],
['rake-ant', '1.0.4'],
['rdoc', '${rdoc.version}'],
['reline', '0.1.3'], # dependency of irb
['rexml', '3.1.9'],
['rss', '0.2.7'],
['scanf', '1.0.0'],
Expand Down
40 changes: 4 additions & 36 deletions lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,6 @@ DO NOT MODIFIY - GENERATED CODE
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>io-console</artifactId>
<version>0.5.6</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>jar-dependencies</artifactId>
<groupId>rubygems</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ipaddr</artifactId>
Expand All @@ -125,7 +112,7 @@ DO NOT MODIFIY - GENERATED CODE
<dependency>
<groupId>rubygems</groupId>
<artifactId>irb</artifactId>
<version>1.2.3</version>
<version>1.0.0</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
Expand Down Expand Up @@ -278,19 +265,6 @@ DO NOT MODIFIY - GENERATED CODE
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>reline</artifactId>
<version>0.1.3</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>jar-dependencies</artifactId>
<groupId>rubygems</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rexml</artifactId>
Expand Down Expand Up @@ -521,15 +495,12 @@ DO NOT MODIFIY - GENERATED CODE
<include>cache/forwardable*1.2.0.gem</include>
<include>gems/forwardable*1.2.0/**</include>
<include>specifications/forwardable*1.2.0.gemspec</include>
<include>cache/io-console*0.5.6.gem</include>
<include>gems/io-console*0.5.6/**</include>
<include>specifications/io-console*0.5.6.gemspec</include>
<include>cache/ipaddr*1.2.2.gem</include>
<include>gems/ipaddr*1.2.2/**</include>
<include>specifications/ipaddr*1.2.2.gemspec</include>
<include>cache/irb*1.2.3.gem</include>
<include>gems/irb*1.2.3/**</include>
<include>specifications/irb*1.2.3.gemspec</include>
<include>cache/irb*1.0.0.gem</include>
<include>gems/irb*1.0.0/**</include>
<include>specifications/irb*1.0.0.gemspec</include>
<include>cache/jar-dependencies*${jar-dependencies.version}.gem</include>
<include>gems/jar-dependencies*${jar-dependencies.version}/**</include>
<include>specifications/jar-dependencies*${jar-dependencies.version}.gemspec</include>
Expand Down Expand Up @@ -563,9 +534,6 @@ DO NOT MODIFIY - GENERATED CODE
<include>cache/rdoc*${rdoc.version}.gem</include>
<include>gems/rdoc*${rdoc.version}/**</include>
<include>specifications/rdoc*${rdoc.version}.gemspec</include>
<include>cache/reline*0.1.3.gem</include>
<include>gems/reline*0.1.3/**</include>
<include>specifications/reline*0.1.3.gemspec</include>
<include>cache/rexml*3.1.9.gem</include>
<include>gems/rexml*3.1.9/**</include>
<include>specifications/rexml*3.1.9.gemspec</include>
Expand Down
1 change: 0 additions & 1 deletion spec/tags/ruby/core/binding/irb_tags.txt

This file was deleted.

0 comments on commit 52f3012

Please sign in to comment.