luhn_algorithm 0.1.0 → 0.1.1
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/luhn_algorithm/version.rb +1 -1
- data/luhn_algorithm.gemspec +4 -4
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5703938a1cffb5aa53f890b46f8238c89449a0e3a71b9d8a6b6817c87737a6e2
|
|
4
|
+
data.tar.gz: cefad8388c5006852e53d9197d8d6620efae98db6d74c56434e908e6ad857630
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf839b078e45fbd6e6e84a10904e2bf3e36d57e36cf81ac6fb0e57467ac902b756b0f9f1b1fd2e04bac694e953187cca0acd8c39ba5c0c54ca59dc3bd2cf5acc
|
|
7
|
+
data.tar.gz: a6b119a7d324d644410700ebc32736c753b5e4a8b5c97d90106c94467aff7e33374ff556f072c1785f84ac1b8ba57bccbb60a59972fe6437cd0c438d1a2418b1
|
data/Gemfile.lock
CHANGED
data/luhn_algorithm.gemspec
CHANGED
|
@@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Kimmie"]
|
|
10
10
|
spec.email = ["kimthu.bui@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{Validate
|
|
13
|
-
spec.description = %q{Validate
|
|
14
|
-
|
|
12
|
+
spec.summary = %q{Validate numbers using Luhn Algorithm}
|
|
13
|
+
spec.description = %q{Validate numbers using Luhn Algorithm}
|
|
14
|
+
spec.homepage = "https://github.com/thukim/luhn_algorithm"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
if spec.respond_to?(:metadata)
|
|
20
20
|
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
23
23
|
# spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
|
|
24
24
|
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
|
25
25
|
else
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: luhn_algorithm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kimmie
|
|
@@ -72,7 +72,7 @@ dependencies:
|
|
|
72
72
|
- - "~>"
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '3.0'
|
|
75
|
-
description: Validate
|
|
75
|
+
description: Validate numbers using Luhn Algorithm
|
|
76
76
|
email:
|
|
77
77
|
- kimthu.bui@gmail.com
|
|
78
78
|
executables: []
|
|
@@ -94,10 +94,11 @@ files:
|
|
|
94
94
|
- lib/luhn_algorithm/validator.rb
|
|
95
95
|
- lib/luhn_algorithm/version.rb
|
|
96
96
|
- luhn_algorithm.gemspec
|
|
97
|
-
homepage:
|
|
97
|
+
homepage: https://github.com/thukim/luhn_algorithm
|
|
98
98
|
licenses:
|
|
99
99
|
- MIT
|
|
100
|
-
metadata:
|
|
100
|
+
metadata:
|
|
101
|
+
homepage_uri: https://github.com/thukim/luhn_algorithm
|
|
101
102
|
post_install_message:
|
|
102
103
|
rdoc_options: []
|
|
103
104
|
require_paths:
|
|
@@ -116,5 +117,5 @@ requirements: []
|
|
|
116
117
|
rubygems_version: 3.0.3
|
|
117
118
|
signing_key:
|
|
118
119
|
specification_version: 4
|
|
119
|
-
summary: Validate
|
|
120
|
+
summary: Validate numbers using Luhn Algorithm
|
|
120
121
|
test_files: []
|