jruby_art 2.4.0 → 2.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 96ec1cf80506244d40848e18bfbf84f5836efd3701fdc57a1c92b64e974dc98c
4
- data.tar.gz: 7517baecd89127684abd07a23f429032bfe7b14a53c9ffb7aa947dbac3bbbdbc
3
+ metadata.gz: 0f83fb1eeb3998c1f5b56f4d67ac14f37b53d35e28d59ee2fe530558f7d4db55
4
+ data.tar.gz: 9ba4ada63d3848ff7321d5701f6a2a0f09d5ae90be2e61a1d182b9a4e723067b
5
5
  SHA512:
6
- metadata.gz: 4895e151d7f78c2468cf797e5d121b17b07dd9d516079a0f4a94af8b355eed9ec66992c695742b53219bae076866acd3c8de925b60add5b5204ac0fd9a5f441c
7
- data.tar.gz: 9d14e5aa3ebc26e80cb880178eb9424222b59da01ab55142118077d77d7384f81458525c3051336d3424a9849afda20a85955aceb35547124c6d93645ac6cf88
6
+ metadata.gz: 6cbd28b19ef5d12896d28658d737173120a03356e612500301577b9d438678752ad08efb276a558e69cc0182d8b7c38f3de9f8ce867af770b7ad3743d521f997
7
+ data.tar.gz: 006b32a6ffad38416e9a60ab9cccc88a06e5ec6b23560eb06e9ed6a163fba2afd72b493f595825db79871bc8a6b1c143d59e371327c6e9678744d59e965478ef
Binary file
data/lib/gluegen-rt.jar CHANGED
Binary file
Binary file
Binary file
data/lib/jogl-all.jar CHANGED
Binary file
Binary file
data/lib/jruby_art.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  # frozen_string_literal: true
2
-
3
2
  # JRubyArt is for Code Art.
4
3
  # Send suggestions, ideas, and hate-mail to mamba2928 [at] gmail.com
5
4
  # Also, send samples and libraries.
data/lib/jruby_art/app.rb CHANGED
@@ -43,6 +43,7 @@ module Processing
43
43
  include Math
44
44
  include MathTool
45
45
  include Render
46
+ include FastNoise
46
47
  # Alias some methods for familiarity for Shoes coders.
47
48
  # surface replaces :frame
48
49
  alias oval ellipse
@@ -25,7 +25,7 @@ class NativeFolder
25
25
  end
26
26
 
27
27
  def name
28
- return 'macosx' if /darwin|mac/.match?(os)
28
+ return macos if /darwin|mac/.match?(os)
29
29
 
30
30
  return format(LINUX_FORMAT, bit: bit) if /linux/.match?(os)
31
31
 
@@ -2,6 +2,8 @@
2
2
 
3
3
  # detects processing preferences.txt, extracts sketchbook_path
4
4
  class ProcessingIde
5
+ THREE='sketchbook.path.three='.freeze
6
+ FOUR='sketchbook.path.four='.freeze
5
7
  attr_reader :preferences
6
8
  def initialize
7
9
  @preferences = File.join(ENV['HOME'], '.processing', 'preferences.txt')
@@ -14,9 +16,9 @@ class ProcessingIde
14
16
  def sketchbook_path
15
17
  File.open(preferences, 'r') do |file|
16
18
  file.each_line do |line|
17
- if /sketchbook/.match?(line)
18
- return line.tap { |sli| sli.slice!('sketchbook.path.three=') }.chomp
19
- end
19
+ return line.tap { |sli| sli.slice!(FOUR) }.chomp if /sketchbook.path.four/.match?(line)
20
+
21
+ return line.tap { |sli| sli.slice!(THREE) }.chomp if /sketchbook.path.three/.match?(line)
20
22
  end
21
23
  end
22
24
  end
@@ -141,9 +141,10 @@ module Processing
141
141
  def install(library = nil)
142
142
  require_relative 'installer'
