credit-card-sms-parser 0.3.7 → 0.3.9

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: 56ca177800bede171da51a55f83d5b4838d245dc
4
- data.tar.gz: 15e888de2909c7bf9b58dee6e7b7e2856a270a78
3
+ metadata.gz: 5362f6463474bc9a0b18e3cd76cccf5fe915b583
4
+ data.tar.gz: bc04b3ff0abd2857765513e6fb3c35a7e4df18bc
5
5
  SHA512:
6
- metadata.gz: 74162be64dab7e3feeec510de50d9a7fd4248ab8b356f26e3ff0f7f8bf3b8c45958f52f8813cc7f64449da3379e6fbbb99ab6c820be0ec8559aeb5a6b799e30a
7
- data.tar.gz: 374c148a1eadf71d1e4dda9e1f7a99e73fb910d40d42d79e000eb8c231a5474e2d6a901de44c274321ac94b0093a329e99391c8c20b5c52864faae0a7fc77385
6
+ metadata.gz: c9fb24bae3e4797791c6f86c310a65e07c79a24023979d39238cfe916f979385d71f663b69fd426c6da3552acca07d6a61c91b42bd53d420c5e562341274f4e8
7
+ data.tar.gz: fbeb8429763f51dfc43d683d6dece5db8e392a20ff8398954612c80fabb8400c9e7fa96673b9fc2c882f9b9471688f057c14b9dd9626df590c3fdf4a8692c079
@@ -1,5 +1,5 @@
1
1
 
2
2
  ## Submitting Pull Requests
3
3
 
4
- Before changes can be accepted a Contributor Licensing Agreement for [Individual](https://docs.google.com/forms/d/1d2R9aVafHTasTYirq-qZx_lx20Obss0ufUS-OtLpu20/viewform) | [Company](https://docs.google.com/forms/d/1hj5s1bkbmO1OP-UKnSNS6dsDkL1jFDL2XZ5d4IIFdb4/viewform) must be completed. You will be prompted to accept the CLA when you submit your first pull request. If you are Korean, send e-mail to <oss@daumkakao.com> for agree to the privacy. Then we will send you a CLA copy.
4
+ Before changes can be accepted a Contributor Licensing Agreement for [Individual](https://docs.google.com/forms/d/1d2R9aVafHTasTYirq-qZx_lx20Obss0ufUS-OtLpu20/viewform) | [Company](https://docs.google.com/forms/d/1hj5s1bkbmO1OP-UKnSNS6dsDkL1jFDL2XZ5d4IIFdb4/viewform) must be completed. You will be prompted to accept the CLA when you submit your first pull request. If you are Korean, send e-mail to <oss@kakaocorp.com> for agree to the privacy. Then we will send you a CLA copy.
5
5
 
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015, Daum Kakao Corp.
1
+ Copyright (c) 2015, Kakao Corp.
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without modification,
@@ -24,4 +24,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24
24
  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25
25
  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
26
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'credit-card-sms-parser'
7
- spec.version = '0.3.7'
7
+ spec.version = '0.3.9'
8
8
  spec.authors = %w(Hanson Benjamin)
9
9
  spec.email = %w(jehokim@live.com)
10
10
  if spec.respond_to?(:metadata)
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
23
23
  spec.require_paths = ['lib']
24
24
 
25
- spec.add_dependency 'rltk', '>= 3.0.0'
25
+ spec.add_runtime_dependency 'rltk', '~> 3.0', '>= 3.0.0'
26
26
  spec.add_development_dependency 'bundler', '~> 1.10'
27
27
  spec.add_development_dependency 'rake', '~> 10.0'
28
28
  end
@@ -42,6 +42,7 @@ class KoreanCreditCardLexer < RLTK::Lexer
42
42
  rule(/[\p{P}]+/) {|t| [:punctuation, t]}
43
43
  rule(/[\d\*]+/) { :number }
44
44
  rule(/\s/) {|t| [:space, t]}
45
+ rule(/./) {|t| [:any, t]}
45
46
  end
46
47
 
47
48
  require 'awesome_print'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: credit-card-sms-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 0.3.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hanson
@@ -9,12 +9,15 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2015-09-01 00:00:00.000000000 Z
12
+ date: 2015-12-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rltk
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '3.0'
18
21
  - - ">="
19
22
  - !ruby/object:Gem::Version
20
23
  version: 3.0.0
@@ -22,6 +25,9 @@ dependencies:
22
25
  prerelease: false
23
26
  version_requirements: !ruby/object:Gem::Requirement
24
27
  requirements:
28
+ - - "~>"
29
+ - !ruby/object:Gem::Version
30
+ version: '3.0'
25
31
  - - ">="
26
32
  - !ruby/object:Gem::Version
27
33
  version: 3.0.0
@@ -101,3 +107,4 @@ signing_key:
101
107
  specification_version: 4
102
108
  summary: Parsing credit card SMS messages
103
109
  test_files: []
110
+ has_rdoc: