omniauth-groupme 0.0.7 → 0.1.0

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.
@@ -1,5 +1,5 @@
1
1
  module Omniauth
2
2
  module GroupMe
3
- VERSION = "0.0.7"
3
+ VERSION = "0.1.0"
4
4
  end
5
5
  end
@@ -2,7 +2,7 @@ require 'omniauth-oauth2'
2
2
 
3
3
  module OmniAuth
4
4
  module Strategies
5
- class GroupMe < OmniAuth::Strategies::OAuth2
5
+ class Groupme < OmniAuth::Strategies::OAuth2
6
6
  option :client_options, {
7
7
  :site => 'https://groupme.com',
8
8
  :authorize_url => '/oauth/authorize',
@@ -1,14 +1,14 @@
1
1
  require 'spec_helper'
2
2
  require 'omniauth-groupme'
3
3
 
4
- describe OmniAuth::Strategies::GroupMe do
4
+ describe OmniAuth::Strategies::Groupme do
5
5
  before :each do
6
6
  @request = double('Request')
7
7
  @request.stub(:params) { {} }
8
8
  end
9
9
 
10
10
  subject do
11
- OmniAuth::Strategies::GroupMe.new(nil, @options || {}).tap do |strategy|
11
+ OmniAuth::Strategies::Groupme.new(nil, @options || {}).tap do |strategy|
12
12
  strategy.stub(:request) { @request }
13
13
  end
14
14
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-groupme
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
+ - 1
8
9
  - 0
9
- - 7
10
- version: 0.0.7
10
+ version: 0.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Pat Nakajima