We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95bdf11 commit 91fcf54Copy full SHA for 91fcf54
3 files changed
CHANGELOG.md
@@ -0,0 +1,3 @@
1
+**v1.0.1** Supports Placers, specifically ShapeBasedPlacer
2
+
3
+**v1.0.0** First release depends on WordCram-1.0 to supply jars
lib/ruby_wordcram.rb
@@ -3,7 +3,10 @@
require 'WordCram.jar'
4
require 'jsoup-1.7.2.jar'
5
require 'cue.language.jar'
6
- %w(Colorers Word WordAngler WordColorer WordCram WordFonter WordPlacer).each do |klass|
+ wc = %w(WordAngler WordColorer WordCram WordFonter WordPlacer WordSkipReason)
7
+ sh = %w(Colorers ImageShaper Placers Word ShapeBasedPlacer)
8
+ WC = wc.concat(sh).freeze
9
+ WC.each do |klass|
10
java_import "wordcram.#{klass}"
11
end
12
lib/ruby_wordcram/version.rb
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module WordCram
- VERSION = '1.0.0'.freeze
+ VERSION = '1.0.1'.freeze
0 commit comments