openid_dm_store 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. data/lib/nonce.rb +4 -4
  2. metadata +1 -1
data/lib/nonce.rb CHANGED
@@ -4,9 +4,9 @@ module OpenIDDataMapper
4
4
  include DataMapper::Resource
5
5
 
6
6
  property :id, Serial
7
- property :salt, String, :nullable => false
8
- property :server_url, String, :nullable => false
9
- property :timestamp, Integer, :nullable => false
7
+ property :salt, String, :required => true
8
+ property :server_url, String, :required => true
9
+ property :timestamp, Integer, :required => true
10
10
 
11
11
  def self.default_storage_name
12
12
  "OpenIdNonce"
@@ -14,4 +14,4 @@ module OpenIDDataMapper
14
14
 
15
15
  end
16
16
 
17
- end
17
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openid_dm_store
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jed Hurt