ruby_wordcram 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG.md +5 -2
- data/docs/_posts/2017-03-07-getting_started.md +1 -1
- data/lib/WordCram.jar +0 -0
- data/lib/ruby_wordcram/version.rb +1 -1
- data/pom.rb +2 -2
- data/pom.xml +2 -2
- data/ruby_wordcram.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: a2632bd4503a04d67b0a7bfdf82db35ba0f91ddd264d847ee803a1c25371b297
|
|
4
|
+
data.tar.gz: ada52acbca5fc603c2f31a1b36944f000bff4c5364c4f703222ce43aa5e3d881
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/WordCram.jar
CHANGED
|
Binary file
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
56
|
+
<version>3.3.6</version>
|
|
57
57
|
</dependency>
|
|
58
58
|
<dependency>
|
|
59
59
|
<groupId>org.jsoup</groupId>
|
data/ruby_wordcram.gemspec
CHANGED
|
@@ -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.
|
|
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.
|
|
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:
|
|
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.
|
|
36
|
-
and processing-3.
|
|
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.
|
|
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
|