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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af46a5cee4d572a081479aaed739755ac3d1db0f3142bd3afc22600021b871c2
4
- data.tar.gz: 66c17d4b7a75dcf37b4350f8d910751be71b5600b4287b232f5427fd3de24e54
3
+ metadata.gz: 5703938a1cffb5aa53f890b46f8238c89449a0e3a71b9d8a6b6817c87737a6e2
4
+ data.tar.gz: cefad8388c5006852e53d9197d8d6620efae98db6d74c56434e908e6ad857630
5
5
  SHA512:
6
- metadata.gz: 033d0821b99ff6785c65880d6fb69d4be60f6e49901abe57ed9f231c4685b6a9b1f0d3369b2b18f514f29349e1cac8ac584169fd8d5d90265386fb67446e3661
7
- data.tar.gz: 47325d81cf507053df0924e04a05115df30f05144bb5235d622f2613b6f0aee835c4c6ab54a5b68c8f65f40d1dac077adf39f74bfca7327d23515c2af077b1de
6
+ metadata.gz: bf839b078e45fbd6e6e84a10904e2bf3e36d57e36cf81ac6fb0e57467ac902b756b0f9f1b1fd2e04bac694e953187cca0acd8c39ba5c0c54ca59dc3bd2cf5acc
7
+ data.tar.gz: a6b119a7d324d644410700ebc32736c753b5e4a8b5c97d90106c94467aff7e33374ff556f072c1785f84ac1b8ba57bccbb60a59972fe6437cd0c438d1a2418b1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- luhn_algorithm (0.1.0)
4
+ luhn_algorithm (0.1.1)
5
5
  activemodel (>= 3, <= 6)
6
6
 
7
7
  GEM
@@ -1,3 +1,3 @@
1
1
  module LuhnAlgorithm
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -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 a number using Luhn Algorithm}
13
- spec.description = %q{Validate a number using Luhn Algorithm}
14
- # spec.homepage = "TODO: Put your gem's website or public repo URL here."
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
- # spec.metadata["homepage_uri"] = spec.homepage
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.0
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 a number using Luhn Algorithm
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 a number using Luhn Algorithm
120
+ summary: Validate numbers using Luhn Algorithm
120
121
  test_files: []