propane 2.3.2-java → 2.3.3-java

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f367e2f0aeb69bf6eb53537bc1c17846f7c1961b
4
- data.tar.gz: cd1ea6e20cfc78740c234bfd9c93e6fc583c2622
3
+ metadata.gz: 09900eb2fcd893122891d335f511684bf25197e2
4
+ data.tar.gz: 1f82930cb3f3a6359f93b12be433d5209446df13
5
5
  SHA512:
6
- metadata.gz: 5c56827f7ea02240d754466c5a9a63e73d806cefe74d1aa8441fffe6435fbbe95eb128aaab5fa289da74db6d2918b2ac3ceece88426a64b668370e2249442141
7
- data.tar.gz: 8f80c1e5cfd46105b8805b67b785123ad8d4161635fd35e644803eda41643d149a06f557d0c818a7d3b9a81d9d0e8a2966029984e721d52f085dcb157fbd38c7
6
+ metadata.gz: 43e23c1cdd45600f55cc777d705cfb2693830622320f18266829dbbdf00c0a7ed791403e995218489f711a3eec8b28f4f6e643dd834163f8fcef1ac6dde2b5ed
7
+ data.tar.gz: 3fa052ecd4dde1c3e42bc339cae078a6920d60486afeef66b6a9087ec404e32a4968e664e29afce59ccce73612302ce779d80fe58b7b1b57cd7a5c37dab5a05f
data/.travis.yml CHANGED
@@ -1,10 +1,9 @@
1
1
  language: ruby
2
2
  sudo: false
3
3
 
4
- rvm:
5
- - jruby-9.1.6.0
4
+ rvm:
5
+ - jruby-9.1.12.0
6
6
  jdk:
7
7
  - oraclejdk8
8
8
  os:
9
9
  - linux
10
-
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ **v2.3.3** Update to processing-3.3.4, and upgrade jruby-9.1.12.0 last in 9.1 series?
2
+
3
+ **v2.3.3** Update to processing-3.3.2
4
+
1
5
  **v2.3.1** Update to processing-3.3.1, Update samples which now include `#!/usr/bin/env jruby` to assist running sketches from atom, add Rakefile for automatic sketch running for many samples, expected upgrade to final jruby-9.1.x.x
2
6
 
3
7
  **v2.3.0** Update to core processing-3.3 `grid` method now implemented in java, bump examples to include WOVNS
data/Gemfile CHANGED
@@ -1,2 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
+ gemspec
data/README.md CHANGED
@@ -1,14 +1,14 @@
1
1
  # Propane
