flickr 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ac455cf4ac4d354d2eb5c169b563c92150c167364bb43b11ce74f631f3a9ff6
4
- data.tar.gz: 42b38c39f413a14db0422fee1a921eccbb771112abbbda6b5e1178988651f10e
3
+ metadata.gz: 99a84720ee6e0bdd7c794e4a2ea48948ab7afd2c6319e3df9d87f7abac40d507
4
+ data.tar.gz: 5b2499fa37c7b1008679f2132558a06f2c47a40f036b82363ef050d5ad57df0e
5
5
  SHA512:
6
- metadata.gz: bef5a2e5c09c225a12623dd99018df767ca8b6a77f9fb46b88841293fcbef729be2a381530e117144ad2d613edd4829f7eae9bc204a8409922b72f622e28ea13
7
- data.tar.gz: 982840a709e68ef01876bbe75f0132681cf80b54fd8510ff9fbd3461b70961f6bc31c53196dfce610817f27d0aed6ff1d837fe5ce6f49e5ecddbe62ced79d110
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
 
@@ -1,3 +1,3 @@
1
1
  class Flickr
2
- VERSION = '2.0.0'
2
+ VERSION = '2.0.1'
3
3
  end
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.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-13 00:00:00.000000000 Z
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://hanklords.github.io/flickraw/
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 library with a syntax close to the syntax described on https://www.flickr.com/services/api
112
+ summary: Flickr (formerly FlickRaw) is full-featured client for the Flickr API
107
113
  test_files: []