coupon_code 0.0.1 → 0.0.3

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
- SHA1:
3
- metadata.gz: 135fb183f47db7cf01f192063d01aa2b215da141
4
- data.tar.gz: 336135ed4bb5531220cb533fc2081c24f1815268
2
+ SHA256:
3
+ metadata.gz: 76d25c8d75ec9f94df915aed8a41ff6141cea7e20d2342c09412763916d81869
4
+ data.tar.gz: f1ffd10712e8e966276d4b54b466aea30ffc377c76e8044d8d437a7f1efff275
5
5
  SHA512:
6
- metadata.gz: 4654f9a3b3b68f39509b038e5c877ca30e03c3c37fe2f38c56585c46254b725c0259ff62e2457010b4a82ad2e1d62fefe9a1358a688d29ab67d11b493fa0d036
7
- data.tar.gz: bb8f29e3932e5e2c2f97cab42e4af463bda8fd4382e2d5bf996d905185cc60eb6b445dcac3fa3cf79b0995cdcfc6f757109c19c1088f733103e967cc3c8d9aee
6
+ metadata.gz: 62f908f274676f03fb33adf0c8f3243171619df9a636bd00016cd2ab8641468436fdb638ca690cac63059d9ec2880fddde832efe2a6c3afa885c5e83af012128
7
+ data.tar.gz: 8abdcecb97a48f026eafda0b794149594a29425458da24e1308827506aaa63cb2e30ae36254b8e190f8cb665eddae71842bdd8193b84075d9a3ab079ddb5a107
@@ -0,0 +1,8 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ time: "19:00"
8
+ open-pull-requests-limit: 10
@@ -0,0 +1,36 @@
1
+ name: Ruby
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - '*'
7
+ pull_request:
8
+ branches:
9
+ - '*'
10
+
11
+ jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+
15
+ strategy:
16
+ matrix:
17
+ ruby-version: [ '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4' ]
18
+
19
+ steps:
20
+ - name: Checkout code
21
+ uses: actions/checkout@v2
22
+
23
+ - name: Set up Ruby
24
+ uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: ${{ matrix.ruby-version }}
27
+ bundler-cache: true
28
+
29
+ - name: Install dependencies
30
+ run: bundle install
31
+
32
+ - name: Run standardrb
33
+ run: bundle exec standardrb
34
+
35
+ - name: Run tests
36
+ run: bundle exec rspec
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.3.4
data/.standard.yml ADDED
@@ -0,0 +1,2 @@
1
+ format: progress # default: Standard::Formatter
2
+ ruby_version: 2.6 # default: RUBY_VERSION
data/CHANGELOG.md ADDED
@@ -0,0 +1,10 @@
1
+ ## CHANGELOG
2
+
3
+ ### 0.0.1
4
+ - Implement CouponCode.generate(parts: n)/validate().
5
+
6
+ ### 0.0.2
7
+ - Bug fix `.validate` can't handle invalid characters and produces an error. (mrclmrvn)
8
+
9
+ ### 0.0.2
10
+ - add ability to specify length #15 (fourcolors)
data/Gemfile CHANGED
@@ -1,6 +1,4 @@
1
- source 'https://rubygems.org'
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in coupon_code.gemspec
4
4
  gemspec
5
-
6
- gem 'codeclimate-test-reporter', group: :test, require: nil
data/README-ko.md CHANGED
@@ -1,10 +1,19 @@
1
1
  # CouponCode
2
2
 
3
- 루비 젬(Ruby Gem)은 쿠폰 코드를 만들고 검증하는 기능을 제공합니다.
3
+ [CouponCode 루비 젬][rubygems](Ruby Gem)은 전자상거래 서비스 등에서 사용하기 적합한 쿠폰 코드를 만들고 검증하는 기능을 제공합니다.
4
4
 
