pii_safe_schema 1.0.3 → 1.0.4

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
  SHA256:
3
- metadata.gz: 8bca88cff66431d4ed83b6f8e3956e40686d858b47beac08a0efe05eae5a8b42
4
- data.tar.gz: 8ab4b451afbf182da050c29e6e4f8d9ea00cdd225940604b242530db6f8d3649
3
+ metadata.gz: b8ffa42ede59100e3e26ca22973bcdc42513fec56665d4d72f4c58b56da40e29
4
+ data.tar.gz: a2b2e8b5747d64813bcb752a0d68d5898ea5d3812d680026dee74a2cbb9285aa
5
5
  SHA512:
6
- metadata.gz: 5e2ddf4cbe30dbe6285581508e4d138de72acf42f031045879cf85f74a28501970f4bb7a3af3dc612e1d4eef248d94154c8c8149e6d3af79ac63b2766fdb24e6
7
- data.tar.gz: 625c1edd58177ce1f79fada40a3e25bd1701133516ef73579b40496e81e4cdbaa97368f74cbec1d7098b0e8c23969d264cfc2b16ac140dbaa61a03b840b712cc
6
+ metadata.gz: 69487096c32407b5c01701456bb27b4e6a3e6d7d3c392822b3d537ed249ed05ac0c377e9301298cb77271fecfbcc364b3a6180689a2c0bfd7832da772aa3113d
7
+ data.tar.gz: 5f70deca22e17a872359fe952c411d2b86e537fbadca2d0d262566732627f613c181af7280e56745d370b419c1b6968b56fa6a7d35e9d7e1c9ea9d166ec9f643
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## 1.0.4 - 2019-4-16
8
+ ### Fixed
9
+ - converted any hyphens to underscores for consistency.
10
+
7
11
  ## 1.0.3
8
12
  ### Fixed
9
13
  - bumping version to release to rubygems
data/README.md CHANGED
@@ -10,7 +10,7 @@ this gem serves a few functions:
10
10
 
11
11
  ### Getting Started
12
12
 
13
- `gem 'pii-safe-schema'`
13
+ `gem 'pii_safe_schema'`
14
14
 
15
15
  add the following to `application.rb`
16
16
 
@@ -23,7 +23,7 @@ end
23
23
  if you want to ignore certain columns, add the following initializer:
24
24
 
25
25
  ```
26
- # initializers/pii-safe-schema.rb
26
+ # initializers/pii_safe_schema.rb
27
27
 
28
28
  PiiSafeSchema.configure do |config|
29
29
  config.ignore = {
@@ -20,7 +20,7 @@ module PiiSafeSchema
20
20
 
21
21
  if this column does not contain PII, you can ignore it
22
22
  in your PiiSafeSchema configs.
23
- https://github.com/wealthsimple/pii-safe-schema/blob/master/README.md
23
+ https://github.com/wealthsimple/pii_safe_schema/blob/master/README.md
24
24
  ------------------------------------------------------------------------------------
25
25
  HEREDOC
26
26
  end
@@ -1,3 +1,3 @@
1
1
  module PiiSafeSchema
2
- VERSION = '1.0.3'.freeze
2
+ VERSION = '1.0.4'.freeze
3
3
  end
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
9
9
  s.email = ['agarrow@wealthsimple.com']
10
10
 
11
11
  s.summary = 'Schema migration tool for checking and adding comments on PII columns.'
12
- s.homepage = 'https://github.com/wealthsimple/pii-safe-schema'
12
+ s.homepage = 'https://github.com/wealthsimple/pii_safe_schema'
13
13
 
14
14
  s.files = `git ls-files -z`.split("\x0").reject do |f|
15
15
  f.match(%r{^(test|spec|features)/})
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pii_safe_schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexi Garrow
@@ -292,8 +292,8 @@ files:
292
292
  - lib/pii_safe_schema/railtie.rb
293
293
  - lib/pii_safe_schema/version.rb
294
294
  - lib/tasks/pii_safe_schema.rake
295
- - pii-safe-schema.gemspec
296
- homepage: https://github.com/wealthsimple/pii-safe-schema
295
+ - pii_safe_schema.gemspec
296
+ homepage: https://github.com/wealthsimple/pii_safe_schema
297
297
  licenses: []
298
298
  metadata: {}
299
299
  post_install_message: