flickr-login 0.0.1 → 0.0.2
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/flickr-login.gemspec +3 -3
- metadata +5 -3
data/flickr-login.gemspec
CHANGED
|
@@ -3,15 +3,15 @@ Gem::Specification.new do |gem|
|
|
|
3
3
|
gem.name = "flickr-login"
|
|
4
4
|
gem.authors = ["Janko Marohnić"]
|
|
5
5
|
gem.email = ["janko.marohnic@gmail.com"]
|
|
6
|
-
gem.description = %q{This is a Rack endpoint that provides Flickr authentication}
|
|
7
|
-
gem.summary =
|
|
6
|
+
gem.description = %q{This is a Rack endpoint that provides Flickr authentication. Basically it is a lightweight alternative to the "omniauth-flickr" gem.}
|
|
7
|
+
gem.summary = gem.description
|
|
8
8
|
gem.homepage = "https://github.com/janko-m/flickr-login"
|
|
9
9
|
|
|
10
10
|
gem.files = `git ls-files`.split($\)
|
|
11
11
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
12
12
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
13
13
|
gem.require_paths = ["lib"]
|
|
14
|
-
gem.version = "0.0.
|
|
14
|
+
gem.version = "0.0.2"
|
|
15
15
|
|
|
16
16
|
gem.add_dependency "oauth"
|
|
17
17
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flickr-login
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -27,7 +27,8 @@ dependencies:
|
|
|
27
27
|
- - ! '>='
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '0'
|
|
30
|
-
description: This is a Rack endpoint that provides Flickr authentication
|
|
30
|
+
description: This is a Rack endpoint that provides Flickr authentication. Basically
|
|
31
|
+
it is a lightweight alternative to the "omniauth-flickr" gem.
|
|
31
32
|
email:
|
|
32
33
|
- janko.marohnic@gmail.com
|
|
33
34
|
executables: []
|
|
@@ -64,5 +65,6 @@ rubyforge_project:
|
|
|
64
65
|
rubygems_version: 1.8.23
|
|
65
66
|
signing_key:
|
|
66
67
|
specification_version: 3
|
|
67
|
-
summary:
|
|
68
|
+
summary: This is a Rack endpoint that provides Flickr authentication. Basically it
|
|
69
|
+
is a lightweight alternative to the "omniauth-flickr" gem.
|
|
68
70
|
test_files: []
|