143
143
  library ||= 'new'
144
- case library.downcase
144
+ choice = library.downcase
145
+ case choice
145
146
  when /sound|video/
146
- system "cd #{K9_ROOT}/vendors && rake download_and_copy_#{choice}"
147
+ system "cd #{K9_ROOT}/vendors && rake install_#{choice}"
147
148
  when /samples/
148
149
  system "cd #{K9_ROOT}/vendors && rake install_samples"
149
150
  when /jruby/
@@ -2,5 +2,5 @@
2
2
 
3
3
  # A wrapper for version
4
4
  module JRubyArt
5
- VERSION = '2.4.0'
5
+ VERSION = '2.5.1'
6
6
  end
Binary file
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ # @TODO usage
4
+ class Processing::App
5
+ require_relative 'itextpdf-5.5.13.2.jar'
6
+ java_import Java::ProcessingPdf::PGraphicsPDF
7
+ end
Binary file
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ # @TODO usage
4
+ class Processing::App
5
+ require_relative 'batik-all-1.14.jar'
6
+ java_import Java::ProcessingSvg::PGraphicsSVG
7
+ end
data/vendors/Rakefile CHANGED
@@ -11,15 +11,15 @@ WARNING = <<~WARN
11
11
 
12
12
  WARN
13
13
  # https://github.com/processing/processing-video/releases/download/r6-v2.0-beta4/video-2.0-beta4.zip
14
- JRUBYC_VERSION = '9.2.11.1'
14
+ JRUBYC_VERSION = '9.2.19.0'
15
15
  SOUND = 'sound.zip'
16
- SOUND_VERSION = 'v2.2.2'
17
- VIDEO = 'video-2.0-beta4.zip'
18
- VIDEO_VERSION = 'r6-v2.0-beta4'
19
- EXAMPLES = '3.6'
16
+ SOUND_VERSION = 'v2.2.3'
17
+ VIDEO = 'video.zip'
18
+ VIDEO_VERSION = 'v2.0'
19
+ EXAMPLES = '4.1'
20
20
  HOME_DIR = ENV['HOME']
21
21
  MAC_OR_LINUX = /linux|mac|darwin/.match?(RbConfig::CONFIG['host_os'])
22
-
22
+ DOWNLOAD = 'releases/download/latest'
23
23
  CLOBBER << "jruby-complete-#{JRUBYC_VERSION}.jar"
24
24
  CLOBBER << "jruby-complete-#{JRUBYC_VERSION}.jar.sha256"
25
25
 
@@ -82,15 +82,15 @@ task :init_dir do
82
82
  end
83
83
 
84
84
  desc 'download and copy sound library to ~/.jruby_art'
85
- task download_and_copy_sound: %i[wget_check init_dir download_sound copy_sound clobber]
85
+ task install_sound: %i[wget_check init_dir download_sound copy_sound clobber]
86
86
 
87
87
  desc 'download and copy video library to ~/.jruby_art'
88
- task download_and_copy_video: %i[wget_check init_dir download_video copy_video clobber]
88
+ task install_video: %i[wget_check init_dir download_video copy_video clobber]
89
89
 
90
90
  desc 'download sound library'
91
91
  task :download_sound do
92
92
  wget_base = 'wget https://github.com/processing/processing-sound'
93
- wget_string = [wget_base, 'releases/download/latest', SOUND].join('/')
93
+ wget_string = [wget_base, DOWNLOAD, SOUND].join('/')
94
94
  puts wget_string
95
95
  system wget_string
96
96
  end
@@ -98,12 +98,12 @@ end
98
98
  desc 'download video library'
99
99
  task :download_video do
100
100
  wget_base = 'wget https://github.com/processing/processing-video'
101
- wget_string = [wget_base, 'releases/download', VIDEO_VERSION, VIDEO].join('/')
101
+ wget_string = [wget_base, DOWNLOAD, VIDEO].join('/')
102
102
  system wget_string
