flickr_airlift 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE.txt +22 -0
- data/README.textile +1 -1
- data/flickr_airlift.gemspec +2 -0
- data/lib/flickr_airlift/version.rb +1 -1
- metadata +5 -3
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Eastmedia
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.textile
CHANGED
@@ -12,7 +12,7 @@ h3. Requirements
|
|
12
12
|
|
13
13
|
h1. Flickr Airlift
|
14
14
|
|
15
|
-
Flickr Airlift is a command line tool to scrape *any set* _or_ *all photos in the photostream
|
15
|
+
Flickr Airlift is a command line tool to scrape *any set* _or_ *all photos in the photostream* of a user.
|
16
16
|
It comes with the bin flickr_airlift.
|
17
17
|
|
18
18
|
h2. Usage
|
data/flickr_airlift.gemspec
CHANGED
@@ -8,6 +8,7 @@ Gem::Specification.new do |gem|
|
|
8
8
|
gem.version = FlickrAirlift::VERSION
|
9
9
|
gem.authors = ["nodanaonlyzuul"]
|
10
10
|
gem.email = ["beholdthepanda@gmail.com"]
|
11
|
+
gem.license = 'MIT'
|
11
12
|
gem.description = "A Command-Line tool for scraping any user's original photos OR uploading all photos from a given directory"
|
12
13
|
gem.summary = "A Command-Line tool for scraping any user's original photos OR uploading all photos from a given directory"
|
13
14
|
gem.homepage = "https://github.com/nodanaonlyzuul/flickr_airlift"
|
@@ -22,4 +23,5 @@ Gem::Specification.new do |gem|
|
|
22
23
|
gem.add_dependency('highline', '1.6.11')
|
23
24
|
|
24
25
|
gem.rubyforge_project = 'nowarning'
|
26
|
+
|
25
27
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flickr_airlift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-07-
|
12
|
+
date: 2013-07-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: launchy
|
@@ -71,6 +71,7 @@ extra_rdoc_files: []
|
|
71
71
|
files:
|
72
72
|
- .gitignore
|
73
73
|
- Gemfile
|
74
|
+
- LICENSE.txt
|
74
75
|
- README.textile
|
75
76
|
- Rakefile
|
76
77
|
- bin/flickr_airlift
|
@@ -80,7 +81,8 @@ files:
|
|
80
81
|
- lib/flickr_airlift/downloader.rb
|
81
82
|
- lib/flickr_airlift/version.rb
|
82
83
|
homepage: https://github.com/nodanaonlyzuul/flickr_airlift
|
83
|
-
licenses:
|
84
|
+
licenses:
|
85
|
+
- MIT
|
84
86
|
post_install_message:
|
85
87
|
rdoc_options: []
|
86
88
|
require_paths:
|