File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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+
13** v1.0.1** Supports Placers, specifically ShapeBasedPlacer, and Observer (hence callbacks)
24
35** 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
66 File . open ( 'MANIFEST.MF' , 'w' ) do |f |
77 f . puts ( title )
88 f . puts ( version )
9- f . puts ( 'Class-Path: jsoup-1.10.2 .jar' )
9+ f . puts ( 'Class-Path: jsoup-1.10.3 .jar' )
1010 end
1111end
1212
Original file line number Diff line number Diff line change 11# frozen_string_literal: false
2+
23if RUBY_PLATFORM == 'java'
34 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 ]
78 WC = wc . concat ( sh ) . freeze
89 WC . each do |klass |
910 java_import "wordcram.#{ klass } "
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
2+
23module WordCram
3- VERSION = '2.0.0 ' . freeze
4+ VERSION = '2.0.1 ' . freeze
45end
Original file line number Diff line number Diff line change 11project 'Wordcram' do
22
33 model_version '4.0.0'
4- id 'wordcram:WordCram:2.0.0 '
4+ id 'wordcram:WordCram:2.0.1 '
55 packaging 'jar'
66 description 'WordCram for JRubyArt and propane'
77 organization 'ruby-processing' , 'https://ruby-processing.github.io'
3030 } )
3131 end
3232
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 '
3535
3636 build do
3737 default_goal 'package'
5050 execute_goals ( id : 'default-cli' ,
5151 artifactItems : [ { groupId : 'org.jsoup' ,
5252 artifactId : 'jsoup' ,
53- version : '1.10.2 ' ,
53+ version : '1.10.3 ' ,
5454 type : 'jar' ,
5555 outputDirectory : '${wordcram.basedir}/lib'
5656 }
Original file line number Diff line number Diff line change @@ -53,12 +53,12 @@ DO NOT MODIFIY - GENERATED CODE
5353 <dependency >
5454 <groupId >org.processing</groupId >
5555 <artifactId >core</artifactId >
56- <version >3.3.0 </version >
56+ <version >3.3.4 </version >
5757 </dependency >
5858 <dependency >
5959 <groupId >org.jsoup</groupId >
6060 <artifactId >jsoup</artifactId >
61- <version >1.10.2 </version >
61+ <version >1.10.3 </version >
6262 </dependency >
6363 </dependencies >
6464 <build >
@@ -100,7 +100,7 @@ DO NOT MODIFIY - GENERATED CODE
100100 <artifactItem >
101101 <groupId >org.jsoup</groupId >
102102 <artifactId >jsoup</artifactId >
103- <version >1.10.2 </version >
103+ <version >1.10.3 </version >
104104 <type >jar</type >
105105 <outputDirectory >${wordcram.basedir} /lib</outputDirectory >
106106 </artifactItem >
Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ Gem::Specification.new do |spec|
1010 spec . extra_rdoc_files = %w{ README.md LICENSE }
1111 spec . summary = %q{Updated and extended WordCram library for JRubyArt and propane}
1212 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
1414 EOS
1515 spec . licenses = %w{ Apache-2.0 }
1616 spec . authors = %w{ Dan\ Bernier Jonathan\ Feinberg Martin\ Prout }
1717 spec . email = 'mamba2928@yahoo.co.uk'
1818 spec . homepage = 'http://ruby-processing.github.io/WordCram/'
1919 spec . files = `git ls-files -z` . split ( "\x0 " ) . reject { |f | f . match ( %r{^(test|spec|features)/} ) }
2020 spec . files << 'lib/WordCram.jar'
21- spec . files << 'lib/jsoup-1.10.2 .jar'
21+ spec . files << 'lib/jsoup-1.10.3 .jar'
2222 spec . require_paths = [ 'lib' ]
2323 spec . add_development_dependency 'rake' , '~> 12' , '>= 12.0'
2424end
You can’t perform that action at this time.
0 commit comments