Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ffea13686a18^
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4662b4a2d5f6
Choose a head ref
  • 7 commits
  • 48 files changed
  • 1 contributor

Commits on May 15, 2018

  1. Whitespace cleanup.

    headius committed May 15, 2018
    Copy the full SHA
    ffea136 View commit details
  2. Alphabetize and reformat.

    headius committed May 15, 2018
    Copy the full SHA
    e601cb5 View commit details
  3. Copy the full SHA
    0c0161d View commit details
  4. Switch to cmath default gem.

    headius committed May 15, 2018
    Copy the full SHA
    eb3306c View commit details
  5. Switch to csv default gem.

    headius committed May 15, 2018
    Copy the full SHA
    70f918d View commit details
  6. Switch to scanf default gem.

    headius committed May 15, 2018
    Copy the full SHA
    983272d View commit details
  7. Copy the full SHA
    4662b4a View commit details
Showing with 137 additions and 12,223 deletions.
  1. +5 −0 .gitignore
  2. +1 −1 core/src/main/java/org/jruby/ir/operands/UndefinedValue.java
  3. +22 −17 lib/pom.rb
  4. +98 −20 lib/pom.xml
  5. +0 −435 lib/ruby/stdlib/cmath.rb
  6. +0 −2,355 lib/ruby/stdlib/csv.rb
  7. +0 −1,658 lib/ruby/stdlib/fileutils.rb
  8. +0 −776 lib/ruby/stdlib/scanf.rb
  9. +0 −227 lib/ruby/stdlib/webrick.rb
  10. +0 −6 lib/ruby/stdlib/webrick/.document
  11. +0 −159 lib/ruby/stdlib/webrick/accesslog.rb
  12. +0 −309 lib/ruby/stdlib/webrick/cgi.rb
  13. +0 −36 lib/ruby/stdlib/webrick/compat.rb
  14. +0 −158 lib/ruby/stdlib/webrick/config.rb
  15. +0 −172 lib/ruby/stdlib/webrick/cookie.rb
  16. +0 −30 lib/ruby/stdlib/webrick/htmlutils.rb
  17. +0 −96 lib/ruby/stdlib/webrick/httpauth.rb
  18. +0 −117 lib/ruby/stdlib/webrick/httpauth/authenticator.rb
  19. +0 −108 lib/ruby/stdlib/webrick/httpauth/basicauth.rb
  20. +0 −408 lib/ruby/stdlib/webrick/httpauth/digestauth.rb
  21. +0 −132 lib/ruby/stdlib/webrick/httpauth/htdigest.rb
  22. +0 −94 lib/ruby/stdlib/webrick/httpauth/htgroup.rb
  23. +0 −125 lib/ruby/stdlib/webrick/httpauth/htpasswd.rb
  24. +0 −53 lib/ruby/stdlib/webrick/httpauth/userdb.rb
  25. +0 −338 lib/ruby/stdlib/webrick/httpproxy.rb
  26. +0 −587 lib/ruby/stdlib/webrick/httprequest.rb
  27. +0 −505 lib/ruby/stdlib/webrick/httpresponse.rb
  28. +0 −152 lib/ruby/stdlib/webrick/https.rb
  29. +0 −280 lib/ruby/stdlib/webrick/httpserver.rb
  30. +0 −23 lib/ruby/stdlib/webrick/httpservlet.rb
  31. +0 −152 lib/ruby/stdlib/webrick/httpservlet/abstract.rb
  32. +0 −47 lib/ruby/stdlib/webrick/httpservlet/cgi_runner.rb
  33. +0 −122 lib/ruby/stdlib/webrick/httpservlet/cgihandler.rb
  34. +0 −88 lib/ruby/stdlib/webrick/httpservlet/erbhandler.rb
  35. +0 −522 lib/ruby/stdlib/webrick/httpservlet/filehandler.rb
  36. +0 −47 lib/ruby/stdlib/webrick/httpservlet/prochandler.rb
  37. +0 −194 lib/ruby/stdlib/webrick/httpstatus.rb
  38. +0 −513 lib/ruby/stdlib/webrick/httputils.rb
  39. +0 −76 lib/ruby/stdlib/webrick/httpversion.rb
  40. +0 −156 lib/ruby/stdlib/webrick/log.rb
  41. +0 −378 lib/ruby/stdlib/webrick/server.rb
  42. +0 −215 lib/ruby/stdlib/webrick/ssl.rb
  43. +0 −270 lib/ruby/stdlib/webrick/utils.rb
  44. +0 −18 lib/ruby/stdlib/webrick/version.rb
  45. +0 −29 lib/ruby/stdlib/webrick/webrick.gemspec
  46. +6 −7 pom.rb
  47. +5 −6 pom.xml
  48. +0 −6 tool/sync_ruby_files.rb
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -53,7 +53,10 @@ lib/ruby/cext/
lib/ruby/gems
lib/ruby/stdlib/*.jar
lib/ruby/stdlib/ant*
lib/ruby/stdlib/cmath.rb
lib/ruby/stdlib/csv.rb
lib/ruby/stdlib/did_you_mean*
lib/ruby/stdlib/fileutils.rb
lib/ruby/stdlib/gauntlet_rdoc.rb
lib/ruby/stdlib/ipaddr*
lib/ruby/stdlib/jar*
@@ -75,6 +78,8 @@ lib/ruby/stdlib/readline*
lib/ruby/stdlib/minitest*
lib/ruby/stdlib/power_assert*
lib/ruby/stdlib/psych*
lib/ruby/stdlib/scanf.rb
lib/ruby/stdlib/webrick*
lib/ruby/stdlib/**/maven-metadata-local.xml
release.properties
share
Original file line number Diff line number Diff line change
@@ -400,7 +400,7 @@ public String toString() {
public void visit(IRVisitor visitor) {
visitor.UndefinedValue(this);
}

@Deprecated
public Object dataGetStructChecked() { throw undefinedOperation(); }
}
39 changes: 22 additions & 17 deletions lib/pom.rb
Original file line number Diff line number Diff line change
@@ -24,23 +24,28 @@ def initialize( name, version, default_spec = true )
end
end

