jruby_art 2.0.0.pre → 2.1.0.pre

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: 95ee9ba2c0566f581fcbeb6419b9833363db4c3241dceea519363df6ec4bf087
4
- data.tar.gz: 36e05debb0b7b3eff6de066214d8268aa1dbad95e7b555878b307fb688def583
3
+ metadata.gz: dbf26674aba52f404fc1679b7e35bfa75cd5792f0c675830ccddb729836737ed
4
+ data.tar.gz: acea5fc131540b56debfb2f5e12d08c4992c73dd7812ab2abe33fffa2f51ff3e
5
5
  SHA512:
6
- metadata.gz: '09e63329ce38c729359ceba06eb607560ad17b867a02bd81601ef0932ec0e2fa5c57a24fe9489aaeacc109117a5bbe9d5cec0f3f29e30990adc3917193f73dc4'
7
- data.tar.gz: a48465a30672125a40d8188a5c04610c1fa6665048a0d1165f1d2bbbcb80a4e1e5abdef0bd7a7d70bab7509c7930e90001e2b7f3201974d4508c40546fabd907
6
+ metadata.gz: 721237157a7fcb8f143dd9fb6bb103e5daf6c18fe887270acdf02961253dea43fc4323c3d3ea9c057a444177b371ffc43a03e41995ec360a7f62a3acd8a0dfc0
7
+ data.tar.gz: cb13667eefa322ceec5c7515db6018f85b25dd6fa5b93fb2d2d24cd4d8810f705955737280218e5aa8dc000f78509b14098ab48ce560b3ad7421dbca3d63c366
@@ -9,10 +9,10 @@ end
9
9
 
10
10
  SKETCH_ROOT ||= Dir.pwd
11
11
 
12
- require 'jruby_art/version'
13
- require 'jruby_art/helpers/numeric'
12
+ require "#{K9_ROOT}/lib/jruby_art/version"
13
+ require "#{K9_ROOT}/lib/jruby_art/helpers/numeric"
14
14
 
15
15
  # The top-level namespace, a home for all JRubyArt classes.
16
16
  module Processing
17
- require 'jruby_art/runner'
17
+ require "#{K9_ROOT}/lib/jruby_art/runner"
18
18
  end
@@ -13,7 +13,6 @@ module Processing
13
13
 
14
14
  # Include some core processing classes that we'd like to use:
15
15
  include_package 'processing.core'
16
- java_import 'processing.core.PFont'
17
16
  # Load vecmath, fastmath and mathtool modules
18
17
  Java::Monkstone::JRLibrary.load(JRuby.runtime)
19
18
  # import custom Vecmath renderers
@@ -3,7 +3,7 @@ require_relative 'native_loader'
3
3
 
4
4
  require 'pathname'
5
5
 
6
- # This class knows where to find propane libraries
6
+ # This class knows where to find JRubyArt libraries
7
7
  class Library
8
8
  require_relative '../jruby_art'
9
9
  require_relative './config'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  # A wrapper for version
3
3
  module JRubyArt
4
- VERSION = '2.0.0.pre'.freeze
4
+ VERSION = '2.1.0.pre'.freeze
5
5
  end
@@ -0,0 +1,4 @@
1
+ # @TODO usage
2
+ class Processing::App
3
+ java_import Java::ProcessingDxf::RawDXF
4
+ end
@@ -0,0 +1,5 @@
1
+ # @TODO usage
2
+ class Processing::App
3
+ java_import Java::ProcessingNet::Client
4
+ java_import Java::ProcessingNet::Server
5
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jruby_art
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.pre
4
+ version: 2.1.0.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Prout
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-17 00:00:00.000000000 Z
11
+ date: 2019-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -39,8 +39,8 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '5.10'
41
41
  description: |2
42
- JRubyArt is a ruby implementation of the processing art framework, with enhanced
43
- functionality. Use both processing libraries and ruby gems in your sketches.
42
+ JRubyArt-2.0+ is a ruby implementation of the processing art framework, with enhanced
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
46
46
  executables:
@@ -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.jar
60
+ - lib/jruby_art-2.1.0.pre.jar
61
61
  - lib/jruby_art.rb
62
62
  - lib/jruby_art/app.rb
63
63
  - lib/jruby_art/config.rb
@@ -85,8 +85,10 @@ files:
85
85
  - library/chooser/chooser.rb
86
86
  - library/color_group/color_group.rb
87
87
  - library/control_panel/control_panel.rb
88
+ - library/dxf/dxf.rb
88
89
  - library/library_proxy/README.md
89
90
  - library/library_proxy/library_proxy.rb
91
+ - library/net/net.rb
90
92
  - library/slider/slider.rb
91
93
  - library/vector_utils/vector_utils.rb
92
94
  - library/video_event/video_event.rb
@@ -113,7 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
113
115
  requirements:
114
116
  - A decent graphics card
115
117
  - java runtime >= 11.0.3+
116
- rubygems_version: 3.0.3
118
+ rubygems_version: 3.0.4
117
119
  signing_key:
118
120
  specification_version: 4
119
121
  summary: Code as Art, Art as Code. Processing and Ruby are meant for each other.