dealwithify 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/dealwithify +12 -5
- data/lib/dealwithify/version.rb +1 -1
- metadata +1 -1
data/bin/dealwithify
CHANGED
|
@@ -111,10 +111,17 @@ if img_src
|
|
|
111
111
|
final.write("#{filename}.gif")
|
|
112
112
|
else
|
|
113
113
|
puts <<-eos
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
114
|
+
dealwithify takes an image and turns it into an animated gif with the deal with
|
|
115
|
+
it glasses and text. All you need to do is give it a url!
|
|
116
|
+
|
|
117
|
+
The resulting image is written into whatever directory you ran the gem from.
|
|
118
|
+
|
|
119
|
+
Usage:
|
|
120
|
+
dealwithify url
|
|
121
|
+
|
|
122
|
+
example:
|
|
123
|
+
dealwithify http://facebook.com/profile.jpg
|
|
124
|
+
|
|
125
|
+
More information at: https://github.com/tomelm/deal-withify
|
|
119
126
|
eos
|
|
120
127
|
end
|
data/lib/dealwithify/version.rb
CHANGED