warden_oauth_provider 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,6 @@
1
1
  module WardenOauthProvider
2
2
  class Nonce < ActiveRecord::Base
3
- set_table_name "oauth_nonces"
4
- # self.table_name = "oauth_nonces"
3
+ self.table_name = "oauth_nonces"
5
4
 
6
5
  validates_presence_of :nonce, :timestamp
7
6
  validates_uniqueness_of :nonce, :scope => :timestamp
@@ -1,8 +1,7 @@
1
1
  module WardenOauthProvider
2
2
  module Token
3
3
  class Base < ActiveRecord::Base
4
- set_table_name "oauth_tokens"
5
- # self.table_name = "oauth_tokens"
4
+ self.table_name = "oauth_tokens"
6
5
 
7
6
  belongs_to :client_application
8
7
  belongs_to :user
@@ -1,3 +1,3 @@
1
1
  module WardenOauthProvider
2
- VERSION = "1.0.4"
2
+ VERSION = "1.0.5"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: warden_oauth_provider
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 4
10
- version: 1.0.4
9
+ - 5
10
+ version: 1.0.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Edwin Vlieg
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2012-02-29 00:00:00 Z
19
+ date: 2012-03-15 00:00:00 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: warden