combination-extractor 0.9.0 → 0.9.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
  SHA1:
3
- metadata.gz: 9dbf79f3e6301aab904e419b9c74d1dc5793bc90
4
- data.tar.gz: be61611fac7c22f1b69b925da5f1f7f0f38e32d2
3
+ metadata.gz: 4a10193e2d21d04c508a551cb538bbe2449afdf3
4
+ data.tar.gz: c95e458acf5d7c2d598f70fd72697831b730c1a1
5
5
  SHA512:
6
- metadata.gz: b12486f683e9b7f9f941c557fad7ee726a1198960aea601eb70f4e35494862964c95d696775915fafd7cdb3aff72b658992977027d1b5ba52a340698d92ebc9d
7
- data.tar.gz: 9ffe50c1aab5e5d9395fd4d0432f961ab1237c5fc1176db63c233d3983485715c79d3513c1e5b17df2f2296ed4fcb4762754071f605a34a897b1e695a0d94612
6
+ metadata.gz: 3b71399bf0140bf4c2fc8db1bebd2ff6350487f9f7c297d6010829dfa15250135316e3ae5526eef439bba51a07a3351b89b04897495e7abdbe522b0bd45477c8
7
+ data.tar.gz: 12ed18d5e9ee73546eb0770441332d589e2636fd34c5b8882be6f5eb31060e2fc4cde841218e6592198801aa3d6ce9db6fbde1bf8fcfa0ad8a70c3d0bc5f2cec
data/.gitignore CHANGED
@@ -1,6 +1,5 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
- /Gemfile.lock
4
3
  /_yardoc/
5
4
  /coverage/
6
5
  /doc/
@@ -0,0 +1,35 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ combination-extractor (0.9.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.2.5)
10
+ rake (10.5.0)
11
+ rspec (3.4.0)
12
+ rspec-core (~> 3.4.0)
13
+ rspec-expectations (~> 3.4.0)
14
+ rspec-mocks (~> 3.4.0)
15
+ rspec-core (3.4.2)
16
+ rspec-support (~> 3.4.0)
17
+ rspec-expectations (3.4.0)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.4.0)
20
+ rspec-mocks (3.4.1)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.4.0)
23
+ rspec-support (3.4.1)
24
+
25
+ PLATFORMS
26
+ ruby
27
+
28
+ DEPENDENCIES
29
+ bundler (~> 1.10)
30
+ combination-extractor!
31
+ rake (~> 10.0)
32
+ rspec (~> 3.4.0)
33
+
34
+ BUNDLED WITH
35
+ 1.10.6
data/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # CombinationExtractor
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/combination-extractor.svg)](https://badge.fury.io/rb/combination-extractor)
3
4
  [![Build Status](https://travis-ci.org/akiroom/combination-extractor.svg?branch=master)](https://travis-ci.org/akiroom/combination-extractor)
4
5
 
5
6
  Exctract keyed patterns hash to combination keyed hash.
data/Rakefile CHANGED
@@ -1,5 +1,5 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
3
 
4
4
  RSpec::Core::RakeTask.new(:spec)
5
5
 
@@ -21,5 +21,5 @@ Gem::Specification.new do |spec|
21
21
 
22
22
  spec.add_development_dependency 'bundler', '~> 1.10'
23
23
  spec.add_development_dependency 'rake', '~> 10.0'
24
- spec.add_development_dependency 'rspec', '~> 0'
24
+ spec.add_development_dependency 'rspec', '~> 3.4'
25
25
  end
@@ -1,6 +1,6 @@
1
1
 
2
2
  module CombinationExtractor
3
- VERSION = '0.9.0'
3
+ VERSION = '0.9.1'
4
4
 
5
5
  # Exctract keyed patterns hash to combination keyed hash.
6
6
  # @param key_to_pattern key: title for values, value: [Array] various value to use making combination.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: combination-extractor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroki Akiyama
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
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: '0'
54
+ version: '3.4'
55
55
  description: Extract patterns array to hash list for combination.
56
56
  email:
57
57
  - akiyama@akiroom.com
@@ -63,6 +63,7 @@ files:
63
63
  - ".rspec"
64
64
  - ".travis.yml"
65
65
  - Gemfile
66
+ - Gemfile.lock
66
67
  - LICENSE.txt
67
68
  - README.md
68
69
  - Rakefile