pbox2d 1.0.0-java → 1.0.1-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
  SHA1:
3
- metadata.gz: e0aed216a0450186a793eb195a8e9c5ec017e63a
4
- data.tar.gz: f00273168b47d8cfce2601ac2956525497aa8f66
3
+ metadata.gz: 258070081730f4c1e01a4fa49387fc54bc58c7a1
4
+ data.tar.gz: 20c67dc31c722daf51ae4052d8f45efcba54b196
5
5
  SHA512:
6
- metadata.gz: 68efe632c0ea5cca8e9e01a3176ef1cae1e43462bd3b7dce965fde7b6cd20dcc40ba525609d3198e9fd6613f92020eabf1d91a62536580b43fec1a5fdc903ca6
7
- data.tar.gz: 4074f71a4a852abd9eeb3a8bcce7047a48c4b3ebb86719a7d89b27d3a9fdf5f23c9145cc83bec3f4d66b33c1b99a8ebcc1aaa6d506ab7e80344912aae83e1906
6
+ metadata.gz: ed6ec7fa136012965b01970f394f5925b57b7e80d4ab71529d126cf078fd5aeb8f04fe423769cc7221e8f9425884882a40a6a83c987c12a4e98647452d886a80
7
+ data.tar.gz: df5977dbbc30358574404951416eb8e077878c1dc670c8dfffb05bb0d29b2df1647594370f2751dfbb8f00f7e5544cbca8dbf046649a6f9caa7b0b5c911997f2
@@ -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.8.0
6
6
  jdk:
7
7
  - oraclejdk8
8
8
  os:
9
9
  - linux
10
-
@@ -1,3 +1,6 @@
1
+ ### v1.0.0
2
+ Update to latest processing-3.3.2
3
+
1
4
  ### v1.0.0
2
5
 
3
6
  Specify github pages as home, update to latest jruby-9.1.8.0 and processing-3.3
@@ -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.1][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).
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
 
@@ -1,4 +1,4 @@
1
1
  # module to give version a namespace
2
2
  module Pbox2d
3
- VERSION = '1.0.0'
3
+ VERSION = '1.0.1'
4
4
  end
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.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.0'
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.0</version>
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.0</version>
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.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-04 00:00:00.000000000 Z
11
+ date: 2017-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake