Skip to content

Commit f78010a

Browse files
committed
update version
1 parent 93bd2d7 commit f78010a

File tree

7 files changed

+12
-10
lines changed

7 files changed

+12
-10
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sudo: false
33
dist: trusty
44

55
rvm:
6-
- jruby-9.1.16.0
6+
- jruby-9.2.1.0
77
jdk:
88
- oraclejdk8
99
os:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
v0.4.1 Proper sensible release since we can install from rubygems with jruby-9.2.1.0
12
v0.0.4 LSystem examples
23
v0.0.3
34
Extended Samples

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ Create processing sketches in ruby on raspberry-pi and linux (this project is a
55

66
### To install from rubygems ###
77

8-
Unfortunately jgem will not currently download the gem (see #https://github.com/jruby/jruby/issues/5192 issue on raspberrypi) so download the gem and install locally.
8+
```bash
9+
jgem install picrate
10+
```
911

1012
### To Build and Test ###
1113

@@ -16,7 +18,7 @@ Requires maven, [jdk8][oracle] (but could be openjdk), and a jruby install.
1618
```bash
1719
cd PiCrate
1820
rake # assumes an installed version of vanilla processing
19-
jgem install picrate-0.4.0-java.gem
21+
jgem install picrate-0.4.1-java.gem
2022
```
2123
To create a template sketch:-
2224
```bash

docs/_posts/2018-05-06-getting_started.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ The current version of raspbian installs jdk-1.8.0_65-bi17 (hard float) and that
99

1010
Then install JRuby see [jruby][jruby].
1111

12-
There is something wrong with jgem install from rubygems (involving `flock` and possibly wrong bit) so currently the best approach is to download the gems and install locally
12+
1313

1414
```bash
15-
jgem install arcball-1.0.1-java.gem
16-
jgem install picrate-0.4.0-java.gem
15+
jgem install picrate
1716
```
1817

1918
Install samples

docs/_posts/2018-05-06-install_jruby.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Get the latest version from [http://jruby.org/download][download]
1111

1212
```bash
1313
cd /opt
14-
sudo tar xzvf /pathToDownload/jruby-bin-9.2.x.x.tar.gz
14+
sudo tar xzvf /pathToDownload/jruby-bin-9.2.1.0.tar.gz
1515
```
1616

1717
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"
3333

3434
If you know better please post on wiki
3535

36-
[download]:https://s3.amazonaws.com/jruby.org/downloads/9.2.0.0/jruby-bin-9.2.0.0.tar.gz
36+
[download]:https://s3.amazonaws.com/jruby.org/downloads/9.2.1.0/jruby-bin-9.2.1.0.tar.gz

pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
'project.build.sourceEncoding' => 'utf-8',
3232
'polyglot.dump.pom' => 'pom.xml',
3333
'maven.compiler.source' => '1.8' )
34-
pom 'org.jruby:jruby:9.2.0.0'
34+
pom 'org.jruby:jruby:9.2.1.0'
3535
jar 'org.processing:video:3.2.3'
3636
jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
3737
jar 'org.jogamp.gluegen:gluegen-rt-main:${jogl.version}'

vendors/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SOUND_VERSION = 'v1.3.2' # version 1.3.2
1010
GLVIDEO = 'processing-glvideo.zip'
1111
VIDEO = 'video-2.zip'
1212
VIDEO_VERSION = '2' # version 1.0.1
13-
EXAMPLES = '0.0.6'.freeze
13+
EXAMPLES = '0.0.7'.freeze
1414
HOME_DIR = ENV['HOME']
1515
PI_OR_LINUX = /linux|arm/ =~ RbConfig::CONFIG['host_os']
1616

0 commit comments

Comments
 (0)