image_suckr 0.0.2 → 0.0.3
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/README.md +2 -0
- data/image_suckr.gemspec +2 -2
- data/lib/image_suckr/version.rb +1 -1
- metadata +4 -3
data/README.md
CHANGED
@@ -19,6 +19,8 @@ To get a fully random image url:
|
|
19
19
|
To get a random image url based on a query:
|
20
20
|
|
21
21
|
suckr.getImageUrl({"q" => "car"})
|
22
|
+
|
23
|
+
_All [Google Image Search API arguments](http://code.google.com/apis/imagesearch/v1/jsondevguide.html#json_args) are supported and you can use them to filter your results._
|
22
24
|
|
23
25
|
To get the image content instead of the url:
|
24
26
|
|
data/image_suckr.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.authors = ["Mauricio Miranda"]
|
10
10
|
s.email = ["mmiranda@xoomcode.com"]
|
11
11
|
s.homepage = "https://github.com/maurimiranda/ImageSuckr"
|
12
|
-
s.summary = %q{
|
13
|
-
s.description = %q{
|
12
|
+
s.summary = %q{Gets images randomly from the web}
|
13
|
+
s.description = %q{ImageSuckr is a ruby gem that allows you to get random images from Google for seeding purposes.}
|
14
14
|
|
15
15
|
s.rubyforge_project = "image_suckr"
|
16
16
|
|
data/lib/image_suckr/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: image_suckr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -12,7 +12,8 @@ cert_chain: []
|
|
12
12
|
date: 2011-05-06 00:00:00.000000000 -03:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
|
-
description:
|
15
|
+
description: ImageSuckr is a ruby gem that allows you to get random images from Google
|
16
|
+
for seeding purposes.
|
16
17
|
email:
|
17
18
|
- mmiranda@xoomcode.com
|
18
19
|
executables: []
|
@@ -51,5 +52,5 @@ rubyforge_project: image_suckr
|
|
51
52
|
rubygems_version: 1.5.2
|
52
53
|
signing_key:
|
53
54
|
specification_version: 3
|
54
|
-
summary:
|
55
|
+
summary: Gets images randomly from the web
|
55
56
|
test_files: []
|