Skip to content

Commit 28bdd7d

Browse files
committed
update docs
1 parent 57aadc0 commit 28bdd7d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ port: 4000
33
title: PiCrate gem
44
email: mamba2928@yahoo.co.uk
55
description: > # this means to ignore newlines until "baseurl:"
6-
The picrate gem is ruby wrapper around processing, targetting raspberrypi and
6+
The picrate gem is ruby implementation of processing, targetting raspberrypi and
77
linux
88
baseurl: "" # the subpath of your site, e.g. /blog
99
regenerate: true

docs/_posts/2018-05-11-arch-linux-arm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It is quite likely that people wishing to experiment with PiCrate on arm have mo
88

99
```bash
1010
sudo pacman -Syu # get up to data
11-
sudo pacman jdk-arm # but I'm not 100% sure what version is installed jdk8 is reqd / and preferred over later
11+
sudo pacman jdk-arm # but I'm not 100% sure what version is installed jdk8+ is reqd
1212
sudo archlinux-java set java-8-openjdk/jre # case you have more than one java installed
1313
sudo pacman jruby # should install latest version
1414
```

docs/_posts/2018-11-18-building-gem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Requirements:-
88

99
1. An installed version of vanilla processing to provide `processing.org` customised version of the `jogl` jars. The default `Rakefile` assumes root installation of processing, for debian distros you will need to adjust `processing_root` _ca. line 20_.
1010

11-
2. jdk-8 and maven
11+
2. jdk-11 and maven (builds for jdk-8)
1212

1313
Simply clone this distribution, then rake to build and test gem
1414
```bash

src/main/java/monkstone/ColorUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* This utility allows JRubyArt users to use the processing.org color method
2+
* This utility allows PiCrate users to use the processing.org color method
33
* in their sketches. Includes a method to efficiently convert an cols of web
44
* strings to an cols of color int, and another to convert an cols of p5 color
55
* (int) to a string that can be used in ruby code (to generate web color cols).

vendors/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SOUND_VERSION = 'v1.3.2'
99
GLVIDEO = 'processing-glvideo.zip'
1010
VIDEO = 'video-2.zip'
1111
VIDEO_VERSION = '2'
12-
EXAMPLES = '0.2.0'
12+
EXAMPLES = '0.3.0'
1313
HOME_DIR = ENV['HOME']
1414
CLOBBER.include(EXAMPLES, SOUND, GLVIDEO, VIDEO)
1515

0 commit comments

Comments
 (0)