omniauth-linkus 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 04d89a86f91730e85b9232ccf66a6077297af1a1
4
- data.tar.gz: 0ca82d7a67b716b84a63832a542567c857a407da
3
+ metadata.gz: 64cc0c54709167f7192ac2346de8dec8cc89cfb9
4
+ data.tar.gz: 12f3165a556f1672336beaf1ee728b1b67970f2f
5
5
  SHA512:
6
- metadata.gz: eaf49c154019911da225354c6ae6341505f6a4e90559c9b4298b7805cca0a53750213dfa6e269361a628832f48091025742a475d4cdb1f7ca6be79b01a41afe8
7
- data.tar.gz: f53a2cb35443278ef4c597a705f77537975ce9b49fb22f835777be5c49fbc6e9fd0b200536e9ee4b8044fb86d80ada377c219693c0fdfbf939fab7a090e52ac3
6
+ metadata.gz: d8d9c5bf23bdbf9e8b582e4fe1620b4858d11916ab26ac484ac269b4854d5ad17b3ddc36f522a8f4ff0779ba85fce1a88d96db4fb64a3d0a0ab49547e00c719e
7
+ data.tar.gz: 3eafeb6d21feb3170dcef1e7c696bd1c6670f65c1bb156569ebac898cba371b9a998eb5c6d6bfdcef598047de0d5e2f9319f98f8846f0b6819e69c6b4657e0da
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 SLP-KBIT
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,8 @@
1
+ require 'omniauth-oauth2'
2
+
3
+ module OmniAuth
4
+ module Strategies
5
+ class Linkus < OmniAuth::Strategies::OAuth2
6
+ end
7
+ end
8
+ end
@@ -1,5 +1,5 @@
1
1
  module Omniauth
2
2
  module Linkus
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
@@ -0,0 +1 @@
1
+ require 'omniauth-linkus/version'
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'omniauth/linkus/version'
4
+ require 'omniauth-linkus/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'omniauth-linkus'
@@ -19,5 +19,6 @@ Gem::Specification.new do |spec|
19
19
 
20
20
  spec.add_development_dependency 'bundler', '~> 1.10'
21
21
  spec.add_development_dependency 'rake', '~> 10.0'
22
- spec.add_development_dependency 'rspec'
22
+
23
+ spec.add_development_dependency 'omniauth-oauth2'
23
24
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-linkus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shoya TANAKA
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-07-17 00:00:00.000000000 Z
11
+ date: 2015-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -39,7 +39,7 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: rspec
42
+ name: omniauth-oauth2
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ">="
@@ -60,15 +60,16 @@ extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
62
  - ".gitignore"
63
- - ".rspec"
64
63
  - ".rubocop.yml"
65
64
  - Gemfile
65
+ - LICENSE.txt
66
66
  - README.md
67
67
  - Rakefile
68
68
  - bin/console
69
69
  - bin/setup
70
- - lib/omniauth/linkus.rb
71
- - lib/omniauth/linkus/version.rb
70
+ - lib/omniauth-linkus.rb
71
+ - lib/omniauth-linkus/version.rb
72
+ - lib/omniauth/strategies/linkus.rb
72
73
  - omniauth-linkus.gemspec
73
74
  homepage: https://github.com/SLP-KBIT/omniauth-linkus.git
74
75
  licenses: []
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --format documentation
2
- --color
@@ -1,7 +0,0 @@
1
- require "omniauth/linkus/version"
2
-
3
- module Omniauth
4
- module Linkus
5
- # Your code goes here...
6
- end
7
- end