omniauth-stormz 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.
- checksums.yaml +7 -0
- data/Gemfile.lock +23 -21
- data/README.md +2 -2
- data/lib/omniauth-stormz/version.rb +1 -1
- data/omniauth-stormz.gemspec +1 -1
- metadata +15 -14
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: d0b8c16cf580361159afe4ec5c4123f20b7ff0fb
|
|
4
|
+
data.tar.gz: 5ba81cc0c6916fa1521eae3521cf75fa8616bf48
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 33e1d205952cddc3e4de5a796312cc0646d44929092276a5e6fb997949c7be9aea4ac083a1cd0a077b5e0fde393a3a6bddcc826c053d36baabf2363e37f0d1e6
|
|
7
|
+
data.tar.gz: c27347f109548018ca4e4c03246358c2635466a72a7a8ac526a4b0f6ed25e543658e3dfec1ac064ef0fffa2989c2c083d0c578f8a7adb639285769d9da1c478e
|
data/Gemfile.lock
CHANGED
|
@@ -2,35 +2,37 @@ PATH
|
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
4
|
omniauth-stormz (0.0.1)
|
|
5
|
-
omniauth-oauth2 (
|
|
5
|
+
omniauth-oauth2 (<= 1.4)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
faraday (0.
|
|
11
|
-
multipart-post (
|
|
12
|
-
hashie (
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
multi_json (~> 1.0)
|
|
10
|
+
faraday (0.9.2)
|
|
11
|
+
multipart-post (>= 1.2, < 3)
|
|
12
|
+
hashie (3.4.3)
|
|
13
|
+
jwt (1.5.2)
|
|
14
|
+
multi_json (1.11.2)
|
|
15
|
+
multi_xml (0.5.5)
|
|
16
|
+
multipart-post (2.0.0)
|
|
17
|
+
oauth2 (1.0.0)
|
|
18
|
+
faraday (>= 0.8, < 0.10)
|
|
19
|
+
jwt (~> 1.0)
|
|
20
|
+
multi_json (~> 1.3)
|
|
21
|
+
multi_xml (~> 0.5)
|
|
23
22
|
rack (~> 1.2)
|
|
24
|
-
omniauth (1.
|
|
25
|
-
hashie (
|
|
26
|
-
rack
|
|
27
|
-
omniauth-oauth2 (1.
|
|
28
|
-
oauth2 (~>
|
|
29
|
-
omniauth (~> 1.
|
|
30
|
-
rack (1.4
|
|
23
|
+
omniauth (1.2.2)
|
|
24
|
+
hashie (>= 1.2, < 4)
|
|
25
|
+
rack (~> 1.0)
|
|
26
|
+
omniauth-oauth2 (1.4.0)
|
|
27
|
+
oauth2 (~> 1.0)
|
|
28
|
+
omniauth (~> 1.2)
|
|
29
|
+
rack (1.6.4)
|
|
31
30
|
|
|
32
31
|
PLATFORMS
|
|
33
32
|
ruby
|
|
34
33
|
|
|
35
34
|
DEPENDENCIES
|
|
36
35
|
omniauth-stormz!
|
|
36
|
+
|
|
37
|
+
BUNDLED WITH
|
|
38
|
+
1.10.6
|
data/README.md
CHANGED
|
@@ -7,12 +7,12 @@ on the [Stormz Applications Page](https://stormz.me/oauth/applications).
|
|
|
7
7
|
## Basic Usage
|
|
8
8
|
|
|
9
9
|
use OmniAuth::Builder do
|
|
10
|
-
provider :stormz, ENV[STORMZ_KEY'], ENV['STORMZ_SECRET']
|
|
10
|
+
provider :stormz, ENV['STORMZ_KEY'], ENV['STORMZ_SECRET']
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
## License
|
|
14
14
|
|
|
15
|
-
Copyright (c)
|
|
15
|
+
Copyright (c) 2015 François de Metz
|
|
16
16
|
|
|
17
17
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
18
18
|
|
data/omniauth-stormz.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,27 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-stormz
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.0.2
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- François de Metz
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2015-10-28 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: omniauth-oauth2
|
|
16
|
-
requirement:
|
|
17
|
-
none: false
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
16
|
requirements:
|
|
19
|
-
- -
|
|
17
|
+
- - "<="
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: '1.
|
|
19
|
+
version: '1.4'
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
|
-
version_requirements:
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "<="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.4'
|
|
25
27
|
description: Official OmniAuth strategy for Stormz.
|
|
26
28
|
email:
|
|
27
29
|
- francois@stormz.me
|
|
@@ -38,26 +40,25 @@ files:
|
|
|
38
40
|
- omniauth-stormz.gemspec
|
|
39
41
|
homepage: https://github.com/stormz/omniauth-stormz
|
|
40
42
|
licenses: []
|
|
43
|
+
metadata: {}
|
|
41
44
|
post_install_message:
|
|
42
45
|
rdoc_options: []
|
|
43
46
|
require_paths:
|
|
44
47
|
- lib
|
|
45
48
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
46
|
-
none: false
|
|
47
49
|
requirements:
|
|
48
|
-
- -
|
|
50
|
+
- - ">="
|
|
49
51
|
- !ruby/object:Gem::Version
|
|
50
52
|
version: '0'
|
|
51
53
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
|
-
none: false
|
|
53
54
|
requirements:
|
|
54
|
-
- -
|
|
55
|
+
- - ">="
|
|
55
56
|
- !ruby/object:Gem::Version
|
|
56
57
|
version: '0'
|
|
57
58
|
requirements: []
|
|
58
59
|
rubyforge_project:
|
|
59
|
-
rubygems_version:
|
|
60
|
+
rubygems_version: 2.4.5
|
|
60
61
|
signing_key:
|
|
61
|
-
specification_version:
|
|
62
|
+
specification_version: 4
|
|
62
63
|
summary: Official OmniAuth strategy for Stormz.
|
|
63
64
|
test_files: []
|