ruby-processing 2.6.17 → 2.6.18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5bf7af26e3f730d5255a9530be7f4c7f44248ecd
4
- data.tar.gz: b86b7f9515a7810a75700c343e32a5313b25892a
3
+ metadata.gz: 4dd48824972676e215c9988d19964b304421ab81
4
+ data.tar.gz: 5f1828ec177555fb60cf3d4c9692c7d33ea0e4dd
5
5
  SHA512:
6
- metadata.gz: 826b526eb7bebbefec58cd2c694e2c577647e6777d72b588cf14910d73f685f339bacac4098f03819142a9d8b7008167f2f30f199fd94cacf673d266e901c6f2
7
- data.tar.gz: 64421d6ed13f60dd5a10d141b434c7e7270145a6bac2e1a86d75c61ced7e39319e9d7eb4c2dff5b265a4e457c99167f096332e07cb174ce7846631b0afa9198a
6
+ metadata.gz: 4d82a137e2125b0568862f01bdb88cdd8010293e935c36a1a21f0079a6675455e0406c012e7280be68a31dad5003d73049d27a8c9515e5ec34a3787b37976fcf
7
+ data.tar.gz: a56c11b7a861e5e6cee25e78bb7e93fd7edebe0010c83ac51a0dca1ada3bbf10701efe372174357186d5aa1359b27b1d1366eb185baf7ce76115a0bdb2c0239b
Binary file
@@ -158,7 +158,7 @@ module Processing
158
158
  klass.constants.each do |name|
159
159
  const = klass.const_get name
160
160
  next if const.class != Class || const.to_s.match(/^Java::/)
161
- const.class_eval 'include Processing::Proxy'
161
+ const.class_eval('include Processing::Proxy')
162
162
  end
163
163
  end
164
164
 
@@ -36,7 +36,7 @@ module Processing
36
36
  return
37
37
  end
38
38
  code = no_methods ? format(NAKED_WRAP, source) : format(BARE_WRAP, source)
39
- Object.class_eval code, SKETCH_PATH, -1
39
+ Object.class_eval(code, SKETCH_PATH, -1)
40
40
  Processing::App.sketch_class.new
41
41
  end
42
42
 
@@ -1,3 +1,3 @@
1
1
  module RubyProcessing
2
- VERSION = '2.6.17'
2
+ VERSION = '2.6.18'
3
3
  end
@@ -8,7 +8,7 @@ WARNING = <<-EOS
8
8
 
9
9
  EOS
10
10
 
11
- JRUBYC_VERSION = '1.7.24'
11
+ JRUBYC_VERSION = '1.7.25'
12
12
  EXAMPLES = '1.7'
13
13
  HOME_DIR = ENV['HOME']
14
14
  MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
@@ -27,7 +27,7 @@ file "jruby-complete-#{JRUBYC_VERSION}.jar" do
27
27
  rescue
28
28
  warn(WARNING)
29
29
  end
30
- check_sha1("jruby-complete-#{JRUBYC_VERSION}.jar", '01fc8605c833490b833ee1520f7a2e1409ef8885')
30
+ check_sha1("jruby-complete-#{JRUBYC_VERSION}.jar", '8eb234259ec88edc05eedab05655f458a84bfcab')
31
31
  end
32
32
 
33
33
  directory "../lib/ruby"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-processing
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.17
4
+ version: 2.6.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Ashkenas
@@ -16,7 +16,7 @@ authors:
16
16
  autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
- date: 2016-02-06 00:00:00.000000000 Z
19
+ date: 2016-04-15 00:00:00.000000000 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: bundler
@@ -61,7 +61,7 @@ dependencies:
61
61
  - !ruby/object:Gem::Version
62
62
  version: '5.8'
63
63
  description: " Ruby-Processing is a ruby wrapper for the processing-2.0 art framework.\n
64
- \ This version supports processing-2.2.1, and uses jruby-complete-1.7.24 or an \n
64
+ \ This version supports processing-2.2.1, and uses jruby-complete-1.7.25 or an \n
65
65
  \ installed jruby as the glue between ruby and java. Use both processing \n libraries
66
66
  and ruby gems in your sketches. The \"watch\" mode, provides a \n nice REPL-ish
67
67
  way to work on your processing sketches. Features a polyglot\n maven build, opening
@@ -136,7 +136,7 @@ requirements:
136
136
  - java runtime >= 1.7+
137
137
  - processing = 2.2.1
138
138
  rubyforge_project:
139
- rubygems_version: 2.4.8
139
+ rubygems_version: 2.6.3
140
140
  signing_key:
141
141
  specification_version: 4
142
142
  summary: Code as Art, Art as Code. Processing and Ruby are meant for each other.