sugarcube 1.3.9 → 1.3.10
Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock
CHANGED
@@ -57,7 +57,7 @@ class NSAttributedString
|
|
57
57
|
foo = NSShadowAttributeName
|
58
58
|
foo = NSVerticalGlyphFormAttributeName
|
59
59
|
# new iOS 7 text effects
|
60
|
-
foo =
|
60
|
+
foo = NSTextEffectAttributeName
|
61
61
|
foo = NSTextEffectsLetterPressStyle
|
62
62
|
# make sure alignments get compiled
|
63
63
|
foo = NSLeftTextAlignment
|
@@ -137,7 +137,7 @@ class NSAttributedString
|
|
137
137
|
end
|
138
138
|
|
139
139
|
def letterpress
|
140
|
-
with_attributes({
|
140
|
+
with_attributes({NSTextEffectAttributeName => NSTextEffectsLetterPressStyle})
|
141
141
|
end
|
142
142
|
|
143
143
|
def with_attributes(attributes)
|
data/lib/sugarcube/version.rb
CHANGED