File tree Expand file tree Collapse file tree 8 files changed +27
-14
lines changed Expand file tree Collapse file tree 8 files changed +27
-14
lines changed Original file line number Diff line number Diff line change
1
+ language : ruby
2
+ sudo : false
3
+
4
+ rvm :
5
+ - jruby-9.1.12.0
6
+ jdk :
7
+ - oraclejdk8
8
+ os :
9
+ - linux
Original file line number Diff line number Diff line change
1
+ ** v1.0.2** Bump for processing and jsoup updates add travis
2
+
1
3
** v1.0.1** Supports Placers, specifically ShapeBasedPlacer, and Observer (hence callbacks)
2
4
3
5
** v1.0.0** First release depends on WordCram-1.0 to supply jars
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ def create_manifest
6
6
File . open ( 'MANIFEST.MF' , 'w' ) do |f |
7
7
f . puts ( title )
8
8
f . puts ( version )
9
- f . puts ( 'Class-Path: jsoup-1.10.2 .jar' )
9
+ f . puts ( 'Class-Path: jsoup-1.10.3 .jar' )
10
10
end
11
11
end
12
12
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: false
2
+
2
3
if RUBY_PLATFORM == 'java'
3
4
require 'WordCram.jar'
4
- require 'jsoup-1.10.2 .jar'
5
- wc = %w( WordAngler WordColorer WordCram WordFonter WordPlacer WordSkipReason )
6
- sh = %w( Colorers ImageShaper Observer Placers Word ShapeBasedPlacer )
5
+ require 'jsoup-1.10.3 .jar'
6
+ wc = %w[ WordAngler WordColorer WordCram WordFonter WordPlacer WordSkipReason ]
7
+ sh = %w[ Colorers ImageShaper Observer Placers Word ShapeBasedPlacer ]
7
8
WC = wc . concat ( sh ) . freeze
8
9
WC . each do |klass |
9
10
java_import "wordcram.#{ klass } "
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
+
2
3
module WordCram
3
- VERSION = '2.0.0 ' . freeze
4
+ VERSION = '2.0.1 ' . freeze
4
5
end
Original file line number Diff line number Diff line change 1
1
project 'Wordcram' do
2
2
3
3
model_version '4.0.0'
4
- id 'wordcram:WordCram:2.0.0 '
4
+ id 'wordcram:WordCram:2.0.1 '
5
5
packaging 'jar'
6
6
description 'WordCram for JRubyArt and propane'
7
7
organization 'ruby-processing' , 'https://ruby-processing.github.io'
30
30
} )
31
31
end
32
32
33
- jar 'org.processing:core:3.3.0 '
34
- jar 'org.jsoup:jsoup:1.10.2 '
33
+ jar 'org.processing:core:3.3.4 '
34
+ jar 'org.jsoup:jsoup:1.10.3 '
35
35
36
36
build do
37
37
default_goal 'package'
50
50
execute_goals ( id : 'default-cli' ,
51
51
artifactItems : [ { groupId : 'org.jsoup' ,
52
52
artifactId : 'jsoup' ,
53
- version : '1.10.2 ' ,
53
+ version : '1.10.3 ' ,
54
54
type : 'jar' ,
55
55
outputDirectory : '${wordcram.basedir}/lib'
56
56
}
Original file line number Diff line number Diff line change @@ -53,12 +53,12 @@ DO NOT MODIFIY - GENERATED CODE
53
53
<dependency >
54
54
<groupId >org.processing</groupId >
55
55
<artifactId >core</artifactId >
56
- <version >3.3.0 </version >
56
+ <version >3.3.4 </version >
57
57
</dependency >
58
58
<dependency >
59
59
<groupId >org.jsoup</groupId >
60
60
<artifactId >jsoup</artifactId >
61
- <version >1.10.2 </version >
61
+ <version >1.10.3 </version >
62
62
</dependency >
63
63
</dependencies >
64
64
<build >
@@ -100,7 +100,7 @@ DO NOT MODIFIY - GENERATED CODE
100
100
<artifactItem >
101
101
<groupId >org.jsoup</groupId >
102
102
<artifactId >jsoup</artifactId >
103
- <version >1.10.2 </version >
103
+ <version >1.10.3 </version >
104
104
<type >jar</type >
105
105
<outputDirectory >${wordcram.basedir} /lib</outputDirectory >
106
106
</artifactItem >
Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ 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.3 and processing-3.3
13
+ WordCram library wrapped in a rubygem. Compiled and tested with JRubyArt-1.3.3 and processing-3.4
14
14
EOS
15
15
spec . licenses = %w{ Apache-2.0 }
16
16
spec . authors = %w{ Dan\ Bernier Jonathan\ Feinberg Martin\ Prout }
17
17
spec . email = 'mamba2928@yahoo.co.uk'
18
18
spec . homepage = 'http://ruby-processing.github.io/WordCram/'
19
19
spec . files = `git ls-files -z` . split ( "\x0 " ) . reject { |f | f . match ( %r{^(test|spec|features)/} ) }
20
20
spec . files << 'lib/WordCram.jar'
21
- spec . files << 'lib/jsoup-1.10.2 .jar'
21
+ spec . files << 'lib/jsoup-1.10.3 .jar'
22
22
spec . require_paths = [ 'lib' ]
23
23
spec . add_development_dependency 'rake' , '~> 12' , '>= 12.0'
24
24
end
You can’t perform that action at this time.
0 commit comments