omniauth-simple-in-out 0.0.3 → 0.0.4

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: 2a98acbc319444a0b1b14c364f15cda8177891d1
4
- data.tar.gz: f810f256c347d72dff5ea6ee2ab1094f0eec13b4
3
+ metadata.gz: 3c22cbd5b786b5d62fe2bc0335e3b847ae86e030
4
+ data.tar.gz: baab7c9b7ace5690f8d563241dd2226ad94e98d3
5
5
  SHA512:
6
- metadata.gz: 26992d3bb4a8785ecb861d91e2a8eb33ce89cf5493fbd31c78bbaf97892a627d671e7f42b65b888602356828227f8d78acfe42cd5c8fbd0dab7cd486182c88d5
7
- data.tar.gz: 75576ef34447ed70841a6f14cf39529e8c2dbd3cdbd78e8a90bbc6738bf75231468934e4c7f08f58d66d638833f17ffbc765c6b638d57b8be7c98f40f97a3fab
6
+ metadata.gz: ec16e1dbab1459ee7c0bf2915871e3729ad4b5f29a86e27d497e5c3fd5a4933e943263236ab90c501b3a5e37b1c06bb05c63a445d25711230e1c311aa00ff997
7
+ data.tar.gz: a11465269d8eaae0c87453b3d43c08560b02a6293de14edec8a1000dd4d3d84ac9520b8a88925dfc0f9b531d79501c040182115f79a4410a20bf52fdd25d9182
@@ -0,0 +1,5 @@
1
+ module OmniAuth
2
+ module SimpleInOut
3
+ VERSION = "0.0.4"
4
+ end
5
+ end
@@ -1,6 +1,6 @@
1
1
  require "omniauth/strategies/oauth2"
2
2
 
3
- module Omniauth
3
+ module OmniAuth
4
4
  module Strategies
5
5
  class SimpleInOut < OmniAuth::Strategies::OAuth2
6
6
  # set the name of the site
@@ -1,11 +1,11 @@
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/simple_in_out/version"
4
+ require "omniauth-simple-in-out/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "omniauth-simple-in-out"
8
- spec.version = Omniauth::SimpleInOut::VERSION
8
+ spec.version = OmniAuth::SimpleInOut::VERSION
9
9
  spec.authors = ["Matthew Sullivan"]
10
10
  spec.email = ["msull92@gmail.com"]
11
11
  spec.summary = %q{Omniauth strategy for Simple In/Out}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-simple-in-out
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Sullivan
@@ -79,8 +79,8 @@ files:
79
79
  - README.md
80
80
  - Rakefile
81
81
  - lib/omniauth-simple-in-out.rb
82
+ - lib/omniauth-simple-in-out/version.rb
82
83
  - lib/omniauth/simple_in_out.rb
83
- - lib/omniauth/simple_in_out/version.rb
84
84
  - lib/omniauth/strategies/simple_in_out.rb
85
85
  - omniauth-simple-in-out.gemspec
86
86
  homepage: ''
@@ -1,5 +0,0 @@
1
- module Omniauth
2
- module SimpleInOut
3
- VERSION = "0.0.3"
4
- end
5
- end