Skip to content

Commit 0fa25ff

Browse files
committed
Update examples
1 parent 2e1fcc7 commit 0fa25ff

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ end
2121
desc 'Install'
2222
task :install do
2323
sh 'mvn dependency:copy'
24-
sh 'mv target/picrate-0.0.2.jar lib'
24+
sh 'mv target/picrate-0.0.3.jar lib'
2525
end
2626

2727
desc 'Gem'

lib/picrate/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module PiCrate
3-
VERSION = '0.0.2'.freeze
3+
VERSION = '0.0.3'.freeze
44
end

picrate.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ Gem::Specification.new do |gem|
3131
gem.add_runtime_dependency 'arcball', '~> 1.0', '>= 1.0.0'
3232
gem.require_paths = ['lib']
3333
gem.platform = 'java'
34-
gem.requirements << 'java runtime >= 1.8.0_151+'
34+
gem.requirements << 'java runtime >= 1.8.0_161+'
3535
end

pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project 'picrate', 'http://maven.apache.org' do
22

33
model_version '4.0.0'
4-
id 'ruby-processing:picrate:0.0.2'
4+
id 'ruby-processing:picrate:0.0.3'
55
packaging 'jar'
66

77
description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
1111
<modelVersion>4.0.0</modelVersion>
1212
<groupId>ruby-processing</groupId>
1313
<artifactId>picrate</artifactId>
14-
<version>0.0.2</version>
14+
<version>0.0.3</version>
1515
<name>picrate</name>
1616
<description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
1717
<url>http://maven.apache.org</url>

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.2'.freeze
13+
EXAMPLES = '0.0.3'.freeze
1414
HOME_DIR = ENV['HOME']
1515
PI_OR_LINUX = /linux|arm/ =~ RbConfig::CONFIG['host_os']
1616

0 commit comments

Comments
 (0)