5
- 이 젬(Gem)은 [Grant][grant]가 작성한 [Algorithm::CouponCode][couponcode]를 루비(Ruby) 언어로 옮겨 구현한 것입니다.
6
- 하지만 현 시점에는 원작이 가진 기능 중 기본적인 코드 생성/검증 기능만 구현되어 있다는 점을 주지해 주십시오. 평문을 입력해 코드를 생성하는 기능이나
7
- 자동교정, jQuery 플러그인 등은 포함되어있지 않습니다.
5
+ 이 젬(Gem)은 [Grant][grant]가 펄(Perl) 언어로 작성한 [Algorithm::CouponCode][couponcode]를 루비(Ruby) 언어로 옮겨 구현한 것입니다.
6
+
7
+ 젬의 기본 설정으로 생성되는 코드는 XXXX-XXXX-XXXX 형식이며 각 3부분은 4자의 숫자와 알파벳으로 구성됩니다. 원저자가 밝힌 쿠폰코드의 특징은 다음과 같습니다.
8
+
9
+ - 만들어진 코드는 대/소문자를 구분하지 않습니다.
10
+ - 숫자와 알파벳 중 헷갈릴 수 있는 글자를 사용하지 않기 때문에 사용자가 알파벳 O를 입력하면 이것을 숫자 0으로 자동 교정할 수 있습니다. (비슷하게 I는 1, S는 5, Z는 2)
11
+ - 각 부분의 4번째 글자는 검증코드(check-digit)이기 때문에 사용자가 실수로 코드를 잘못 입력했는지 여부를 클라이언트단에서 미리 검증할 수 있습니다.
12
+ - 검증코드 알고리즘은 각 부분의 순서와 연관됩니다. 따라서 '1K7Q'라는 코드는 코드의 첫 번째 부분으로는 유효하지만 코드의 두 번째에 위치하면 유효하지 않게 됩니다.
13
+ - 코트 생성 알고리즘은 원치않는 코드를 제외시킬 수 있습니다. For example any code in which transposed characters happen to result in a valid checkdigit will be skipped. 생성된 부분이 적절하지 않은 4글자 단어(예를 들어 'P00P')에 해당하면 역시 최종 코드에서 제외됩니다.
14
+
15
+ 하지만 현 시점에는 펄 버전이 가진 세심하고 다양한 기능이 모두 구현되어 있지 않다는 점을 기억해 주십시오.
16
+ 평문을 입력해 코드를 생성하는 기능이나 자동교정, 금칙어 설정, 그리고 클라이언트 상에서의 코드 검증을 위한 jQuery 플러그인은 포함되어있지 않습니다.
8
17
 
