paper-auth 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f42475d9bf632254522849def8e4ce785f66aa8d
4
- data.tar.gz: e9a7daafd5c3f44c3beda0e11806e951240e47ab
3
+ metadata.gz: cd580795d6826f65f4f61bdc2f086e31d649854c
4
+ data.tar.gz: 96269dcaecbd33a608b69328bf749a73a1497988
5
5
  SHA512:
6
- metadata.gz: 99304f54c3f9cd3893d133b438949ab4585e10a4121ef80c370b3ec433a450c8c001a1cf7d385e003030292296a92cd263f884b096eb482fc9b603b5a5e9f2f5
7
- data.tar.gz: 463c396168c3fbd7095a2a1f36068976b51310e56965cd818ed8bb9b876b179cdc18abc0a1bb2c03a9449a0d9373924a6cd24fbf0c1a056d3f6e84eab89315a3
6
+ metadata.gz: 2bc8188ac209c298b451ec10204ec490202456fb5b541305afc89ebab8e3372d16f5eab9ea28a56ba682cf35cc05fff30e17d9f38cb9b96b9d092f6c227f9c12
7
+ data.tar.gz: ce956e33b59d87d6fea0d6c9b2cecc71734385620b7458d7ba0b3101fb4ec57f894a08ee5a9accf41bb158e36672d9ed6c02fdd35dd400af83ff33c862e3d2a4
data/README.md CHANGED
@@ -24,7 +24,7 @@ Or install it yourself as:
24
24
 
25
25
  Create a new instance of PaperAuth.
26
26
 
27
- ```
27
+ ```ruby
28
28
  paper = PaperAuth.new()
29
29
  ```
30
30
 
@@ -34,7 +34,7 @@ Currently you do not need to provide any parameters.
34
34
 
35
35
  Create a pdf using PaperAuth.
36
36
 
37
- ```
37
+ ```ruby
38
38
  pdf = paper.create(0, "Hello World!")
39
39
  ```
40
40
 
@@ -44,7 +44,7 @@ The first parameter should be something specific to the user (Ex. User ID), and
44
44
 
45
45
  You can easily request for an ID using PaperAuth.
46
46
 
47
- ```
47
+ ```ruby
48
48
  id = paper.get()
49
49
  ```
50
50
 
@@ -54,7 +54,7 @@ Currently you do not need to provide any parameters. This will just generate a r
54
54
 
55
55
  You can easily verify a two factor authentication code.
56
56
 
57
- ```
57
+ ```ruby
58
58
  verify = paper.verify(0, "Hello World!", "1A", "1A2B3")
59
59
  ```
60
60
 
@@ -1,3 +1,3 @@
1
1
  class PaperAuth
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
data/paper-auth.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = PaperAuth::VERSION
9
9
  spec.authors = ["Manthan Mallikarjun"]
10
10
  spec.email = ["manthan@nahtnam.com"]
11
- spec.summary = %q{A paper based two factor authenticaiton.}
12
- spec.description = %q{A paper based two factor authenticaiton.}
11
+ spec.summary = %q{A paper based two factor authentication.}
12
+ spec.description = %q{A paper based two factor authentication.}
13
13
  spec.homepage = ""
14
14
  spec.license = "MIT"
15
15
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paper-auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manthan Mallikarjun
@@ -80,7 +80,7 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: A paper based two factor authenticaiton.
83
+ description: A paper based two factor authentication.
84
84
  email:
85
85
  - manthan@nahtnam.com
86
86
  executables: []
@@ -126,5 +126,5 @@ rubyforge_project:
126
126
  rubygems_version: 2.4.5
127
127
  signing_key:
128
128
  specification_version: 4
129
- summary: A paper based two factor authenticaiton.
129
+ summary: A paper based two factor authentication.
130
130
  test_files: []