flickr_authentication 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/README.md +10 -12
- data/flickr_authentication.gemspec +1 -1
- data/lib/flickr_authentication/version.rb +1 -1
- metadata +17 -18
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
NGU3NzE5N2I5NGNhNzhjMDEwYjhlMDQyMTRiMTFhMjcyZTRlODJhYQ==
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: fd18be737dd9a0e2b8f3ea7da7f32213fcda046ec31c882edfd48c2a064b194b
|
4
|
+
data.tar.gz: 84512ba59a6daa307560bebf7fedb622d8e5a469f1d8fa6a3bfb28772bcf3095
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
MDNkODdkZWViZGE0YTA3YTcwNDNkY2MzYTNkZmMwOTU0MWI0OTljMzc0M2M2
|
11
|
-
YWEyNzQ4MGViYTE1Mzk5NWNmYTFmODYzMjM0MDJkZGIxMjQ4MTU=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
ZGI5OWM5MmM1MzA5ZDhjYTBmNDNjMDBhNzk3YWRjNDhhNTBiYWM3OTI2NTVk
|
14
|
-
ZTQ0MGUyZWJkYWViMjk5MTU1OTlkZWIwOTIwYTI3YTFlMGE3ZTNkYmNjOGYy
|
15
|
-
ZmVkZDAwZjZhMDdmNjFmM2Y1MzY3ZTg1ZWRjNzljZDAxODY4NzQ=
|
6
|
+
metadata.gz: 41935ae8ad18bbef5041fa05b75d4ba2fc39fa9c9ed9cc4404076d4b6e864661d6e8e86f7f795aef8f384c7d7d05c8c258f5d1655d7d5ea9594e7f34b641e9fc
|
7
|
+
data.tar.gz: 06bd194f4af1e312f8c28dc71682cfa9a5b723310fce06e3db7ce1b1b90805e9b481d81bd06dabf36afc2edb7cb0e7ea2e41b76288bb9d95cb0677e750bebe9c
|
data/README.md
CHANGED
@@ -5,23 +5,21 @@ It uses the wonderful [flickraw](http://hanklords.github.io/flickraw/) library.
|
|
5
5
|
|
6
6
|
## Resources
|
7
7
|
|
8
|
-
|
9
|
-
|
8
|
+
- [Applying for a Flickr API](http://www.flickr.com/services/apps/create/apply)
|
9
|
+
- [Flickr API documentation](http://www.flickr.com/services/api/)
|
10
10
|
|
11
11
|
## Usage
|
12
12
|
|
13
|
-
|
14
|
-
|
15
|
-
flickr
|
16
|
-
#flickr is defined by flickraw
|
17
|
-
```
|
13
|
+
flickr_authentication = FlickrAuthentication.new(key: "YOURKEYHERE", shared_secret: "APPSSHAREDSECRET", auth_file: "path/to/file/where/credentials/are/stored")
|
14
|
+
flickr = flickr_authentication.authenticate
|
15
|
+
#flickr is defined by flickraw
|
18
16
|
|
19
17
|
For more example usage see the code for [flickr_airlift](https://github.com/nodanaonlyzuul/flickr_airlift) and [flickr_cli](https://github.com/nodanaonlyzuul/flickr_cli).
|
20
18
|
|
21
19
|
## Contributing
|
22
20
|
|
23
|
-
1.
|
24
|
-
2.
|
25
|
-
3.
|
26
|
-
4.
|
27
|
-
5.
|
21
|
+
1. Fork it
|
22
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
23
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
24
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
25
|
+
5. Create new Pull Request
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
|
-
spec.add_dependency('launchy', '
|
21
|
+
spec.add_dependency('launchy', '2.5.0')
|
22
22
|
spec.add_dependency('flickraw', '0.9.8')
|
23
23
|
|
24
24
|
spec.add_development_dependency "bundler", "~> 1.3"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flickr_authentication
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen Schor
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: launchy
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 2.5.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 2.5.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: flickraw
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -42,42 +42,42 @@ dependencies:
|
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - ~>
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '1.3'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - ~>
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '1.3'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rake
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: pry
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- -
|
73
|
+
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: '0'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- -
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
description: A library that simplifies the authentication and storing of credentials
|
@@ -88,7 +88,7 @@ executables: []
|
|
88
88
|
extensions: []
|
89
89
|
extra_rdoc_files: []
|
90
90
|
files:
|
91
|
-
- .gitignore
|
91
|
+
- ".gitignore"
|
92
92
|
- Gemfile
|
93
93
|
- LICENSE.txt
|
94
94
|
- README.md
|
@@ -100,24 +100,23 @@ homepage: https://github.com/nodanaonlyzuul/flickr_authentication
|
|
100
100
|
licenses:
|
101
101
|
- MIT
|
102
102
|
metadata: {}
|
103
|
-
post_install_message:
|
103
|
+
post_install_message:
|
104
104
|
rdoc_options: []
|
105
105
|
require_paths:
|
106
106
|
- lib
|
107
107
|
required_ruby_version: !ruby/object:Gem::Requirement
|
108
108
|
requirements:
|
109
|
-
- -
|
109
|
+
- - ">="
|
110
110
|
- !ruby/object:Gem::Version
|
111
111
|
version: '0'
|
112
112
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
113
|
requirements:
|
114
|
-
- -
|
114
|
+
- - ">="
|
115
115
|
- !ruby/object:Gem::Version
|
116
116
|
version: '0'
|
117
117
|
requirements: []
|
118
|
-
|
119
|
-
|
120
|
-
signing_key:
|
118
|
+
rubygems_version: 3.2.3
|
119
|
+
signing_key:
|
121
120
|
specification_version: 4
|
122
121
|
summary: A library that simplifies the authentication and storing of credentials for
|
123
122
|
applicartions that use the Flickr API
|