propane 2.9.1-java → 2.9.2-java

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
  SHA256:
3
- metadata.gz: 31d2e7003779ab7e77f4e2f18954ac201a458f04b9a6ccdca44906cdd528ba63
4
- data.tar.gz: ca2661996bc0a89d62cab39f4881b93391a844505e676c1b8ef5278c026973c5
3
+ metadata.gz: 62ea55df1f7cfb055fcfd8ff59e09c939b3f5144d8e858975b725567bc88333a
4
+ data.tar.gz: 2b3d9aa09cfa5a2cc1c6fb61dffce4305ccf13d51a289485fa25c005c13c80aa
5
5
  SHA512:
6
- metadata.gz: '09453c2023daa8c8dc4a3a8b64c31aa3cc4e1ee03972133f9296bb5629c4964bae1a4318bcfe39ea588463671bc9e176397f0fcfddbac97d2b89fb0e9366cc21'
7
- data.tar.gz: b073e04b769c923b7e8adc27f4526ba1604fc266919e2cd14afad1ceb228cb709e955c84941bb27fd62a27055c992d04a1523249953e9ac500dcbed9cfadfd04
6
+ metadata.gz: 884927feda97cfc656e4aa4b00d7b875d46428c497441d98fec91d08ba398cf5ba27a399ce8bd1789fc09a10db23f8959c2f2fad5b1b4c1d7844fa61d287d649
7
+ data.tar.gz: d7000739b4b1c96613a43a0b7f06751a5c01b95526b227c540f7d2063baaf3bd591fbdfd6fe3fddc4dee7ec5abe547578465e9afe44431b499c8089c3eb42939
@@ -3,6 +3,6 @@
3
3
  <extension>
4
4
  <groupId>io.takari.polyglot</groupId>
5
5
  <artifactId>polyglot-ruby</artifactId>
6
- <version>0.3.1</version>
6
+ <version>0.3.1.1</version>
7
7
  </extension>
8
8
  </extensions>
@@ -1,3 +1,5 @@
1
+ **v2.9.2** Bump for jruby-9.2.3.0.
2
+
1
3
  **v2.9.1** Attempt to bring 64 bit Windows users to party. Use non versioned jogl/opengl jars from processing distro, including processing.org apple.jar in case it's needed, MacOS users are being very opaque on this.
2
4
 
3
5
  **v2.9.0** No-one helped with think_open branch, that was trying to get ready for jdk9 (as compilable), so I'm abandoning 2.8.0 series, the 2.9.0 version will create an integrated jar and concentrate on compatibility, rather than be future looking (but I'm not sure that think_different is any use or will work in future). Anyone having difficulty on MacOS should try putting apple.jar into lib folder.
data/README.md CHANGED
@@ -8,7 +8,7 @@ adjust above for your OS/distro setup.
8
8
  ## Requirements
9
9
 
10
10
  - `jdk8_u181`
11
- - `jruby-9.2.0.0`
11
+ - `jruby-9.2.3.0`
12
12
  - `mvn-3.5.0+`
13
13
  - `apple.jar` (_build only_) see (or may'be runtime as well a MacOS user needed to test) [vanilla-processing](https://github.com/processing/processing/blob/master/core/apple.jar)
14
14
 
data/Rakefile CHANGED
@@ -20,7 +20,7 @@ end
20
20
 
21
21
  desc 'Install'
22
22
  task :install do
23
- sh 'mv target/propane-2.9.1.jar lib'
23
+ sh 'mv target/propane-2.9.2.jar lib'
24
24
  end
25
25
 
26
26
  desc 'Gem'
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Propane
3
- VERSION = '2.9.1'.freeze
3
+ VERSION = '2.9.2'.freeze
4
4
  end
data/pom.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'fileutils'
2
2
  project 'propane', 'https://github.com/monkstone/propane' do
3
3
  model_version '4.0.0'
4
- id 'propane:propane:2.9.1'
4
+ id 'propane:propane:2.9.2'
5
5
  packaging 'jar'
6
6
  description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
7
7
 
@@ -38,7 +38,7 @@ project 'propane', 'https://github.com/monkstone/propane' do
38
38
  'jogl.version' => '2.3.2'
39
39
  )
40
40
 
41
- pom 'org.jruby:jruby:9.2.0.0'
41
+ pom 'org.jruby:jruby:9.2.3.0'
42
42
  jar 'com.apple.eawt:apple:1.0'
