ruby_wordcram 2.0.2 → 2.0.3

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
- SHA1:
3
- metadata.gz: 3d1d4c20d32b7735a5179e0eb4a02ea6e8f7f2d6
4
- data.tar.gz: f80db6e737890a532962a5c6ce628f69937a2b2c
2
+ SHA256:
3
+ metadata.gz: a2632bd4503a04d67b0a7bfdf82db35ba0f91ddd264d847ee803a1c25371b297
4
+ data.tar.gz: ada52acbca5fc603c2f31a1b36944f000bff4c5364c4f703222ce43aa5e3d881
5
5
  SHA512:
6
- metadata.gz: ad92d865d2cfc82564ed25bbeca84597034bd75e272c5d4812e1b7531103f275ae0d2e5d01c91ec1e84677db2bddcadd049cd5cad7e2a964f10203ad2424d96e
7
- data.tar.gz: 46a3c1b7c0a67a6a362e3d5d13b73a193998c24de5f22eec6c43dd02c491476ab7800d9e2cdf42b2ee7c294a2c08130a755863708742727f4fc46db069a0236d
6
+ metadata.gz: 7cc9e0fe97c7ae86e0d6d83cc34f8559ea2344907e4f559eee38b6002a51230b81f3759b99f5637ebc7029c3e8dea60d35990889cd185bb568e27a4e0184f864
7
+ data.tar.gz: be090174c68254d5415944faacdcf36d435f595230a2ef8a4f5259d6299d1126a73e952af01f8b6dff3598493ab478252c3ff5ccbef60562c14bc7db0256461e
data/CHANGELOG.md CHANGED
@@ -1,8 +1,11 @@
1
+ **v2.0.3**
2
+ JRubyArt-1.4.6 and processing-3.3.6
3
+
1
4
  **v2.0.2**
2
- JRubyArt-1.4.2 and processing-3.5
5
+ JRubyArt-1.4.2 and processing-3.3.5
3
6
 
4
7
  **v2.0.1**
5
- JRubyArt-1.3.3 and processing-3.4
8
+ JRubyArt-1.3.3 and processing-3.3.4
6
9
 
7
10
  **v2.0.0**
8
11
  We now compile our own version of WordCram, which for this release is essentially the the same code as Dan Bernier (and Jonathan Feinberg cue.language), except we have dropped java-1.5 compatibility in favour of updating to JDK8. So where possible instead of using an anonymous class expression, we now use a lambda expression, and other jdk goodness. Future releases might actually include some jruby java code to compile. Update to use jsoup-1.10.2.jar
@@ -7,7 +7,7 @@ categories: wordcram update
7
7
 
8
8
  ### Requirements
9
9
 
10
- Requires JRubyArt-1.3.0+ (hence jruby-9.1.8.0+)
10
+ Requires JRubyArt-1.4.6+ (hence jruby-9.1.16.0+)
11
11
 
12
12
  ### Install the ruby_wordcram gem
13
13
 
data/lib/WordCram.jar CHANGED
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WordCram
4
- VERSION = '2.0.2'.freeze
4
+ VERSION = '2.0.3'.freeze
5
5
  end
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.0.1'
4
+ id 'wordcram:WordCram:2.0.3'
5
5
  packaging 'jar'
6
6
  description 'WordCram for JRubyArt and propane'
7
7
  organization 'ruby-processing', 'https://ruby-processing.github.io'
@@ -30,7 +30,7 @@ project 'Wordcram' do
30
30
  } )
31
31
  end
32
32
 
33
- jar 'org.processing:core:3.3.5'
33
+ jar 'org.processing:core:3.3.6'
34
34
  jar 'org.jsoup:jsoup:1.10.3'
35
35
 
36
36
  build do
data/pom.xml CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
11
11
  <modelVersion>4.0.0</modelVersion>
12
12
  <groupId>wordcram</groupId>
13
13
  <artifactId>WordCram</artifactId>
14
- <version>2.0.1</version>
14
+ <version>2.0.3</version>
15
15
  <name>Wordcram</name>
16
16
  <description>WordCram for JRubyArt and propane</description>
17
17
  <organization>
@@ -53,7 +53,7 @@ DO NOT MODIFIY - GENERATED CODE
53
53
  <dependency>
54
54
  <groupId>org.processing</groupId>
55
55
  <artifactId>core</artifactId>
56
- <version>3.3.5</version>
56
+ <version>3.3.6</version>
57
57
  </dependency>
58
58
  <dependency>
59
59
  <groupId>org.jsoup</groupId>
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.extra_rdoc_files = %w{README.md LICENSE}
11
11
  spec.summary = %q{Updated and extended WordCram library for JRubyArt and propane}
12
12
  spec.description =<<-EOS
13
- WordCram library wrapped in a rubygem. Compiled and tested with JRubyArt-1.4.2 and processing-3.5
13
+ WordCram library wrapped in a rubygem. Compiled and tested with JRubyArt-1.4.6 and processing-3.3.6
14
14
  EOS
15
15
  spec.licenses = %w{Apache-2.0}
16
16
  spec.authors = %w{Dan\ Bernier Jonathan\ Feinberg Martin\ Prout}
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.0.2
4
+ version: 2.0.3
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: 2017-10-06 00:00:00.000000000 Z
13
+ date: 2018-02-25 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake
@@ -32,8 +32,8 @@ dependencies:
32
32
  - - ">="
33
33
  - !ruby/object:Gem::Version
34
34
  version: '12.0'
35
- description: " WordCram library wrapped in a rubygem. Compiled and tested with JRubyArt-1.4.2
36
- and processing-3.5\n"
35
+ description: " WordCram library wrapped in a rubygem. Compiled and tested with JRubyArt-1.4.6
36
+ and processing-3.3.6\n"
37
37
  email: mamba2928@yahoo.co.uk
38
38
  executables: []
39
39
  extensions: []
@@ -188,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
188
188
  version: '0'
189
189
  requirements: []
190
190
  rubyforge_project:
191
- rubygems_version: 2.6.13
191
+ rubygems_version: 2.7.5
192
192
  signing_key:
193
193
  specification_version: 4
194
194
  summary: Updated and extended WordCram library for JRubyArt and propane