picasa_plucker 1.0.0
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 +4 -0
- data/Manifest.txt +26 -0
- data/PostInstall.txt +7 -0
- data/README.rdoc +56 -0
- data/Rakefile +22 -0
- data/bin/picasa_plucker +10 -0
- data/features/cli_download_picasa_album.feature +12 -0
- data/features/development.feature +13 -0
- data/features/fixtures/album.html +385 -0
- data/features/step_definitions/common_steps.rb +168 -0
- data/features/step_definitions/executable_steps.rb +29 -0
- data/features/step_definitions/fetch_html_steps.rb +5 -0
- data/features/support/common.rb +29 -0
- data/features/support/env.rb +15 -0
- data/features/support/fakeweb.rb +4 -0
- data/features/support/matchers.rb +11 -0
- data/lib/picasa_plucker.rb +6 -0
- data/lib/picasa_plucker/cli.rb +88 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/spec/picasa_plucker_cli_spec.rb +15 -0
- data/spec/picasa_plucker_spec.rb +11 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +10 -0
- data/tasks/rspec.rake +21 -0
- metadata +180 -0
data/tasks/rspec.rake
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
begin
|
2
|
+
require 'spec'
|
3
|
+
rescue LoadError
|
4
|
+
require 'rubygems' unless ENV['NO_RUBYGEMS']
|
5
|
+
require 'spec'
|
6
|
+
end
|
7
|
+
begin
|
8
|
+
require 'spec/rake/spectask'
|
9
|
+
rescue LoadError
|
10
|
+
puts <<-EOS
|
11
|
+
To use rspec for testing you must install rspec gem:
|
12
|
+
gem install rspec
|
13
|
+
EOS
|
14
|
+
exit(0)
|
15
|
+
end
|
16
|
+
|
17
|
+
desc "Run the specs under spec/models"
|
18
|
+
Spec::Rake::SpecTask.new do |t|
|
19
|
+
t.spec_opts = ['--options', "spec/spec.opts"]
|
20
|
+
t.spec_files = FileList['spec/**/*_spec.rb']
|
21
|
+
end
|
metadata
ADDED
@@ -0,0 +1,180 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: picasa_plucker
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
version: 1.0.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Dr Nic Williams
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-05-26 00:00:00 +02:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: hpricot
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 59
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 8
|
33
|
+
- 2
|
34
|
+
version: 0.8.2
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: ruby-progressbar
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 13
|
46
|
+
segments:
|
47
|
+
- 0
|
48
|
+
- 0
|
49
|
+
- 9
|
50
|
+
version: 0.0.9
|
51
|
+
type: :runtime
|
52
|
+
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: rubyforge
|
55
|
+
prerelease: false
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 9
|
62
|
+
segments:
|
63
|
+
- 2
|
64
|
+
- 0
|
65
|
+
- 3
|
66
|
+
version: 2.0.3
|
67
|
+
type: :development
|
68
|
+
version_requirements: *id003
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: gemcutter
|
71
|
+
prerelease: false
|
72
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 15
|
78
|
+
segments:
|
79
|
+
- 0
|
80
|
+
- 4
|
81
|
+
- 0
|
82
|
+
version: 0.4.0
|
83
|
+
type: :development
|
84
|
+
version_requirements: *id004
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: hoe
|
87
|
+
prerelease: false
|
88
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
hash: 27
|
94
|
+
segments:
|
95
|
+
- 2
|
96
|
+
- 5
|
97
|
+
- 0
|
98
|
+
version: 2.5.0
|
99
|
+
type: :development
|
100
|
+
version_requirements: *id005
|
101
|
+
description: |-
|
102
|
+
PicasaPlucker downloads all images from a Picasa web album.
|
103
|
+
|
104
|
+
Your friends use Picasa (http://picasaweb.google.com) but you don't, so you can't easily download all the images in their albums? PicasaPlucker fixes that.
|
105
|
+
|
106
|
+
PicasaPlucker takes the URL of someone's Picasa album, and downloads all the original images into your local machine. You can then import them to your favourite images application (iPhoto, etc).
|
107
|
+
email:
|
108
|
+
- drnicwilliams@gmail.com
|
109
|
+
executables:
|
110
|
+
- picasa_plucker
|
111
|
+
extensions: []
|
112
|
+
|
113
|
+
extra_rdoc_files:
|
114
|
+
- History.txt
|
115
|
+
- Manifest.txt
|
116
|
+
- PostInstall.txt
|
117
|
+
files:
|
118
|
+
- History.txt
|
119
|
+
- Manifest.txt
|
120
|
+
- PostInstall.txt
|
121
|
+
- README.rdoc
|
122
|
+
- Rakefile
|
123
|
+
- bin/picasa_plucker
|
124
|
+
- features/cli_download_picasa_album.feature
|
125
|
+
- features/development.feature
|
126
|
+
- features/fixtures/album.html
|
127
|
+
- features/step_definitions/common_steps.rb
|
128
|
+
- features/step_definitions/executable_steps.rb
|
129
|
+
- features/step_definitions/fetch_html_steps.rb
|
130
|
+
- features/support/common.rb
|
131
|
+
- features/support/env.rb
|
132
|
+
- features/support/fakeweb.rb
|
133
|
+
- features/support/matchers.rb
|
134
|
+
- lib/picasa_plucker.rb
|
135
|
+
- lib/picasa_plucker/cli.rb
|
136
|
+
- script/console
|
137
|
+
- script/destroy
|
138
|
+
- script/generate
|
139
|
+
- spec/picasa_plucker_cli_spec.rb
|
140
|
+
- spec/picasa_plucker_spec.rb
|
141
|
+
- spec/spec.opts
|
142
|
+
- spec/spec_helper.rb
|
143
|
+
- tasks/rspec.rake
|
144
|
+
has_rdoc: true
|
145
|
+
homepage: http://github.com/drnic/picasa_plucker
|
146
|
+
licenses: []
|
147
|
+
|
148
|
+
post_install_message:
|
149
|
+
rdoc_options:
|
150
|
+
- --main
|
151
|
+
- README.rdoc
|
152
|
+
require_paths:
|
153
|
+
- lib
|
154
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
155
|
+
none: false
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
hash: 3
|
160
|
+
segments:
|
161
|
+
- 0
|
162
|
+
version: "0"
|
163
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
164
|
+
none: false
|
165
|
+
requirements:
|
166
|
+
- - ">="
|
167
|
+
- !ruby/object:Gem::Version
|
168
|
+
hash: 3
|
169
|
+
segments:
|
170
|
+
- 0
|
171
|
+
version: "0"
|
172
|
+
requirements: []
|
173
|
+
|
174
|
+
rubyforge_project: picasa_plucker
|
175
|
+
rubygems_version: 1.3.7
|
176
|
+
signing_key:
|
177
|
+
specification_version: 3
|
178
|
+
summary: PicasaPlucker downloads all images from a Picasa web album
|
179
|
+
test_files: []
|
180
|
+
|