prawn-disable_word_break 2.3.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/prawn/disable_word_break/version.rb +1 -1
- data/lib/prawn/disable_word_break.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c65604f3c24fe1e918159c43acb608b85e1255243d195d9c8422b90099f69126
|
4
|
+
data.tar.gz: 3973a5c936b5a1cce6653974dd1b23c2239e26883df5cd3a22f3b701dc97fd1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8e2438be3e2a9a5ba0cdf94b42b876297b6be0be1099e86aaad91e55c5ffb54a360b1538730832f0e2fadc443ca4004297db3d51cd3adade92ae6ec8c9d29e8
|
7
|
+
data.tar.gz: 407f6f2741ae233c7cdbfd1e7d4eb03f5f07f922bac5f7e743bab4c3415781eb6d08cba51e8e4a8ce1650b9d9a1435cd636a12263b2d5315bb9c45b84a8f1245
|
@@ -11,14 +11,14 @@ module Prawn
|
|
11
11
|
extend Forwardable
|
12
12
|
|
13
13
|
Config = Struct.new(
|
14
|
-
# Sets the default value for the disable_word_break option. Default is
|
14
|
+
# Sets the default value for the disable_word_break option. Default is true.
|
15
15
|
:default,
|
16
16
|
|
17
17
|
keyword_init: true
|
18
18
|
)
|
19
19
|
|
20
20
|
def self.config
|
21
|
-
@config ||= Config.new(default:
|
21
|
+
@config ||= Config.new(default: true)
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|