ruby_wordcram 2.1.0 → 2.1.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: f67a20075948cc04d634d7c32b26bbc89cdb03f89efa8330eaba5ef4394b2a69
4
- data.tar.gz: e9cd1d0bb29d21aa38d9b306abc84eda15dbc1a1b4ca43f27b4ca4b2aafe8972
3
+ metadata.gz: 9358c60d608d2cd7dcb8be8a903bdc022098286721d58db0d4b628d8aca86a81
4
+ data.tar.gz: 50b0fb08121c1a52cfac83fa27f87b78bccb6d325cd17ee2e4d918216d1c6aef
5
5
  SHA512:
6
- metadata.gz: abed2f62c1d4f4d5bbc8dec55713dde10ad66db56c9740a4119296f0a2cf6727e0dd15b7722e6d1046d62b3e72d2f70b8b262dc60d96f8d612628adac4138027
7
- data.tar.gz: cf0a0b50fd4541bc921a78ca7bb5518e30745864d5b31c1b2f128d2c67fdf63270d5a42a22557f821715e6eecd6c50fc9fd39a567d047a79cffe88d80ae015cf
6
+ metadata.gz: d99c7b170dcb6aad09b1e3c94d0a12cf2f73e82cebc8c366c09c6081f62a5ce471edca06a6688db5ca6b3d1dc84e567e45e89a4e1057445c98f9b54395b1ab1e
7
+ data.tar.gz: ccd9e4e26f3f35246c5451ff94bbea1a14452d78f9314c302d87972599193ece1a4cf68e11db3fbef14435cae3459df1b87d942f2ed48f925c0af764c8d9b779
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
- **v2.1.0** for PiCrate-2.4.0+, JRubyArt-2.5.0+, propane-3.10.0+
1
+ **v2.1.0**
2
+ Bump jsoup-1.14.2 version
3
+
4
+ **v2.1.0**
5
+ for PiCrate-2.4.0+, JRubyArt-2.5.0+, propane-3.10.0+
2
6
 
3
7
  **v2.0.6**
4
8
  Bump jsoup-1.13.1 version
data/lib/WordCram.jar CHANGED
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WordCram
4
- VERSION = '2.1.0'.freeze
4
+ VERSION = '2.1.1'.freeze
5
5
  end
data/lib/ruby_wordcram.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  if RUBY_PLATFORM == 'java'
4
4
  require 'WordCram.jar'
5
- require 'jsoup-1.13.1.jar'
5
+ require 'jsoup-1.14.2.jar'
6
6
  wc = %w[WordAngler WordColorer WordCram WordFonter WordPlacer WordSkipReason]
7
7
  sh = %w[Colorers ImageShaper Observer Placers Word ShapeBasedPlacer]
8
8
  WC = wc.concat(sh).freeze
data/pom.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  project 'Wordcram' do
2
2
 
3
3
  model_version '4.0.0'
4
- id 'wordcram:WordCram:2.1.0'
4
+ id 'wordcram:WordCram:2.1.1'
5
5
  packaging 'jar'
6
6
 
7
7
  description 'WordCram for JRubyArt, PiCrate and propane'
@@ -30,7 +30,7 @@ project 'Wordcram' do
30
30
  )
31
31
 
32
32
  jar 'org.processing:core:4.0.0'
33
- jar 'org.jsoup:jsoup:1.13.1'
33
+ jar 'org.jsoup:jsoup:1.14.2'
34
34
 
35
35
  overrides do
36
36
  plugin( :compiler, '3.8.1',
@@ -46,7 +46,7 @@ project 'Wordcram' do
46
46
  execute_goals( :id => 'default-cli',
47
47
  'artifactItems' => [ { 'groupId' => 'org.jsoup',
48
48
  'artifactId' => 'jsoup',
49
- 'version' => '1.13.1',
49
+ 'version' => '1.14.2',
50
50
  'type' => 'jar',
51
51
  'outputDirectory' => '${wordcram.basedir}/lib' } ] )
52
52
  end
data/pom.xml CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFY - GENERATED CODE
11
11
  <modelVersion>4.0.0</modelVersion>
12
12
  <groupId>wordcram</groupId>
13
13
  <artifactId>WordCram</artifactId>
14
- <version>2.1.0</version>
14
+ <version>2.1.1</version>
15
15
  <name>Wordcram</name>
16
16
  <description>WordCram for JRubyArt, PiCrate and propane</description>
17
17
  <developers>
@@ -53,7 +53,7 @@ DO NOT MODIFY - GENERATED CODE
53
53
  <dependency>
54
54
  <groupId>org.jsoup</groupId>
55
55
  <artifactId>jsoup</artifactId>
56
- <version>1.13.1</version>
56
+ <version>1.14.2</version>
57
57
  </dependency>
58
58
  </dependencies>
59
59
  <build>
@@ -103,7 +103,7 @@ DO NOT MODIFY - GENERATED CODE
103
103
  <artifactItem>
104
104
  <groupId>org.jsoup</groupId>
105
105
  <artifactId>jsoup</artifactId>
106
- <version>1.13.1</version>
106
+ <version>1.14.2</version>
107
107
  <type>jar</type>
108
108
  <outputDirectory>${wordcram.basedir}/lib</outputDirectory>
109
109
  </artifactItem>
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.extra_rdoc_files = %w{README.md LICENSE}
10
10
  spec.summary = %q{Updated and extended WordCram library for JRubyArt and propane}
11
11
  spec.description =<<-EOS
12
- WordCram library wrapped in a rubygem. Compiled and tested with JRubyArt-2.5.0
12
+ WordCram library wrapped in a rubygem. Compiled and tested with JRubyArt-2.5.8
13
13
  EOS
14
14
  spec.licenses = %w{Apache-2.0}
15
15
  spec.authors = %w{Dan\ Bernier Jonathan\ Feinberg Martin\ Prout}
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.homepage = 'http://ruby-processing.github.io/WordCram/'
18
18
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
19
  spec.files << 'lib/WordCram.jar'
20
- spec.files << 'lib/jsoup-1.13.1.jar'
20
+ spec.files << 'lib/jsoup-1.14.2.jar'
21
21
  spec.require_paths = ['lib']
22
22
  spec.add_development_dependency 'rake', '~> 13', '>= 13.0'
23
23
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_wordcram
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Bernier
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2021-04-09 00:00:00.000000000 Z
13
+ date: 2021-08-24 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake
@@ -32,7 +32,7 @@ dependencies:
32
32
  - - ">="
33
33
  - !ruby/object:Gem::Version
34
34
  version: '13.0'
35
- description: " WordCram library wrapped in a rubygem. Compiled and tested with JRubyArt-2.5.0\n"
35
+ description: " WordCram library wrapped in a rubygem. Compiled and tested with JRubyArt-2.5.8\n"
36
36
  email: mamba2928@yahoo.co.uk
37
37
  executables: []
38
38
  extensions: []
@@ -74,7 +74,7 @@ files:
74
74
  - example/data/MINYN___.TTF
75
75
  - example/test.rb
76
76
  - lib/WordCram.jar
77
- - lib/jsoup-1.13.1.jar
77
+ - lib/jsoup-1.14.2.jar
78
78
  - lib/ruby_wordcram.rb
79
79
  - lib/ruby_wordcram/version.rb
80
80
  - mvnw
data/lib/jsoup-1.13.1.jar DELETED
Binary file