robohash 0.0.1 → 0.0.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/README.md +0 -20
- data/README.rdoc +20 -0
- data/lib/robohash/version.rb +1 -1
- data/robohash.gemspec +1 -1
- data/spec/robohash_spec.rb +1 -1
- metadata +7 -6
data/README.md
CHANGED
@@ -1,20 +0,0 @@
|
|
1
|
-
#Description
|
2
|
-
This gem downloads the user defined number of robohash images from the robohash.org
|
3
|
-
|
4
|
-
#Installation
|
5
|
-
`gem install robohash`
|
6
|
-
|
7
|
-
OR in your gemfile
|
8
|
-
|
9
|
-
`gem robohash`
|
10
|
-
|
11
|
-
#Use
|
12
|
-
1. Download Images
|
13
|
-
`Robohash.get_images`
|
14
|
-
|
15
|
-
2.Change default number of images to be downloaded
|
16
|
-
` Robohash.default_num=150`
|
17
|
-
|
18
|
-
3.Change default directory to download images
|
19
|
-
` Robohash.default_directory="images/robots"`
|
20
|
-
|
data/README.rdoc
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#Description
|
2
|
+
This gem downloads the user defined number of robohash images from the robohash.org
|
3
|
+
|
4
|
+
#Installation
|
5
|
+
`gem install robohash`
|
6
|
+
|
7
|
+
OR in your gemfile
|
8
|
+
|
9
|
+
`gem robohash`
|
10
|
+
|
11
|
+
#Use
|
12
|
+
1. Download Images
|
13
|
+
`Robohash.get_images`
|
14
|
+
|
15
|
+
2.Change default number of images to be downloaded
|
16
|
+
` Robohash.default_num=150`
|
17
|
+
|
18
|
+
3.Change default directory to download images
|
19
|
+
` Robohash.default_directory="images/robots"`
|
20
|
+
|
data/lib/robohash/version.rb
CHANGED
data/robohash.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = Robohash::VERSION
|
8
8
|
s.authors = ["xecutioner"]
|
9
9
|
s.email = ["xecutioner.kapil@gmail.com"]
|
10
|
-
s.homepage = ""
|
10
|
+
s.homepage = "http://github.com/xecutioner/robohash"
|
11
11
|
s.summary = %q{Robohash downloader}
|
12
12
|
s.description = %q{Downloads random robot images from robohash.org}
|
13
13
|
s.add_development_dependency "rspec"
|
data/spec/robohash_spec.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: robohash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2011-09-17 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
16
|
-
requirement: &
|
16
|
+
requirement: &70100620 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70100620
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: httparty
|
27
|
-
requirement: &
|
27
|
+
requirement: &70100120 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70100120
|
36
36
|
description: Downloads random robot images from robohash.org
|
37
37
|
email:
|
38
38
|
- xecutioner.kapil@gmail.com
|
@@ -43,13 +43,14 @@ files:
|
|
43
43
|
- .gitignore
|
44
44
|
- Gemfile
|
45
45
|
- README.md
|
46
|
+
- README.rdoc
|
46
47
|
- Rakefile
|
47
48
|
- lib/robohash.rb
|
48
49
|
- lib/robohash/version.rb
|
49
50
|
- robohash.gemspec
|
50
51
|
- spec/robohash_spec.rb
|
51
52
|
- spec/spec_helper.rb
|
52
|
-
homepage:
|
53
|
+
homepage: http://github.com/xecutioner/robohash
|
53
54
|
licenses: []
|
54
55
|
post_install_message:
|
55
56
|
rdoc_options: []
|