data-anonymization 0.5.1.rc1 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +7 -0
- data/lib/version.rb +1 -1
- metadata +5 -5
data/README.md
CHANGED
@@ -68,6 +68,12 @@ Postgresql database having **composite primary key**
|
|
68
68
|
|
69
69
|
## Changelog
|
70
70
|
|
71
|
+
#### 0.5.1 (Oct ??, 2012)
|
72
|
+
|
73
|
+
1. Minor fixes release, no major functionality or feature added.
|
74
|
+
|
75
|
+
Please see the [Github 0.5.1 milestone page](https://github.com/sunitparekh/data-anonymization/issues?milestone=3&state=open) for more details on changes/fixes in release 0.5.1
|
76
|
+
|
71
77
|
#### 0.5.0 (Sep 28, 2012)
|
72
78
|
|
73
79
|
Major changes:
|
@@ -157,6 +163,7 @@ Read more about [blacklist and whitelist here](http://sunitspace.blogspot.in/201
|
|
157
163
|
1. In Whitelist approach make source database connection READONLY.
|
158
164
|
2. Change [default field strategies](#default-field-strategies) to avoid using same strategy again and again in your DSL.
|
159
165
|
3. To run anonymization in parallel at Table level, provided no FK constraint on tables use DataAnon::Parallel::Table strategy
|
166
|
+
4. For large table to load them in batches from table set 'batch_size' and it will use RoR's batch mode processing. Checkout [example](https://github.com/sunitparekh/data-anonymization/blob/master/examples/whitelist_dsl.rb) on how to use batch processing.
|
160
167
|
|
161
168
|
## DSL Generation
|
162
169
|
|
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: data-anonymization
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.1
|
5
|
-
prerelease:
|
4
|
+
version: 0.5.1
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Sunit Parekh
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2012-10-
|
14
|
+
date: 2012-10-26 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: activerecord
|
@@ -307,9 +307,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
307
307
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
308
308
|
none: false
|
309
309
|
requirements:
|
310
|
-
- - ! '
|
310
|
+
- - ! '>='
|
311
311
|
- !ruby/object:Gem::Version
|
312
|
-
version:
|
312
|
+
version: '0'
|
313
313
|
requirements: []
|
314
314
|
rubyforge_project:
|
315
315
|
rubygems_version: 1.8.24
|