pbox2d 1.0.0-java → 1.0.1-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 +4 -4
- data/.travis.yml +2 -3
- data/CHANGELOG.md +3 -0
- data/docs/about.md +1 -1
- data/lib/pbox2d/version.rb +1 -1
- data/pom.rb +2 -2
- data/pom.xml +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 258070081730f4c1e01a4fa49387fc54bc58c7a1
|
|
4
|
+
data.tar.gz: 20c67dc31c722daf51ae4052d8f45efcba54b196
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed6ec7fa136012965b01970f394f5925b57b7e80d4ab71529d126cf078fd5aeb8f04fe423769cc7221e8f9425884882a40a6a83c987c12a4e98647452d886a80
|
|
7
|
+
data.tar.gz: df5977dbbc30358574404951416eb8e077878c1dc670c8dfffb05bb0d29b2df1647594370f2751dfbb8f00f7e5544cbca8dbf046649a6f9caa7b0b5c911997f2
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/docs/about.md
CHANGED
|
@@ -5,7 +5,7 @@ permalink: /about/
|
|
|
5
5
|
categories: jruby_art update
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
-
[JRubyArt][jruby_art] is a ruby wrapper for [processing-3.2
|
|
8
|
+
[JRubyArt][jruby_art] is a ruby wrapper for [processing-3.3.2][processing]. Create processing sketches in ruby using regular ruby-2.3 syntax, and use the magic [JRuby][jruby] to run them. You can use both rubygems and and regular processing libraries in your sketches. Features run, watch and live modes (uses pry).
|
|
9
9
|
|
|
10
10
|
In general where there is a choice of using a java (processing) method or a regular ruby method you should choose the ruby method (eg use `rand` in place of `random`). Further you should prefer to use `JRuby` classes `Vec2D` and `Vec3D` instead of processings `PVector` class. Processing has a number of convenience methods which are not needed in ruby (eg 'pow' use `**` in JRubyArt) and some static methods have not been implemented in JRubyArt. For the processing `map` method prefer `map1d` ([see example][map1d]) or use `p5map` if you must. Another thing to watch is `color` which is implemented differently in JRubyArt ([see example][color]).
|
|
11
11
|
|
data/lib/pbox2d/version.rb
CHANGED
data/pom.rb
CHANGED
|
@@ -2,7 +2,7 @@ require 'fileutils'
|
|
|
2
2
|
project 'pbox2d', 'https://github.com/ruby-processing/jbox2d' do
|
|
3
3
|
|
|
4
4
|
model_version '4.0.0'
|
|
5
|
-
id 'ruby-processing:pbox2d', '1.0.
|
|
5
|
+
id 'ruby-processing:pbox2d', '1.0.1'
|
|
6
6
|
packaging 'jar'
|
|
7
7
|
|
|
8
8
|
description 'jbox2d for JRubyArt'
|
|
@@ -35,7 +35,7 @@ project 'pbox2d', 'https://github.com/ruby-processing/jbox2d' do
|
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
pom 'org.jruby:jruby:9.1.8.0'
|
|
38
|
-
jar 'org.processing:core:3.3.
|
|
38
|
+
jar 'org.processing:core:3.3.2'
|
|
39
39
|
|
|
40
40
|
plugin_management do
|
|
41
41
|
plugin :resources, '2.6'
|
data/pom.xml
CHANGED
|
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
|
11
11
|
<modelVersion>4.0.0</modelVersion>
|
|
12
12
|
<groupId>ruby-processing</groupId>
|
|
13
13
|
<artifactId>pbox2d</artifactId>
|
|
14
|
-
<version>1.0.
|
|
14
|
+
<version>1.0.1</version>
|
|
15
15
|
<name>pbox2d</name>
|
|
16
16
|
<description>jbox2d for JRubyArt</description>
|
|
17
17
|
<url>https://github.com/ruby-processing/jbox2d</url>
|
|
@@ -62,7 +62,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
|
62
62
|
<dependency>
|
|
63
63
|
<groupId>org.processing</groupId>
|
|
64
64
|
<artifactId>core</artifactId>
|
|
65
|
-
<version>3.3.
|
|
65
|
+
<version>3.3.2</version>
|
|
66
66
|
</dependency>
|
|
67
67
|
</dependencies>
|
|
68
68
|
<build>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pbox2d
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Prout
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-04-
|
|
11
|
+
date: 2017-04-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|