default_gems =
[
ImportedGem.new( 'jruby-openssl', '0.9.21' ),
ImportedGem.new( 'jruby-readline', '1.2.2' ),
ImportedGem.new( 'rake', '${rake.version}' ),
ImportedGem.new( 'rdoc', '${rdoc.version}' ),
ImportedGem.new( 'minitest', '${minitest.version}' ),
ImportedGem.new( 'test-unit', '${test-unit.version}' ),
ImportedGem.new( 'power_assert', '${power_assert.version}' ),
ImportedGem.new( 'psych', '3.0.2' ),
ImportedGem.new( 'json', '${json.version}' ),
ImportedGem.new( 'jar-dependencies', '${jar-dependencies.version}' ),
ImportedGem.new( 'net-telnet', '0.1.1'),
ImportedGem.new( 'did_you_mean', '1.0.1'),
ImportedGem.new( 'rake-ant', '1.0.4'),
ImportedGem.new( 'ipaddr', '1.2.0'),
]
default_gems = [
ImportedGem.new('cmath', '1.0.0'),
ImportedGem.new('csv', '1.0.0'),
ImportedGem.new('did_you_mean', '1.2.0'),
ImportedGem.new('fileutils', '1.1.0'),
ImportedGem.new('ipaddr', '1.2.0'),
ImportedGem.new('jar-dependencies', '${jar-dependencies.version}'),
ImportedGem.new('jruby-readline', '1.2.2'),
ImportedGem.new('jruby-openssl', '0.9.21'),
ImportedGem.new('json', '${json.version}'),
ImportedGem.new('minitest', '${minitest.version}'),
ImportedGem.new('net-telnet', '0.1.1'),
ImportedGem.new('power_assert', '${power_assert.version}'),
ImportedGem.new('psych', '3.0.2'),
ImportedGem.new('rake', '${rake.version}'),
ImportedGem.new('rake-ant', '1.0.4'),
ImportedGem.new('rdoc', '${rdoc.version}'),
ImportedGem.new('scanf', '1.0.0'),
ImportedGem.new('test-unit', '${test-unit.version}'),
ImportedGem.new('webrick', '1.4.2'),
ImportedGem.new('xmlrpc', '0.3.0'),
]

project 'JRuby Lib Setup' do

118 changes: 98 additions & 20 deletions lib/pom.xml
Original file line number Diff line number Diff line change
@@ -33,8 +33,73 @@ DO NOT MODIFIY - GENERATED CODE
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>jruby-openssl</artifactId>
<version>0.9.21</version>
<artifactId>cmath</artifactId>
<version>1.0.0</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>jar-dependencies</artifactId>
<groupId>rubygems</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>csv</artifactId>
<version>1.0.0</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>jar-dependencies</artifactId>
<groupId>rubygems</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>did_you_mean</artifactId>
<version>1.2.0</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>jar-dependencies</artifactId>
<groupId>rubygems</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>fileutils</artifactId>
<version>1.1.0</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>
<version>1.2.0</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>jar-dependencies</artifactId>
<groupId>rubygems</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>${jar-dependencies.version}</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
@@ -59,8 +124,8 @@ DO NOT MODIFIY - GENERATED CODE
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rake</artifactId>
<version>${rake.version}</version>
<artifactId>jruby-openssl</artifactId>
<version>0.9.21</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
@@ -72,8 +137,8 @@ DO NOT MODIFIY - GENERATED CODE
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rdoc</artifactId>
<version>${rdoc.version}</version>
<artifactId>json</artifactId>
<version>${json.version}</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
@@ -98,8 +163,8 @@ DO NOT MODIFIY - GENERATED CODE
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>test-unit</artifactId>
<version>${test-unit.version}</version>
<artifactId>net-telnet</artifactId>
<version>0.1.1</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
@@ -137,8 +202,8 @@ DO NOT MODIFIY - GENERATED CODE
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>json</artifactId>
<version>${json.version}</version>
<artifactId>rake</artifactId>
<version>${rake.version}</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
@@ -150,8 +215,8 @@ DO NOT MODIFIY - GENERATED CODE
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>${jar-dependencies.version}</version>
<artifactId>rake-ant</artifactId>
<version>1.0.4</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
@@ -163,8 +228,8 @@ DO NOT MODIFIY - GENERATED CODE
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>net-telnet</artifactId>
<version>0.1.1</version>
<artifactId>rdoc</artifactId>
<version>${rdoc.version}</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
@@ -176,8 +241,8 @@ DO NOT MODIFIY - GENERATED CODE
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>did_you_mean</artifactId>
<version>1.0.1</version>
<artifactId>scanf</artifactId>
<version>1.0.0</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
@@ -189,8 +254,8 @@ DO NOT MODIFIY - GENERATED CODE
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rake-ant</artifactId>
<version>1.0.4</version>
<artifactId>test-unit</artifactId>
<version>${test-unit.version}</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
@@ -202,8 +267,21 @@ DO NOT MODIFIY - GENERATED CODE
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ipaddr</artifactId>
<version>1.2.0</version>
<artifactId>webrick</artifactId>
<version>1.4.2</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>jar-dependencies</artifactId>
<groupId>rubygems</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>xmlrpc</artifactId>
<version>0.3.0</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
Loading