csv_decision 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/csv_decision.gemspec +3 -3
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e1b5a8bfea227e57ed0e764bf33e5a775a1a3152
4
- data.tar.gz: e2d30cf7ac67b04da3a22b48cb27a21134125f10
3
+ metadata.gz: 28ed8e5952334ed339cc3bd82c84e554009a9438
4
+ data.tar.gz: 88b29b7ec01956f7aa57e91121e1c269084c6199
5
5
  SHA512:
6
- metadata.gz: b084083ee126ef6e14dd9f9bc482b4770285a35b1925afaeea0c910cb2f8ba5ba3858868a9e30fb2cb9f1def61d91c941917dbc66ba3c887f8834a7a03d67a88
7
- data.tar.gz: ee186e950e64c9c47bddc0714ce8aa076a2dd01684c5548b6de21dfb24a0c5c697eefa80c4a42bf34c90500e5d350a28c9d8316053bed7c3945b3117ecb3dda0
6
+ metadata.gz: 1baefe11dfe98db1c4c21a937e280378376a48691d8bb801015ad771edc83a9e191cfff20fe76689390bd61da723a9c50414350bca050b8d805e4bae49843e49
7
+ data.tar.gz: 36053a5784980eb95c763556d843bc975247ea3fd28e658360d594e181a5a5f511d349215c35570a4ba1fe5eb90838b2a5eed24ca8e0e102a086021026b50c7a
data/csv_decision.gemspec CHANGED
@@ -5,15 +5,15 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'csv_decision'
8
- spec.version = '0.0.5'
8
+ spec.version = '0.0.6'
9
9
  spec.authors = ['Brett Vickers']
10
10
  spec.email = ['brett@phillips-vickers.com']
11
11
  spec.description = 'CSV based Ruby decision tables.'
12
- spec.summary = <<~DESC
12
+ spec.summary = <<-DESC
13
13
  CSV Decision implements CSV file based Ruby decision tables. It accepts decision tables implemented as a
14
14
  which can then be used to execute complex conditional logic against an input hash,
15
15
  producing a decision as an output hash.
16
- DESC
16
+ DESC
17
17
  spec.homepage = 'https://github.com/bpvickers/csv_decision.git'
18
18
  spec.license = 'MIT'
19
19
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csv_decision
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Vickers