43
43
  jar 'org.processing:video:3.0.2'
44
44
  jar('org.jogamp.jogl:jogl-all:${jogl.version}')
data/pom.xml CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
11
11
  <modelVersion>4.0.0</modelVersion>
12
12
  <groupId>propane</groupId>
13
13
  <artifactId>propane</artifactId>
14
- <version>2.9.1</version>
14
+ <version>2.9.2</version>
15
15
  <name>propane</name>
16
16
  <description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
17
17
  <url>https://github.com/monkstone/propane</url>
@@ -71,19 +71,19 @@ DO NOT MODIFIY - GENERATED CODE
71
71
  <properties>
72
72
  <jogl.version>2.3.2</jogl.version>
73
73
  <jruby.api>http://jruby.org/apidocs/</jruby.api>
74
- <source.directory>src</source.directory>
74
+ <maven.compiler.source>1.8</maven.compiler.source>
75
75
  <maven.compiler.target>1.8</maven.compiler.target>
76
+ <polyglot.dump.pom>pom.xml</polyglot.dump.pom>
76
77
  <processing.api>http://processing.github.io/processing-javadocs/core/</processing.api>
77
- <propane.basedir>${project.basedir}</propane.basedir>
78
78
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
79
- <polyglot.dump.pom>pom.xml</polyglot.dump.pom>
80
- <maven.compiler.source>1.8</maven.compiler.source>
79
+ <propane.basedir>${project.basedir}</propane.basedir>
80
+ <source.directory>src</source.directory>
81
81
  </properties>
82
82
  <dependencies>
83
83
  <dependency>
84
84
  <groupId>org.jruby</groupId>
85
85
  <artifactId>jruby</artifactId>
86
- <version>9.2.0.0</version>
86
+ <version>9.2.3.0</version>
87
87
  <type>pom</type>
88
88
  </dependency>
89
89
  <dependency>
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
15
15
  gem.summary = %q{ruby wrapper for processing-3.4 on MacOS, linux and windows (64bit only)}
16
16
  gem.homepage = 'https://ruby-processing.github.io/propane/'
17
17
  gem.files = `git ls-files`.split($/)
18
- gem.files << 'lib/propane-2.9.1.jar'
18
+ gem.files << 'lib/propane-2.9.2.jar'
19
19
  gem.files << 'lib/apple.jar'
20
20
  gem.files << 'lib/gluegen-rt.jar'
21
21
  gem.files << 'lib/jogl-all.jar'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: propane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.1
4
+ version: 2.9.2
5
5
  platform: java
6
6
  authors:
7
7
  - monkstone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-30 00:00:00.000000000 Z
11
+ date: 2018-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -42,22 +42,22 @@ dependencies:
42
42
  name: arcball
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '1.0'
48
45
  - - ">="
49
46
  - !ruby/object:Gem::Version
50
47
  version: 1.0.0
48
+ - - "~>"
49
+ - !ruby/object:Gem::Version
50
+ version: '1.0'
51
51
  type: :runtime
52
52
  prerelease: false
53
53
  version_requirements: !ruby/object:Gem::Requirement
54
54
  requirements:
55
- - - "~>"
56
- - !ruby/object:Gem::Version
57
- version: '1.0'
58
55
  - - ">="
59
56
  - !ruby/object:Gem::Version
60
57
  version: 1.0.0
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '1.0'
61
61
  description: " A batteries included version of processing in ruby.\n"
62
62
  email:
63
63
  - mamba2928@yahoo.co.uk
@@ -90,7 +90,7 @@ files:
90
90
  - lib/jogl-all-natives-macosx-universal.jar
91
91
  - lib/jogl-all-natives-windows-amd64.jar
92
92
  - lib/jogl-all.jar
93
- - lib/propane-2.9.1.jar
93
+ - lib/propane-2.9.2.jar
94
94
  - lib/propane.rb
95
95
  - lib/propane/app.rb
96
96
  - lib/propane/creators/sketch_class.rb
@@ -268,7 +268,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
268
268
  requirements:
269
269
  - java runtime >= 1.8.0_181+
270
270
  rubyforge_project:
271
- rubygems_version: 2.7.7
271
+ rubygems_version: 2.7.8
272
272
  signing_key:
273
273
  specification_version: 4
274
274
  summary: ruby wrapper for processing-3.4 on MacOS, linux and windows (64bit only)