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.
Files changed (5) hide show
  1. data/CHANGELOG +1 -0
  2. data/README +12 -0
  3. data/Rakefile +1 -1
  4. data/thumb_fu.gemspec +1 -1
  5. metadata +1 -1
data/CHANGELOG CHANGED
@@ -1,2 +1,3 @@
1
+ v0.1.2. added README
1
2
  v0.1.1. fix thumb
2
3
  v0.1.0. first release
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.1') do |p|
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{thumb_fu}
5
- s.version = "0.1.1"
5
+ s.version = "0.1.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = [%q{Iskander HAziev}]
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: thumb_fu
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.1
5
+ version: 0.1.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Iskander HAziev