myflickr 0.0.5 → 0.0.6
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/History.txt +8 -0
- data/config/hoe.rb +3 -3
- data/lib/myflickr/version.rb +1 -1
- metadata +8 -8
data/History.txt
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
== 0.0.6 2007-12-31
|
|
2
|
+
|
|
3
|
+
* Updated gem specs for better understanding of what the gem does
|
|
4
|
+
|
|
5
|
+
== 0.0.5 2007-12-19
|
|
6
|
+
|
|
7
|
+
* Changed the API of the set class, should be solidified now
|
|
8
|
+
|
|
1
9
|
== 0.0.4 2007-12-19
|
|
2
10
|
|
|
3
11
|
* Changed the tags method on the set class to return a textual list
|
data/config/hoe.rb
CHANGED
|
@@ -2,10 +2,10 @@ require 'myflickr/version'
|
|
|
2
2
|
|
|
3
3
|
AUTHOR = 'Ben Schwarz' # can also be an array of Authors
|
|
4
4
|
EMAIL = "ben@germanforblack.com"
|
|
5
|
-
DESCRIPTION = "A
|
|
5
|
+
DESCRIPTION = "A flickr wrapper that removes all community aspects, only your data is returned"
|
|
6
6
|
GEM_NAME = 'myflickr' # what ppl will type to install your gem
|
|
7
7
|
RUBYFORGE_PROJECT = 'schwarz' # The unix name for your project
|
|
8
|
-
HOMEPATH = "http
|
|
8
|
+
HOMEPATH = "http://germanforblack.com/"
|
|
9
9
|
DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}"
|
|
10
10
|
|
|
11
11
|
@config_file = "~/.rubyforge/user-config.yml"
|
|
@@ -59,7 +59,7 @@ hoe = Hoe.new(GEM_NAME, VERS) do |p|
|
|
|
59
59
|
|
|
60
60
|
# == Optional
|
|
61
61
|
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
|
|
62
|
-
p.extra_deps =
|
|
62
|
+
p.extra_deps = [['hpricot', '>= 0.6']] # An array of rubygem dependencies [name, version], e.g. [ ['active_support', '>= 1.3.1'] ]
|
|
63
63
|
|
|
64
64
|
#p.spec_extras = {} # A hash of extra values to set in the gemspec.
|
|
65
65
|
|
data/lib/myflickr/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: myflickr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
5
|
-
platform:
|
|
4
|
+
version: 0.0.6
|
|
5
|
+
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ben Schwarz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2007-12-
|
|
12
|
+
date: 2007-12-31 00:00:00 +11:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -19,9 +19,9 @@ dependencies:
|
|
|
19
19
|
requirements:
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: "0"
|
|
22
|
+
version: "0.6"
|
|
23
23
|
version:
|
|
24
|
-
description: A
|
|
24
|
+
description: A flickr wrapper that removes all community aspects, only your data is returned
|
|
25
25
|
email: ben@germanforblack.com
|
|
26
26
|
executables: []
|
|
27
27
|
|
|
@@ -58,7 +58,7 @@ files:
|
|
|
58
58
|
- spec/spec_helper.rb
|
|
59
59
|
- spec/tag_spec.rb
|
|
60
60
|
has_rdoc: true
|
|
61
|
-
homepage: http://
|
|
61
|
+
homepage: http://germanforblack.com/
|
|
62
62
|
post_install_message:
|
|
63
63
|
rdoc_options:
|
|
64
64
|
- --main
|
|
@@ -80,9 +80,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
80
80
|
requirements: []
|
|
81
81
|
|
|
82
82
|
rubyforge_project: schwarz
|
|
83
|
-
rubygems_version: 0.
|
|
83
|
+
rubygems_version: 1.0.1
|
|
84
84
|
signing_key:
|
|
85
85
|
specification_version: 2
|
|
86
|
-
summary: A
|
|
86
|
+
summary: A flickr wrapper that removes all community aspects, only your data is returned
|
|
87
87
|
test_files: []
|
|
88
88
|
|