twilio_phone_verification 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -2
- data/lib/twilio_phone_verification/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27778dbabf63da384471afc9e946dde4dab8cc10
|
4
|
+
data.tar.gz: 4b5378d754384bc9e6f8f9d90dfa23746053fc39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e58cf09a5d61eec16e235de2c78b5eacde5e4befcb6e69ac582774005de73dc49dcc17f27f7679a4dc4437cf4e2129a92a4ea993e99b46b0e2f8da7aa4b6bbf
|
7
|
+
data.tar.gz: 1763ba7e62692279a9ffd89f35bdaac4e6a0413b8048772ac755f181647e53a29152e0103b035dea1e8dbc5b4ae4f2aed798f432f1671d74a4873ac4109bd6a6
|
data/README.md
CHANGED
@@ -46,9 +46,10 @@ After this you will need to add concern to your `model`
|
|
46
46
|
|
47
47
|
```ruby
|
48
48
|
class User < ActiveRecord::Base
|
49
|
-
include TwilioPhoneVerification::Phonable
|
49
|
+
include TwilioPhoneVerification::Phonable # add this line to your model
|
50
50
|
|
51
|
-
#
|
51
|
+
# You can customize defaults
|
52
|
+
# You can just ignore these if you want
|
52
53
|
def phone_confirmation_delay
|
53
54
|
1.minute # delay between each sms message
|
54
55
|
end
|