9
18
  이 루비 젬은 [https://stripes.co.kr](https://stripes.co.kr)를 위해 개발됐습니다.
10
19
 
@@ -32,10 +41,19 @@
32
41
  >> CouponCode.validate('1K7Q-CTFM-LMTO') # Invalid code
33
42
  => nil
34
43
 
44
+ ## 옵션
45
+
46
+ 쿠폰 코드를 만들 때 아래와 같이 옵션값을 넣어, 기본 설정인 3부분이 아닌 쿠폰 코드를 얻을 수 있습니다.
47
+
48
+ >> CouponCode.generate(parts: 4)
49
+ => "1K7Q-CTFM-LMTC-DLGP"
50
+ >> CouponCode.validate("1K7Q-CTFM-LMTC-DLGP", 4)
51
+ => "1K7Q-CTFM-LMTC-DLGP"
52
+
35
53
  ## 테스팅
36
54
 
37
55
  ```ruby
38
- $ bundle exec rake test
56
+ $ bundle exec rake spec
39
57
  ```
40
58
  ## Thanks to
41
59
 
@@ -58,4 +76,5 @@ MIT. 자세한 내용은 [LICENSE][license]를 읽어주십시오.
58
76
  [couponcode]: https://github.com/grantm/Algorithm-CouponCode
59
77
  [chilts]: https://github.com/chilts
60
78
  [node-couponcode]: https://github.com/chilts/node-coupon-code
61
- [license]: https://raw.github.com/appsattic/node-coupon-code/master/LICENSE
79
+ [license]: https://github.com/baxang/coupon-code/blob/master/LICENSE.txt
80
+ [rubygems]: https://rubygems.org/gems/coupon_code
data/README.md CHANGED
@@ -1,14 +1,17 @@
1
1
  [![Build Status](https://travis-ci.org/baxang/coupon-code.svg)](https://travis-ci.org/baxang/coupon-code)
2
2
  [![Code Climate](https://codeclimate.com/github/baxang/coupon-code/badges/gpa.svg)](https://codeclimate.com/github/baxang/coupon-code)
3
+ [![Test Coverage](https://codeclimate.com/github/baxang/coupon-code/badges/coverage.svg)](https://codeclimate.com/github/baxang/coupon-code/coverage)
4
+ [![Gem Version](https://badge.fury.io/rb/coupon_code.svg)](http://badge.fury.io/rb/coupon_code)
3
5
 
4
6
  # CouponCode
5
7
 
6
- CouponCode gem generates and validates coupon codes.
8
+ [README-한국어][README-kr]
7
9
 
8
- It is a Ruby implementation of [Grant][grant]'s [Algorithm::CouponCode][couponcode],
9
- but please note that only basic generation/validation functionality implemented at the moment and
10
- some of the features the CPAN module provides such as feeding a plaintext, auto-correct, and jQuery plugin are
11
- not yet implemented.
10
+ [CouponCode gem][rubygems] generates and validates coupon codes that are suitable for e-commerce services and businesses.
11
+
12
+ It is a Ruby implementation of [Grant][grant]'s [Algorithm::CouponCode][couponcode]. Please read [the original documentation of Algorithm::CouponCode](http://search.cpan.org/dist/Algorithm-CouponCode/lib/Algorithm/CouponCode.pm) for more details.
13
+
14
+ Please be aware that some of the original CPAN module's features are not implemented yet. For example, generating codes by plaintext, auto correction, and jQuery plugin are missing in this gem.
12
15
 
13
16
  This gem is developed for https://stripes.co.kr
14
17
 
@@ -36,10 +39,26 @@ Or install it yourself as:
36
39
  >> CouponCode.validate('1K7Q-CTFM-LMTO') # Invalid code
37
40
  => nil
38
41
 
42
+ ## Options
43
+
44
+ You can change the number of parts of the generated code by passing an option hash value like:
45
+
46
+ >> CouponCode.generate(parts: 4)
47
+ => "1K7Q-CTFM-LMTC-DLGP"
48
+ >> CouponCode.validate("1K7Q-CTFM-LMTC-DLGP", 4)
49
+ => "1K7Q-CTFM-LMTC-DLGP"
50
+
51
+ You can also change the length of each part like:
52
+
53
+ >> CouponCode.generate(parts: 3, part_length: 5)
54
+ => "GRG65-X0PF4-KP7TJ"
55
+ >> CouponCode.validate("1K7Q-CTFM-LMTC-DLGP", 3, 5)
56
+ => "1K7Q-CTFM-LMTC-DLGP"
57
+
39
58
  ## Testing
40
59
 
41
60
  ```ruby
42
- $ bundle exec rake test
61
+ $ bundle exec rake spec
43
62
  ```
44
63
 
45
64
  ## Thanks to
@@ -63,4 +82,6 @@ MIT. See [LICENSE][license] for more details.
63
82
  [couponcode]: https://github.com/grantm/Algorithm-CouponCode
64
83
  [chilts]: https://github.com/chilts
65
84
  [node-couponcode]: https://github.com/chilts/node-coupon-code
66
- [license]: https://raw.github.com/appsattic/node-coupon-code/master/LICENSE
85
+ [license]: https://github.com/baxang/coupon-code/blob/master/LICENSE.txt
86
+ [README-kr]: https://github.com/baxang/coupon-code/blob/master/README-ko.md
87
+ [rubygems]: https://rubygems.org/gems/coupon_code
data/Rakefile CHANGED
@@ -1,13 +1,10 @@
1
1
  require "bundler/gem_tasks"
2
- require 'rake/testtask'
2
+ require "rspec/core/rake_task"
3
3
 
4
- Rake::TestTask.new do |t|
5
- t.libs << 'test'
6
- t.pattern = "test/*_test.rb"
7
- end
4
+ RSpec::Core::RakeTask.new(:spec)
8
5
 
9
- task :default => :test
6
+ task default: :spec
10
7
 
11
8
  task :console do
12
9
  exec "irb -r coupon_code -I ./lib"
13
- end
10
+ end
data/bin/coupon-code CHANGED
@@ -3,4 +3,4 @@
3
3
  require 'coupon_code'
4
4
 
5
5
  code = CouponCode.generate
6
- puts code
6
+ puts code
data/coupon_code.gemspec CHANGED
@@ -1,24 +1,26 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
1
+ lib = File.expand_path("../lib", __FILE__)
3
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'coupon_code/version'
3
+ require "coupon_code/version"
5
4
 
6
5
  Gem::Specification.new do |spec|
7
- spec.name = 'coupon_code'
8
- spec.version = CouponCode::VERSION
9
- spec.authors = ['Sanghyun Park']
10
- spec.email = ['sh@baxang.com']
11
- spec.summary = %q{Generate and validate coupon codes.}
12
- spec.description = %q{A Ruby implementation of Perl's Algorithm::CouponCode CPAN module.}
13
- spec.homepage = 'https://github.com/baxang/coupon-code'
14
- spec.license = 'MIT'
6
+ spec.name = "coupon_code"
7
+ spec.version = CouponCode::VERSION
8
+ spec.authors = ["Sanghyun Park"]
9
+ spec.email = ["sh@baxang.com"]
10
+ spec.summary = "Generate and validate coupon codes."
11
+ spec.description = "A Ruby implementation of Perl's" \
12
+ " Algorithm::CouponCode CPAN module."
13
+ spec.homepage = "https://github.com/baxang/coupon-code"
14
+ spec.license = "MIT"
15
15
 
16
- spec.files = `git ls-files -z`.split("\x0")
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ['lib']
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.require_paths = ["lib"]
20
19
 
21
- spec.add_development_dependency 'bundler', '~> 1.7'
22
- spec.add_development_dependency 'rake', '~> 10.0'
23
- spec.add_development_dependency 'minitest', '~> 5.5'
20
+ spec.required_ruby_version = ">= 2.6.0"
21
+
22
+ spec.add_development_dependency "bundler"
23
+ spec.add_development_dependency "rake"
24
+ spec.add_development_dependency "rspec", "~> 3.4"
25
+ spec.add_development_dependency "standardrb"
24
26
  end
@@ -1,3 +1,3 @@
1
1
  module CouponCode
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.3".freeze
3
3
  end
data/lib/coupon_code.rb CHANGED
@@ -1,50 +1,48 @@
1
1
  require "coupon_code/version"
2
- require 'securerandom'
3
- require 'digest/sha1'
2
+ require "securerandom"
3
+ require "digest/sha1"
4
4
 
5
5
  module CouponCode
6
- SYMBOL = '0123456789ABCDEFGHJKLMNPQRTUVWXY'
7
- PARTS = 3
6
+ SYMBOL = "0123456789ABCDEFGHJKLMNPQRTUVWXY"
7
+ PARTS = 3
8
8
  LENGTH = 4
9
9
 
10
- def self.generate(options = { parts: PARTS })
10
+ def self.generate(options = {parts: PARTS, part_length: LENGTH})
11
11
  num_parts = options.delete(:parts)
12
+ length_of_parts = options.delete(:part_length) || LENGTH
12
13
 
13
14
  parts = []
14
15
  (1..num_parts).each do |i|
15
- part = ''
16
- (1...LENGTH).each do |j|
17
- part << randome_symbol
18
- end
16
+ part = ""
17
+ (1...length_of_parts).each { part << random_symbol }
19
18
  part << checkdigit_alg_1(part, i)
20
19
  parts << part
21
20
  end
22
- parts.join('-')
21
+ parts.join("-")
23
22
  end
24
23
 
25
- def self.validate(orig, num_parts = PARTS)
24
+ def self.validate(orig, num_parts = PARTS, part_length = LENGTH)
26
25
  code = orig.upcase
27
- code.gsub!(/[^0-9A-Z]+/, '')
28
- parts = code.scan(/[0-9A-Z]{#{LENGTH}}/)
26
+ code.gsub!(/[^#{SYMBOL}]+/o, "")
27
+ parts = code.scan(/[#{SYMBOL}]{#{part_length}}/)
29
28
  return if parts.length != num_parts
30
29
  parts.each_with_index do |part, i|
31
- data = part[0...(LENGTH - 1)]
30
+ data = part[0...(part_length - 1)]
32
31
  check = part[-1]
33
- return if check != checkdigit_alg_1(data, i + 1)
32
+ break if check != checkdigit_alg_1(data, i + 1)
34
33
  end
35
- parts.join('-')
34
+ parts.join("-")
36
35
  end
37
36
 
38
37
  def self.checkdigit_alg_1(orig, check)
39
-
40
- orig.split('').each_with_index do |c, i|
38
+ orig.chars.each_with_index do |c, _|
41
39
  k = SYMBOL.index(c)
42
40
  check = check * 19 + k
43
41
  end
44
- SYMBOL[ check % 31 ]
42
+ SYMBOL[check % 31]
45
43
  end
46
44
 
47
- def self.randome_symbol
48
- SYMBOL[ rand(SYMBOL.length) ]
45
+ def self.random_symbol
46
+ SYMBOL[rand(SYMBOL.length)]
49
47
  end
50
48
  end
@@ -0,0 +1,63 @@
1
+ require "spec_helper"
2
+
3
+ RSpec.describe CouponCode do
4
+ describe ".generate" do
5
+ subject { described_class.generate }
6
+ it { is_expected.not_to be_nil }
7
+ it { is_expected.to match(/^[0-9A-Z-]+$/) }
8
+ it { is_expected.to match(/^\w{4}-\w{4}-\w{4}$/) }
9
+ it "generates a different code" do
10
+ code2 = described_class.generate
11
+ is_expected.not_to eq(code2)
12
+ end
13
+
14
+ context "2 parts" do
15
+ subject { described_class.generate(parts: 2) }
16
+ it { is_expected.to match(/^\w{4}-\w{4}$/) }
17
+ end
18
+
19
+ context "when passed part_length" do
20
+ subject { described_class.generate(part_length: 4, parts: 1) }
21
+ it "allows part length to be set" do
22
+ expect(subject.length).to equal(4)
23
+ end
24
+ end
25
+ end
26
+
27
+ describe ".validate" do
28
+ it "validates a good code" do
29
+ expect(described_class.validate("1K7Q-CTFM-LMTC")).to eq("1K7Q-CTFM-LMTC")
30
+ end
31
+
32
+ it "validates with a custom length" do
33
+ expect(described_class.validate("GRG65-X0PF4-KP7TJ", 3, 5)).to eq("GRG65-X0PF4-KP7TJ")
34
+ end
35
+
36
+ it "validates and returns the code in uppercase letters" do
37
+ expect(described_class.validate("1K7Q-ctfm-LMTC")).to eq("1K7Q-CTFM-LMTC")
38
+ end
39
+
40
+ it "returns nil for an invalid code" do
41
+ expect(described_class.validate("1K7Q-CTFM")).to be_nil
42
+ end
43
+
44
+ it "handles invalid characters" do
45
+ expect(described_class.validate("OK7Q-CTFM-LMTC")).to be_nil
46
+ end
47
+
48
+ context "valid cases: lowercase, different separator and parts" do
49
+ [
50
+ ["1k7q-ctfm-lmtc"],
51
+ ["1K7Q/CTFM/LMTC"],
52
+ ["1K7Q CTFM LMTC"],
53
+ ["1k7qctfmlmtc"],
54
+ ["1K7Q-CTFM", 2],
55
+ ["7YQH-1FU7-E1HX-0BG9", 4],
56
+ ["YENH-UPJK-PTE0-20U6-QYME", 5],
57
+ ["YENH-UPJK-PTE0-20U6-QYME-RBK1", 6]
58
+ ].each do |args|
59
+ it { expect(described_class.validate(*args)).not_to be_nil }
60
+ end
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,95 @@
1
+ require "coupon_code"
2
+ # This file was generated by the `rspec --init` command. Conventionally, all
3
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
4
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
5
+ # this file to always be loaded, without a need to explicitly require it in any
6
+ # files.
7
+ #
8
+ # Given that it is always loaded, you are encouraged to keep this file as
9
+ # light-weight as possible. Requiring heavyweight dependencies from this file
10
+ # will add to the boot time of your test suite on EVERY test run, even for an
11
+ # individual file that may not need all of that loaded. Instead, consider making
12
+ # a separate helper file that requires the additional dependencies and performs
13
+ # the additional setup, and require it from the spec files that actually need
14
+ # it.
15
+ #
16
+ # The `.rspec` file also contains a few flags that are not defaults but that
17
+ # users commonly want.
18
+ #
19
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
20
+ RSpec.configure do |config|
21
+ # rspec-expectations config goes here. You can use an alternate
22
+ # assertion/expectation library such as wrong or the stdlib/minitest
23
+ # assertions if you prefer.
24
+ config.expect_with :rspec do |expectations|
25
+ # This option will default to `true` in RSpec 4. It makes the `description`
26
+ # and `failure_message` of custom matchers include text for helper methods
27
+ # defined using `chain`, e.g.:
28
+ # be_bigger_than(2).and_smaller_than(4).description
29
+ # # => "be bigger than 2 and smaller than 4"
30
+ # ...rather than:
31
+ # # => "be bigger than 2"
32
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
33
+ end
34
+
35
+ # rspec-mocks config goes here. You can use an alternate test double
36
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
37
+ config.mock_with :rspec do |mocks|
38
+ # Prevents you from mocking or stubbing a method that does not exist on
39
+ # a real object. This is generally recommended, and will default to
40
+ # `true` in RSpec 4.
41
+ mocks.verify_partial_doubles = true
42
+ end
43
+
44
+ # The settings below are suggested to provide a good initial experience
45
+ # with RSpec, but feel free to customize to your heart's content.
46
+ # # These two settings work together to allow you to limit a spec run
47
+ # # to individual examples or groups you care about by tagging them with
48
+ # # `:focus` metadata. When nothing is tagged with `:focus`, all examples
49
+ # # get run.
50
+ # config.filter_run :focus
51
+ # config.run_all_when_everything_filtered = true
52
+ #
53
+ # # Allows RSpec to persist some state between runs in order to support
54
+ # # the `--only-failures` and `--next-failure` CLI options. We recommend
55
+ # # you configure your source control system to ignore this file.
56
+ # config.example_status_persistence_file_path = "spec/examples.txt"
57
+ #
58
+ # # Limits the available syntax to the non-monkey patched syntax that is
59
+ # # recommended. For more details, see:
60
+ # # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
61
+ # # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62
+ # # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
63
+ # config.disable_monkey_patching!
64
+ #
65
+ # # This setting enables warnings. It's recommended, but in some cases may
66
+ # # be too noisy due to issues in dependencies.
67
+ # config.warnings = true
68
+ #
69
+ # # Many RSpec users commonly either run the entire suite or an individual
70
+ # # file, and it's useful to allow more verbose output when running an
71
+ # # individual spec file.
72
+ # if config.files_to_run.one?
73
+ # # Use the documentation formatter for detailed output,
74
+ # # unless a formatter has already been configured
75
+ # # (e.g. via a command-line flag).
76
+ # config.default_formatter = 'doc'
77
+ # end
78
+ #
79
+ # # Print the 10 slowest examples and example groups at the
80
+ # # end of the spec run, to help surface which specs are running
81
+ # # particularly slow.
82
+ # config.profile_examples = 10
83
+ #
84
+ # # Run specs in random order to surface order dependencies. If you find an
85
+ # # order dependency and want to debug it, you can fix the order by providing
86
+ # # the seed, which is printed after each run.
87
+ # # --seed 1234
88
+ # config.order = :random
89
+ #
90
+ # # Seed global randomization in this process using the `--seed` CLI option.
91
+ # # Setting this allows you to use `--seed` to deterministically reproduce
92
+ # # test failures related to randomization by passing the same `--seed` value
93
+ # # as the one that triggered the failure.
94
+ # Kernel.srand config.seed
95
+ end
metadata CHANGED
@@ -1,57 +1,71 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coupon_code
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sanghyun Park
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-18 00:00:00.000000000 Z
11
+ date: 2024-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '1.7'
19
+ version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '1.7'
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '10.0'
33
+ version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '10.0'
40
+ version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: minitest
42
+ name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '5.5'
47
+ version: '3.4'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '5.5'
54
+ version: '3.4'
55
+ - !ruby/object:Gem::Dependency
56
+ name: standardrb
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  description: A Ruby implementation of Perl's Algorithm::CouponCode CPAN module.
56
70
  email:
57
71
  - sh@baxang.com
@@ -60,8 +74,12 @@ executables:
60
74
  extensions: []
61
75
  extra_rdoc_files: []
62
76
  files:
77
+ - ".github/dependabot.yml"
78
+ - ".github/workflows/ruby.yml"
63
79
  - ".gitignore"
64
- - ".travis.yml"
80
+ - ".ruby-version"
81
+ - ".standard.yml"
82
+ - CHANGELOG.md
65
83
  - Gemfile
66
84
  - LICENSE.txt
67
85
  - README-ko.md
@@ -71,13 +89,13 @@ files:
71
89
  - coupon_code.gemspec
72
90
  - lib/coupon_code.rb
73
91
  - lib/coupon_code/version.rb
74
- - test/coupon_code_test.rb
75
- - test/test_helper.rb
92
+ - spec/coupon_code_spec.rb
93
+ - spec/spec_helper.rb
76
94
  homepage: https://github.com/baxang/coupon-code
77
95
  licenses:
78
96
  - MIT
79
97
  metadata: {}
80
- post_install_message:
98
+ post_install_message:
81
99
  rdoc_options: []
82
100
  require_paths:
83
101
  - lib
@@ -85,18 +103,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
85
103
  requirements:
86
104
  - - ">="
87
105
  - !ruby/object:Gem::Version
88
- version: '0'
106
+ version: 2.6.0
89
107
  required_rubygems_version: !ruby/object:Gem::Requirement
90
108
  requirements:
91
109
  - - ">="
92
110
  - !ruby/object:Gem::Version
93
111
  version: '0'
94
112
  requirements: []
95
- rubyforge_project:
96
- rubygems_version: 2.2.2
97
- signing_key:
113
+ rubygems_version: 3.5.11
114
+ signing_key:
98
115
  specification_version: 4
99
116
  summary: Generate and validate coupon codes.
100
- test_files:
101
- - test/coupon_code_test.rb
102
- - test/test_helper.rb
117
+ test_files: []
data/.travis.yml DELETED
@@ -1,10 +0,0 @@
1
- language: ruby
2
- cache: bundler
3
- rvm:
4
- - 1.9.3
5
- - 2.0.0
6
- - 2.1.1
7
- script: 'bundle exec rake'
8
- addons:
9
- code_climate:
10
- repo_token: 8a7079440da500bd46bff928386a4a512cf5a3c314b4882a2ce7e6fe160b4f45
@@ -1,98 +0,0 @@
1
- require 'test_helper'
2
-
3
- describe CouponCode do
4
- describe 'Generator' do
5
- def generate(*args)
6
- CouponCode.generate(*args)
7
- end
8
-
9
- it 'should be loaded.' do
10
- CouponCode.must_respond_to(:generate)
11
- end
12
-
13
- it 'should generate a code' do
14
- generate.wont_be_empty
15
- end
16
-
17
- it 'should only contain uppercase letters, digits, and dashes.' do
18
- generate.must_match(/^[0-9A-Z-]+$/)
19
- end
20
-
21
- it 'should look like XXXX-XXXX-XXXX.' do
22
- generate.must_match(/^\w{4}-\w{4}-\w{4}$/)
23
- end
24
-
25
- it 'should generate different codes.' do
26
- code1 = generate
27
- code2 = generate
28
- code1.wont_equal(code2)
29
- end
30
-
31
- it 'should generate an arbitrary number of parts.' do
32
- generate(parts: 2).must_match(/^\w{4}-\w{4}$/)
33
- generate(parts: 5).must_match(/^\w{4}-\w{4}-\w{4}-\w{4}-\w{4}$/)
34
- end
35
- end
36
-
37
- describe 'Validator' do
38
- it 'should be loaded.' do
39
- CouponCode.must_respond_to(:validate)
40
- end
41
-
42
- it 'should fail to validate invalid code.' do
43
- CouponCode.validate('').must_equal(nil)
44
- end
45
-
46
- it 'should accept a valid code.' do
47
- CouponCode.validate('1K7Q-CTFM-LMTC').wont_be_nil
48
- end
49
-
50
- it 'should reject a short code.' do
51
- CouponCode.validate('1K7Q-CTFM').must_be_nil
52
- end
53
-
54
- it 'should accept a short code with correct parts.' do
55
- CouponCode.validate('1K7Q-CTFM', 2).wont_be_nil
56
- end
57
-
58
- it 'should reject a short code with wrong parts.' do
59
- CouponCode.validate('CTFM-1K7Q', 2).must_be_nil
60
- end
61
-
62
- it 'should fix and validate a lowercase code.' do
63
- code = '1k7q-ctfm-lmtc'
64
- CouponCode.validate(code.downcase).must_equal(code.upcase)
65
- end
66
-
67
- it 'should validate alternative separators.' do
68
- code = '1k7q/ctfm/lmtc'
69
- CouponCode.validate(code).must_equal('1K7Q-CTFM-LMTC')
70
-
71
- code = '1k7q ctfm lmtc'
72
- CouponCode.validate(code).must_equal('1K7Q-CTFM-LMTC')
73
-
74
- code = '1k7qctfmlmtc'
75
- CouponCode.validate(code).must_equal('1K7Q-CTFM-LMTC')
76
- end
77
-
78
- it 'should valid code-pretest.' do
79
- CouponCode.validate('1K7Q', 1).wont_be_nil
80
- CouponCode.validate('1K7C', 1).must_be_nil
81
-
82
- CouponCode.validate('1K7Q-CTFM', 2).wont_be_nil
83
- CouponCode.validate('1K7Q-CTFW', 2).must_be_nil
84
-
85
- CouponCode.validate('1K7Q-CTFM-LMTC', 3).wont_be_nil
86
- CouponCode.validate('1K7Q-CTFM-LMT1', 3).must_be_nil
87
-
88
- CouponCode.validate('7YQH-1FU7-E1HX-0BG9', 4).wont_be_nil
89
- CouponCode.validate('7YQH-1FU7-E1HX-0BGP', 4).must_be_nil
90
-
91
- CouponCode.validate('YENH-UPJK-PTE0-20U6-QYME', 5).wont_be_nil
92
- CouponCode.validate('YENH-UPJK-PTE0-20U6-QYMT', 5).must_be_nil
93
-
94
- CouponCode.validate('YENH-UPJK-PTE0-20U6-QYME-RBK1', 6).wont_be_nil
95
- CouponCode.validate('YENH-UPJK-PTE0-20U6-QYME-RBK2', 6).must_be_nil
96
- end
97
- end
98
- end
data/test/test_helper.rb DELETED
@@ -1,7 +0,0 @@
1
- require "codeclimate-test-reporter"
2
- CodeClimate::TestReporter.start
3
-
4
- require 'coupon_code'
5
- require 'minitest/spec'
6
- require 'minitest/autorun'
7
- require 'minitest/pride'