103
103
  end
104
104
 
105
105
  desc 'copy sound library'
106
- task copy_sound: SOUND do
106
+ task :copy_sound do
107
107
  system "unzip #{SOUND}"
108
108
  if File.exist? "#{HOME_DIR}/.jruby_art/libraries/sound"
109
109
  FileUtils.rm_r "#{HOME_DIR}/.picrate/libraries/sound"
@@ -113,7 +113,7 @@ task copy_sound: SOUND do
113
113
  end
114
114
 
115
115
  desc 'copy video library'
116
- task copy_video: VIDEO do
116
+ task :copy_video do
117
117
  system "unzip #{VIDEO}"
118
118
  if File.exist? "#{HOME_DIR}/.jruby_art/libraries/video"
119
119
  FileUtils.rm_r "#{HOME_DIR}/.picrate/libraries/video"
metadata CHANGED
@@ -1,45 +1,45 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jruby_art
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Prout
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-08 00:00:00.000000000 Z
11
+ date: 2021-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: minitest
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
16
  - - "~>"
18
17
  - !ruby/object:Gem::Version
19
18
  version: '5.10'
20
- type: :development
19
+ name: minitest
21
20
  prerelease: false
21
+ type: :development
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '5.10'
27
27
  - !ruby/object:Gem::Dependency
28
- name: rake
29
28
  requirement: !ruby/object:Gem::Requirement
30
29
  requirements:
31
30
  - - "~>"
32
31
  - !ruby/object:Gem::Version
33
32
  version: '12.3'
34
- type: :development
33
+ name: rake
35
34
  prerelease: false
35
+ type: :development
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '12.3'
41
41
  description: |2
42
- JRubyArt-2.4.0+ is a ruby implementation of the processing art framework, with enhanced
42
+ JRubyArt-2.5.0+ is a ruby implementation of the processing art framework, with enhanced
43
43
  functionality. Processing libraries and ruby gems can be used in your sketches.
44
44
  Features create/run/watch/live modes.
45
45
  email: mamba2928@yahoo.co.uk
@@ -57,7 +57,7 @@ files:
57
57
  - lib/jogl-all-natives-macosx-universal.jar
58
58
  - lib/jogl-all-natives-windows-amd64.jar
59
59
  - lib/jogl-all.jar
60
- - lib/jruby_art-2.4.0.jar
60
+ - lib/jruby_art-2.5.1.jar
61
61
  - lib/jruby_art.rb
62
62
  - lib/jruby_art/app.rb
63
63
  - lib/jruby_art/config.rb
@@ -89,7 +89,11 @@ files:
89
89
  - library/library_proxy/README.md
90
90
  - library/library_proxy/library_proxy.rb
91
91
  - library/net/net.rb
92
+ - library/pdf/itextpdf-5.5.13.2.jar
93
+ - library/pdf/pdf.rb
92
94
  - library/slider/slider.rb
95
+ - library/svg/batik-all-1.14.jar
96
+ - library/svg/svg.rb
93
97
  - library/vector_utils/vector_utils.rb
94
98
  - library/video_event/video_event.rb
95
99
  - vendors/Rakefile
@@ -107,7 +111,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
107
111
  requirements:
108
112
  - - ">="
109
113
  - !ruby/object:Gem::Version
110
- version: '2.4'
114
+ version: '2.5'
111
115
  required_rubygems_version: !ruby/object:Gem::Requirement
112
116
  requirements:
113
117
  - - ">="
@@ -116,8 +120,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
120
  requirements:
117
121
  - A decent graphics card
118
122
  - java runtime >= 11.0.3+
119
- rubygems_version: 3.0.6
120
- signing_key:
123
+ rubygems_version: 3.1.6
124
+ signing_key:
121
125
  specification_version: 4
122
126
  summary: Code as Art, Art as Code. Processing and Ruby are meant for each other.
123
127
  test_files: []
Binary file