jruby_art 1.2.3 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/jruby_art/version.rb +1 -1
- data/lib/rpextras.jar +0 -0
- data/vendors/Rakefile +10 -10
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12cfcbc0d3a42e7239ce463edf77df08f0d09357
|
|
4
|
+
data.tar.gz: 011a9c8ec37f597b2cf965587f697d3c7e174183
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f152caef048293ce58cf678fad2247cb68aff0a81d85a623ee69557ac096ff88e82012ed31107b9e484a0aadc770f35995a8a501b0a79cb065fecfd5bfc41d7d
|
|
7
|
+
data.tar.gz: b05d4c483c0a5e5a8ef84742f3f0687226be1369add771be465ca3dcca2e0f851855034fac641a477ad55c80a5f9ab3985ec0df2626562889ef0e3a65057498b
|
data/lib/jruby_art/version.rb
CHANGED
data/lib/rpextras.jar
CHANGED
|
Binary file
|
data/vendors/Rakefile
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
require 'rake/clean'
|
|
2
2
|
|
|
3
|
-
WARNING = <<-EOS
|
|
3
|
+
WARNING = <<-EOS
|
|
4
4
|
WARNING: you may not have wget installed, you could just download
|
|
5
|
-
the correct version of jruby-complete to the vendors folder, and
|
|
5
|
+
the correct version of jruby-complete to the vendors folder, and
|
|
6
6
|
re-run k9 setup install instead of installing wget. Some systems
|
|
7
7
|
may also require 'sudo' access to install, NB: this is untested....
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
EOS
|
|
10
10
|
|
|
11
|
-
JRUBYC_VERSION = '9.1.
|
|
12
|
-
EXAMPLES = '1.
|
|
11
|
+
JRUBYC_VERSION = '9.1.5.0'
|
|
12
|
+
EXAMPLES = '1.5'
|
|
13
13
|
HOME_DIR = ENV['HOME']
|
|
14
|
-
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
|
|
14
|
+
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
|
|
15
15
|
|
|
16
16
|
CLOBBER.include("jruby-complete-#{JRUBYC_VERSION}.jar")
|
|
17
17
|
|
|
@@ -23,11 +23,11 @@ task :download => ["jruby-complete-#{JRUBYC_VERSION}.jar"]
|
|
|
23
23
|
|
|
24
24
|
file "jruby-complete-#{JRUBYC_VERSION}.jar" do
|
|
25
25
|
begin
|
|
26
|
-
sh "wget https://s3.amazonaws.com/jruby.org/downloads/#{JRUBYC_VERSION}/jruby-complete-#{JRUBYC_VERSION}.jar"
|
|
26
|
+
sh "wget https://s3.amazonaws.com/jruby.org/downloads/#{JRUBYC_VERSION}/jruby-complete-#{JRUBYC_VERSION}.jar"
|
|
27
27
|
rescue
|
|
28
28
|
warn(WARNING)
|
|
29
29
|
end
|
|
30
|
-
check_sha256("jruby-complete-#{JRUBYC_VERSION}.jar", "
|
|
30
|
+
check_sha256("jruby-complete-#{JRUBYC_VERSION}.jar", "7711fe1d09bb98727a43f5aaef5ea3a205500568bc2fa718cb7ef77dd3800519")
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
directory "../lib/ruby"
|
|
@@ -73,9 +73,9 @@ task :copy_examples => file_name do
|
|
|
73
73
|
if MAC_OR_LINUX.nil?
|
|
74
74
|
sh "unzip #{EXAMPLES}.zip"
|
|
75
75
|
else
|
|
76
|
-
sh "tar xzvf #{EXAMPLES}.tar.gz"
|
|
76
|
+
sh "tar xzvf #{EXAMPLES}.tar.gz"
|
|
77
77
|
end
|
|
78
78
|
sh "rm -r #{HOME_DIR}/k9_samples" if File.exist? "#{HOME_DIR}/k9_samples"
|
|
79
|
-
sh "cp -r JRubyArt-examples-#{EXAMPLES} #{HOME_DIR}/k9_samples"
|
|
79
|
+
sh "cp -r JRubyArt-examples-#{EXAMPLES} #{HOME_DIR}/k9_samples"
|
|
80
80
|
sh "rm -r JRubyArt-examples-#{EXAMPLES}"
|
|
81
81
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jruby_art
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeremy Ashkenas
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2016-09-
|
|
13
|
+
date: 2016-09-07 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rake
|
|
@@ -18,14 +18,14 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - "~>"
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: '11.
|
|
21
|
+
version: '11.2'
|
|
22
22
|
type: :development
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - "~>"
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: '11.
|
|
28
|
+
version: '11.2'
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: minitest
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|