2
- [![Gem Version](https://badge.fury.io/rb/propane.svg)](https://badge.fury.io/rb/propane)
2
+ [![Gem Version](https://badge.fury.io/rb/propane.svg)](https://badge.fury.io/rb/propane) [![Travis CI](https://travis-ci.org/ruby-processing/propane.svg)](https://travis-ci.org/ruby-processing/propane)
3
3
 
4
4
  A slim layer to communicate with Processing from JRuby, features a polyglot maven build. We have created a configuration free version of ruby processing, for processing-3.3.1, where we include processing core (from a local maven repository and opengl etc from maven central). These jars are small enough to include in a gem distribution, and hence we do not require configuration. This has created a scriptable version, ie files get run direct from jruby, but you could use jruby-complete if you used the propane script (avoids need to give the absolute data path for the data folder, but would also be needed for a watch mode). See guide to [building ruby-processing projects][building].
5
5
 
6
6
  ## Requirements
7
7
 
8
8
  - jdk8+
9
- - jruby-9.1.8.0+
10
- - mvn-3.3.1+ (development only)
11
- - core.jar processing-3.3.1 (development only until processing.org is available at maven central)
9
+ - jruby-9.1.12.0
10
+ - mvn-3.5.0+
11
+ - core.jar processing-3.3.4
12
12
 
13
13
  ## Building and testing
14
14
 
@@ -21,7 +21,7 @@ rake javadoc
21
21
  ## Installation
22
22
  ```bash
23
23
  jgem install propane # from rubygems
24
- jgem install propane-2.3.1-java.gem # for local install
24
+ jgem install propane-2.3.3-java.gem # for local install
25
25
  ```
26
26
 
27
27
  ## Usage
@@ -70,4 +70,7 @@ propane --install video
70
70
  ```
71
71
  Other java libraries can be manually installed to the same folder (no need for processing ide)
72
72
 
73
+ See [gh-pages][gh-pages] for more detailed instructions and much more.
74
+
73
75
  [building]:http://ruby-processing.github.io/building/building/
76
+ [gh-pages]:https://ruby-processing.github.io/propane/
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ def create_manifest
7
7
  File.open('MANIFEST.MF', 'w') do |f|
8
8
  f.puts(title)
9
9
  f.puts(version)
10
- f.puts('Class-Path: core-3.3.1.jar gluegen-rt-2.3.2.jar jog-all-2.3.2.jar')
10
+ f.puts('Class-Path: core-3.3.4.jar gluegen-rt-2.3.2.jar jog-all-2.3.2.jar')
11
11
  end
12
12
  end
13
13
 
@@ -47,7 +47,7 @@ end
47
47
  desc 'Test'
48
48
  task :test do
49
49
  sh 'jruby test/helper_methods_test.rb'
50
- sh 'jruby test/respond_to_test.rb'
50
+ # sh 'jruby test/respond_to_test.rb' Skip test on Travis to avoid Headless fail
51
51
  sh 'jruby test/create_test.rb'
52
52
  sh 'jruby test/math_tool_test.rb'
53
53
  sh 'jruby test/deglut_spec_test.rb'
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Propane
3
- VERSION = '2.3.2'.freeze
3
+ VERSION = '2.3.3'.freeze
4
4
  end
data/pom.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'fileutils'
2
2
  project 'rp5extras', 'https://github.com/monkstone/propane' do
3
3
  model_version '4.0.0'
4
- id 'propane:propane', '2.3.2'
4
+ id 'propane:propane', '2.3.3'
5
5
  packaging 'jar'
6
6
  description 'rp5extras for propane'
7
7
  organization 'ruby-processing', 'https://ruby-processing.github.io'
@@ -32,8 +32,8 @@ project 'rp5extras', 'https://github.com/monkstone/propane' do
32
32
  'jogl.version' => '2.3.2'
33
33
  )
34
34
 
35
- pom 'org.jruby:jruby:9.1.8.0'
36
- jar 'org.processing:core:3.3.2'
35
+ pom 'org.jruby:jruby:9.1.12.0'
36
+ jar 'org.processing:core:3.3.4'
37
37
  jar 'org.processing:video:3.0.2'
38
38
  jar('org.jogamp.jogl:jogl-all:${jogl.version}')
39
39
  jar('org.jogamp.gluegen:gluegen-rt-main:${jogl.version}')
@@ -44,7 +44,7 @@ project 'rp5extras', 'https://github.com/monkstone/propane' do
44
44
  execute_goals( id: 'default-cli',
45
45
  artifactItems: [ { groupId: 'org.processing',
46
46
  artifactId: 'core',
47
- version: '3.3.2',
47
+ version: '3.3.4',
48
48
  type: 'jar',
49
49
  outputDirectory: '${propane.basedir}/lib'
50
50
  },
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.3.2</version>
14
+ <version>2.3.3</version>
15
15
  <name>rp5extras</name>
16
16
  <description>rp5extras for propane</description>
17
17
  <url>https://github.com/monkstone/propane</url>
@@ -58,13 +58,13 @@ DO NOT MODIFIY - GENERATED CODE
58
58
  <dependency>
59
59
  <groupId>org.jruby</groupId>
60
60
  <artifactId>jruby</artifactId>
61
- <version>9.1.8.0</version>
61
+ <version>9.1.12.0</version>
62
62
  <type>pom</type>
63
63
  </dependency>
64
64
  <dependency>
65
65
  <groupId>org.processing</groupId>
66
66
  <artifactId>core</artifactId>
67
- <version>3.3.2</version>
67
+ <version>3.3.4</version>
68
68
  </dependency>
69
69
  <dependency>
70
70
  <groupId>org.processing</groupId>
@@ -103,7 +103,7 @@ DO NOT MODIFIY - GENERATED CODE
103
103
  <artifactItem>
104
104
  <groupId>org.processing</groupId>
105
105
  <artifactId>core</artifactId>
106
- <version>3.3.2</version>
106
+ <version>3.3.4</version>
107
107
  <type>jar</type>
108
108
  <outputDirectory>${propane.basedir}/lib</outputDirectory>
109
109
  </artifactItem>
data/propane.gemspec CHANGED
@@ -10,11 +10,11 @@ Gem::Specification.new do |gem|
10
10
  gem.email = ['mamba2928@yahoo.co.uk']
11
11
  gem.licenses = %w(GPL-3.0 LGPL-2.0)
12
12
  gem.description = %q{A batteries included version of processing in ruby, MacOS and linux64}
13
- gem.summary = %q{ruby wrapper for processing-3.3.1 on MacOS and linux64 bit only for opengl}
13
+ gem.summary = %q{ruby wrapper for processing-3.3.4 on MacOS and linux64 bit only for opengl}
14
14
  gem.homepage = 'https://ruby-processing.github.io/propane/'
15
15
  gem.files = `git ls-files`.split($/)
16
16
  gem.files << 'lib/propane.jar'
17
- gem.files << 'lib/core-3.3.2.jar'
17
+ gem.files << 'lib/core-3.3.4.jar'
18
18
  gem.files << 'lib/gluegen-rt-2.3.2.jar'
19
19
  gem.files << 'lib/jogl-all-2.3.2.jar'
20
20
  gem.files << 'lib/gluegen-rt-2.3.2-natives-linux-amd64.jar'
@@ -23,7 +23,9 @@ Gem::Specification.new do |gem|
23
23
  gem.files << 'lib/jogl-all-2.3.2-natives-macosx-universal.jar'
24
24
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
25
25
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
26
- gem.add_runtime_dependency 'arcball', '~> 1.0', '>= 1.0.0'
26
+ gem.add_development_dependency 'rake', '~> 12'
27
+ gem.add_development_dependency 'minitest', '~> 5.10'
28
+ gem.add_runtime_dependency 'arcball', '~> 1.0', '>= 1.0.0'
27
29
  gem.require_paths = ['lib']
28
30
  gem.platform = 'java'
29
31
  end
metadata CHANGED
@@ -1,15 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: propane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.3.3
5
5
  platform: java
6
6
  authors:
7
7
  - monkstone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-26 00:00:00.000000000 Z
11
+ date: 2017-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: minitest
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '5.10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '5.10'
13
41
  - !ruby/object:Gem::Dependency
14
42
  name: arcball
15
43
  requirement: !ruby/object:Gem::Requirement
@@ -51,7 +79,7 @@ files:
51
79
  - Rakefile
52
80
  - bin/propane
53
81
  - lib/PROCESSING_LICENSE.txt
54
- - lib/core-3.3.2.jar
82
+ - lib/core-3.3.4.jar
55
83
  - lib/export.txt
56
84
  - lib/gluegen-rt-2.3.2-natives-linux-amd64.jar
57
85
  - lib/gluegen-rt-2.3.2-natives-macosx-universal.jar
@@ -137,10 +165,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
137
165
  version: '0'
138
166
  requirements: []
139
167
  rubyforge_project:
140
- rubygems_version: 2.6.11
168
+ rubygems_version: 2.5.1
141
169
  signing_key:
142
170
  specification_version: 4
143
- summary: ruby wrapper for processing-3.3.1 on MacOS and linux64 bit only for opengl
171
+ summary: ruby wrapper for processing-3.3.4 on MacOS and linux64 bit only for opengl
144
172
  test_files:
145
173
  - test/create_test.rb
146
174
  - test/deglut_spec_test.rb