picrate 0.4.2-java → 0.4.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
  SHA256:
3
- metadata.gz: ba97021165cf644b323154d9143b44e293b8888282be2cc79a57972d4e7888a7
4
- data.tar.gz: a1303cbafd5c004c4ec2a6865a23ba0d577039756d90b4d132143b33036a122b
3
+ metadata.gz: f3c9d43d033e3982308a62d9b24441d384d4356689bf76c267816792162241ab
4
+ data.tar.gz: 9aaf7a3db4f29025c768d9d0ea0b630e10fcef65ec6990e2495c9f3dd2db4d35
5
5
  SHA512:
6
- metadata.gz: df3fe1e4d2aea829cad00a5dc4837119fb61163360e7a126c96244a783dbf09dd5334e7e0e6e3ba11401d40a844e72a1ef5680573c3083feffd3c8889bbcdef0
7
- data.tar.gz: aedba1008530ba2aa4f22ea0bdc8465e0e9a36d1243c0b3d1a34c5833d8b3fa74a82cd68e77e298059659f4be5df54bbb3d454032ce49aff57f91a40b267133d
6
+ metadata.gz: f00ddf5c9bd4c4d7027edd995d1d7e6b7c4257f6df68178783d619696dbf8281208869dd5d93738b8f389020cd4aa46e17a0f62f70a6a09264119f56bffd46a5
7
+ data.tar.gz: 3122cb24192e3101425ec52ed2bb2cc767cf34e5c6ba794a045b671979b89473c7d5514cf3139a86bd97ad878c5d5692e63defd66300d33650b397b3db8dc3b3
data/.travis.yml CHANGED
@@ -3,7 +3,7 @@ sudo: false
3
3
  dist: trusty
4
4
 
5
5
  rvm:
6
- - jruby-9.2.2.0
6
+ - jruby-9.2.4.0
7
7
  jdk:
8
8
  - oraclejdk8
9
9
  os:
data/CHANGELOG.md CHANGED
@@ -1,4 +1,6 @@
1
- v0.4.2 Update to jruby-9.2.2.0
1
+ v0.4.3 Update to jruby-9.2.4.0
2
+
3
+ v0.4.2 Update to jruby-9.2.4.0
2
4
 
3
5
  v0.4.1 Proper sensible release since we can install from rubygems with jruby-9.2.1.0
4
6
 
data/README.md CHANGED
@@ -18,7 +18,7 @@ Requires maven, [jdk8][oracle] (but could be openjdk), and a jruby install.
18
18
  ```bash
19
19
  cd PiCrate
20
20
  rake # assumes an installed version of vanilla processing
21
- jgem install picrate-0.4.1-java.gem
21
+ jgem install picrate-0.4.3-java.gem
22
22
  ```
23
23
  To create a template sketch:-
24
24
  ```bash
data/Rakefile CHANGED
@@ -29,7 +29,7 @@ end
29
29
 
30
30
  desc 'Install'
31
31
  task :install do
32
- sh 'mv target/picrate-0.4.1.jar lib'
32
+ sh 'mv target/picrate-0.4.3.jar lib'
33
33
  end
34
34
 
35
35
  desc 'Gem'
@@ -0,0 +1,16 @@
1
+ ---
2
+ layout: post
3
+ title: "Geany"
4
+ permalink: /editors/geany/
5
+ keywords: editor, ide, ruby, picrate, vim, emacs, geany
6
+ ---
7
+ Geany is highly configurable, and comes pre-installed with the raspbian distribution. It is suggested that you use our [picrate.geany][project] file as the basis of your configuration. See also [this resource][github].
8
+
9
+ Use `make` to check syntax and `run` to run sketch
10
+
11
+ See running sketch below:-
12
+
13
+ ![geany]({{ site.github.url }}/assets/geany.png)
14
+
15
+ [project]:https://gist.github.com/monkstone/0445e74f52f5d1fcf6cd772543715426
16
+ [github]:https://github.com/ruby-processing/geany
@@ -11,7 +11,7 @@ Get the latest version from [http://jruby.org/download][download]
11
11
 
12
12
  ```bash
13
13
  cd /opt
