thumb_fu 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- 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