flickr 2.0.0 → 2.0.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/README.rdoc +8 -1
- data/lib/flickr/version.rb +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99a84720ee6e0bdd7c794e4a2ea48948ab7afd2c6319e3df9d87f7abac40d507
|
|
4
|
+
data.tar.gz: 5b2499fa37c7b1008679f2132558a06f2c47a40f036b82363ef050d5ad57df0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64cdc4ad80d21472105030ef54ab2f57681d6521324f23092036c36ba3856911787b799295ef0857449fed4bd33fd6900333806f741034e1464ad0137509e84b
|
|
7
|
+
data.tar.gz: 9f55e63e17f5ca0bee74a37707203e58a35c4776f48ae9f0048b876eb2123346c7b1b0d4a68755962de767bb83ea0426257f8eddc8aa922f680e936afcc3350c
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file.
|
|
3
|
+
|
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## 2.0.1 - 2019-03-17
|
|
9
|
+
### Added
|
|
10
|
+
- Better documentation
|
|
11
|
+
|
|
12
|
+
## 2.0.0 - 2019-03-13
|
|
13
|
+
### Changes
|
|
14
|
+
- Initial migration of FlickRaw to Flickr
|
data/README.rdoc
CHANGED
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
= Flickr
|
|
2
2
|
|
|
3
|
-
Flickr is a library to access the Flickr[https://flickr.com] API in a simple way.
|
|
3
|
+
Flickr (formerly FlickRaw) is a library to access the Flickr[https://flickr.com] API in a simple way.
|
|
4
4
|
It maps exactly the methods described in {the official API documentation}[https://www.flickr.com/services/api/].
|
|
5
5
|
It also tries to present the data returned in a simple and intuitive way.
|
|
6
6
|
The methods are fetched from Flickr when loading the library by using introspection capabilities. So it is always up-to-date with regards to new methods added by Flickr.
|
|
7
7
|
|
|
8
8
|
The github repository: https://github.com/hanklords/flickraw
|
|
9
9
|
|
|
10
|
+
= Upgrading from FlickRaw?
|
|
11
|
+
|
|
12
|
+
If you're upgrading from FlickRaw 0.9.x there are a few breaking changes to be aware of:
|
|
13
|
+
* Instantiate a new object with `client = Flickr.new` instead of `FlickRaw::Flickr.new`.
|
|
14
|
+
* The global `flickr` variable is no longer created.
|
|
15
|
+
* Local caching of the Flickr API specification is no longer achieved with a separate gem.
|
|
16
|
+
|
|
10
17
|
= Installation
|
|
11
18
|
Type this in a console (you might need to be superuser)
|
|
12
19
|
|
data/lib/flickr/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flickr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mael Clerambault
|
|
8
|
+
- Aidan Samuel
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2019-03-
|
|
12
|
+
date: 2019-03-17 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: rake
|
|
@@ -58,6 +59,7 @@ executables: []
|
|
|
58
59
|
extensions: []
|
|
59
60
|
extra_rdoc_files: []
|
|
60
61
|
files:
|
|
62
|
+
- CHANGELOG.md
|
|
61
63
|
- LICENSE
|
|
62
64
|
- README.rdoc
|
|
63
65
|
- examples/auth.rb
|
|
@@ -81,10 +83,14 @@ files:
|
|
|
81
83
|
- test/test_request.rb
|
|
82
84
|
- test/test_response.rb
|
|
83
85
|
- test/test_upload.rb
|
|
84
|
-
homepage: https://
|
|
86
|
+
homepage: https://github.com/hanklords/flickraw
|
|
85
87
|
licenses:
|
|
86
88
|
- MIT
|
|
87
|
-
metadata:
|
|
89
|
+
metadata:
|
|
90
|
+
bug_tracker_uri: https://github.com/hanklords/flickraw/issues
|
|
91
|
+
changelog_uri: https://github.com/hanklords/flickraw/blob/master/CHANGELOG.md
|
|
92
|
+
documentation_uri: https://github.com/hanklords/flickraw/blob/V2.0.1/README.rdoc
|
|
93
|
+
source_code_uri: https://github.com/hanklords/flickraw
|
|
88
94
|
post_install_message:
|
|
89
95
|
rdoc_options: []
|
|
90
96
|
require_paths:
|
|
@@ -103,5 +109,5 @@ requirements: []
|
|
|
103
109
|
rubygems_version: 3.0.3
|
|
104
110
|
signing_key:
|
|
105
111
|
specification_version: 4
|
|
106
|
-
summary: Flickr
|
|
112
|
+
summary: Flickr (formerly FlickRaw) is full-featured client for the Flickr API
|
|
107
113
|
test_files: []
|