Skip to content

Commit 0a322c2

Browse files
committed
Need to update noise yet
1 parent f002c67 commit 0a322c2

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**v3.9.0** Make OpenSimplex2 noise default noise, implement pdf and svg export libraries.
2+
13
**v3.8.0** Refactor noise to delegate pattern, improve default implementation and add simplex noise option
24

35
**v3.7.1** Recommend JRuby-9.2.15.0 use

library/pdf/pdf.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22

33
# @TODO usage
44
class Propane::App
5+
require_relative 'itext-5.5.13.2.jar'
56
java_import Java::ProcessingPdf::PGraphicsPDF
67
end

pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
artifactId: 'itextpdf',
6868
version: '${itextpdf.version}',
6969
type: 'jar',
70-
outputDirectory: '${propane.basedir}/lib'
70+
outputDirectory: '${propane.basedir}/library/pdf'
7171
},
7272
{ groupId: 'org.apache.xmlgraphics',
7373
artifactId: 'batik-all',

propane.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Gem::Specification.new do |gem|
1111
gem.email = ['mamba2928@yahoo.co.uk']
1212
gem.licenses = %w[GPL-3.0 LGPL-2.0]
1313
gem.description = <<-EOS
14-
A batteries included version of processing in ruby targetting jdk11.
14+
A batteries included version of processing in ruby targetting jdk11+.
1515
EOS
1616
gem.summary = 'ruby implementation of processing-4.0 on MacOS, linux and windows (64bit only)'
1717
gem.homepage = 'https://ruby-processing.github.io/propane/'
@@ -27,7 +27,7 @@ Gem::Specification.new do |gem|
2727
gem.files << 'lib/jogl-all-natives-macosx-universal.jar'
2828
# gem.files << 'lib/jogl-all-natives-ios-arm64.jar'
2929
gem.files << 'lib/jogl-all-natives-windows-amd64.jar'
30-
gem.files << 'lib/itextpdf-5.5.13.2.jar'
30+
gem.files << 'library/pdf/itextpdf-5.5.13.2.jar'
3131
gem.files << 'library/svg/batik-all-1.14.jar'
3232
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
3333
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})

0 commit comments

Comments
 (0)