thumb_fu 0.1.1 → 0.1.2
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/CHANGELOG +1 -0
- data/README +12 -0
- data/Rakefile +1 -1
- data/thumb_fu.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
data/README
CHANGED
@@ -0,0 +1,12 @@
|
|
1
|
+
= ThumbFu
|
2
|
+
|
3
|
+
Ruby gem for generating a page thumbnail using www.bitpixels.com
|
4
|
+
|
5
|
+
= Installation
|
6
|
+
|
7
|
+
gem install thumb_fu
|
8
|
+
|
9
|
+
= Usage
|
10
|
+
|
11
|
+
thumb = ThumbFu::Thumb.new('YOUR_API_KEY', 'http://google.com')
|
12
|
+
thumb.save('image.jpg') # returns false, if thumbnail image not ready
|
data/Rakefile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
|
-
Echoe.new('thumb_fu', '0.1.
|
4
|
+
Echoe.new('thumb_fu', '0.1.2') do |p|
|
5
5
|
p.description = "Generate a page thumbnail using www.bitpixels.com"
|
6
6
|
p.url = "http://github.com/23ninja/thumb_fu"
|
7
7
|
p.author = "Iskander HAziev"
|
data/thumb_fu.gemspec
CHANGED