omniauth-ticketbud 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,5 @@
1
+ require 'omniauth-oauth2'
2
+
1
3
  module OmniAuth
2
4
  module Strategies
3
5
  class Ticketbud < OmniAuth::Strategies::OAuth2
@@ -1,5 +1,5 @@
1
1
  module OmniAuth
2
2
  module Ticketbud
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
@@ -1,2 +1,2 @@
1
- require 'omniauth/ticketbud/version'
1
+ require 'omniauth/version'
2
2
  require 'omniauth/strategies/ticketbud'
@@ -1,6 +1,6 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  $:.push File.expand_path('../lib', __FILE__)
3
- require 'ticketbud/version'
3
+ require 'omniauth/version'
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'omniauth-ticketbud'
data/spec/spec_helper.rb CHANGED
@@ -6,7 +6,8 @@ require 'rack/test'
6
6
  require 'webmock/rspec'
7
7
  require 'omniauth'
8
8
  require 'omniauth-oauth2'
9
- require 'strategies/ticketbud'
9
+ require 'omniauth/version'
10
+ require 'omniauth/strategies/ticketbud'
10
11
 
11
12
  RSpec.configure do |config|
12
13
  config.include WebMock::API
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-ticketbud
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -118,9 +118,9 @@ files:
118
118
  - .rvmrc
119
119
  - Gemfile
120
120
  - README.md
121
- - lib/strategies/ticketbud.rb
122
- - lib/ticketbud.rb
123
- - lib/ticketbud/version.rb
121
+ - lib/omniauth-ticketbud.rb
122
+ - lib/omniauth/strategies/ticketbud.rb
123
+ - lib/omniauth/version.rb
124
124
  - omniauth-ticketbud.gemspec
125
125
  - spec/omniauth/strategies/ticketbud_spec.rb
126
126
  - spec/spec_helper.rb