14
- sudo tar xzvf /pathToDownload/jruby-bin-9.2.2.0.tar.gz
14
+ sudo tar xzvf /pathToDownload/jruby-bin-9.2.4.0.tar.gz
15
15
  ```
16
16
 
17
17
  Then use the excellent `update-alternatives` tool to provide symbolic links to `jruby`, `jgem`, `jirb` and `rake` especially if you haven't installed `mri` ruby.
@@ -33,4 +33,4 @@ export PATH="${PATH}:${GEM_PATH}/bin"
33
33
 
34
34
  If you know better please post on wiki
35
35
 
36
- [download]:https://s3.amazonaws.com/jruby.org/downloads/9.2.2.0/jruby-bin-9.2.2.0.tar.gz
36
+ [download]:https://s3.amazonaws.com/jruby.org/downloads/9.2.4.0/jruby-bin-9.2.4.0.tar.gz
Binary file
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module PiCrate
3
- VERSION = '0.4.2'.freeze
3
+ VERSION = '0.4.3'.freeze
4
4
  end
data/picrate.gemspec CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
15
15
  gem.summary = %q{ruby wrapper for processing-3.4 on raspberrypi and linux64}
16
16
  gem.homepage = 'https://ruby-processing.github.io/PiCrate/'
17
17
  gem.files = `git ls-files`.split($/)
18
- gem.files << 'lib/picrate-0.4.1.jar'
18
+ gem.files << 'lib/picrate-0.4.3.jar'
19
19
  gem.files << 'lib/gluegen-rt.jar'
20
20
  gem.files << 'lib/jogl-all.jar'
21
21
  gem.files << 'lib/gluegen-rt-natives-linux-amd64.jar'
data/pom.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  project 'picrate', 'http://maven.apache.org' do
2
2
 
3
3
  model_version '4.0.0'
4
- id 'ruby-processing:picrate:0.4.2'
4
+ id 'ruby-processing:picrate:0.4.3'
5
5
  packaging 'jar'
6
6
 
7
7
  description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
@@ -31,7 +31,7 @@ project 'picrate', 'http://maven.apache.org' do
31
31
  'project.build.sourceEncoding' => 'utf-8',
32
32
  'polyglot.dump.pom' => 'pom.xml',
33
33
  'maven.compiler.source' => '1.8' )
34
- pom 'org.jruby:jruby:9.2.2.0'
34
+ pom 'org.jruby:jruby:9.2.4.0'
35
35
  jar 'org.processing:video:3.2.3'
36
36
  jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
37
37
  jar 'org.jogamp.gluegen:gluegen-rt-main:${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>ruby-processing</groupId>
13
13
  <artifactId>picrate</artifactId>
14
- <version>0.4.2</version>
14
+ <version>0.4.3</version>
15
15
  <name>picrate</name>
16
16
  <description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
17
17
  <url>http://maven.apache.org</url>
@@ -78,7 +78,7 @@ DO NOT MODIFIY - GENERATED CODE
78
78
  <dependency>
79
79
  <groupId>org.jruby</groupId>
80
80
  <artifactId>jruby</artifactId>
81
- <version>9.2.2.0</version>
81
+ <version>9.2.4.0</version>
82
82
  <type>pom</type>
83
83
  </dependency>
84
84
  <dependency>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: picrate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: java
6
6
  authors:
7
7
  - monkstone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-09 00:00:00.000000000 Z
11
+ date: 2018-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -87,6 +87,7 @@ files:
87
87
  - docs/_classes/vec2d/vec2d.md
88
88
  - docs/_classes/vec3d/vec3d.md
89
89
  - docs/_config.yml
90
+ - docs/_editors/geany.md
90
91
  - docs/_editors/vim.md
91
92
  - docs/_gems/gems/gems.md
92
93
  - docs/_gems/other_gems/other_gems.md
@@ -148,6 +149,7 @@ files:
148
149
  - docs/_sass/_syntax-highlighting.scss
149
150
  - docs/about.md
150
151
  - docs/assets/circle_collisions.png
152
+ - docs/assets/geany.png
151
153
  - docs/classes.md
152
154
  - docs/css/main.scss
153
155
  - docs/editors.md
@@ -168,7 +170,7 @@ files:
168
170
  - lib/jogl-all-natives-linux-amd64.jar
169
171
  - lib/jogl-all-natives-linux-armv6hf.jar
170
172
  - lib/jogl-all.jar
171
- - lib/picrate-0.4.1.jar
173
+ - lib/picrate-0.4.3.jar
172
174
  - lib/picrate.rb
173
175
  - lib/picrate/app.rb
174
176
  - lib/picrate/creators/sketch_class.rb