data-anonymization 0.6.6 → 0.6.7
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 +4 -4
- data/.ruby-version +1 -1
- data/.travis.yml +1 -1
- data/README.md +9 -1
- data/data-anonymization.gemspec +3 -3
- data/lib/version.rb +1 -1
- data/spec/acceptance/mongodb_blacklist_spec.rb +2 -2
- metadata +9 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 012176ad7901448a27800e5855faf1c9fb756dcf
|
|
4
|
+
data.tar.gz: c321d121978e71bddfbd2c2a850af15805337c0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 068f82d4ccfab5b941d64a8e2fcd54b4fd0b66af6857c820523b0cc67382753c7a716e4ab9dd9f2173d32650d93be3fc941c520d8c80f6f3d94ef1d78b42793e
|
|
7
|
+
data.tar.gz: a75b41acdfafc9e6da3e0afff811c8f890f3368d79ed6b7d9d0422530260a689e7d9a5e1df543e0fc70a64e9d858b304e1c8c4505a21999c94ca68a788fa163b
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby-2.1.
|
|
1
|
+
ruby-2.1.5
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Data::Anonymization
|
|
2
|
-
Afraid of
|
|
2
|
+
Afraid of using production data due to privacy issues? Data Anonymization is a tool that helps you build anonymized production data dumps which you can use for performance testing, security testing, debugging and development.
|
|
3
3
|
|
|
4
4
|
[<img src="https://secure.travis-ci.org/sunitparekh/data-anonymization.png?branch=master">](http://travis-ci.org/sunitparekh/data-anonymization)
|
|
5
5
|
[<img src="https://gemnasium.com/sunitparekh/data-anonymization.png?travis">](https://gemnasium.com/sunitparekh/data-anonymization)
|
|
@@ -70,6 +70,14 @@ Postgresql database having **composite primary key**
|
|
|
70
70
|
|
|
71
71
|
## Changelog
|
|
72
72
|
|
|
73
|
+
#### 0.6.7 (Jan 17, 2015)
|
|
74
|
+
1. Upgraded gems to latest version including activerecord to 4.2. Please try it out and provide feedback.
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
#### 0.6.6 (Oct 31, 2014)
|
|
78
|
+
1. Upgraded gems to latest version.
|
|
79
|
+
|
|
80
|
+
|
|
73
81
|
#### 0.6.5 (Jun 02, 2014)
|
|
74
82
|
1. Upgraded most of the gems to latest version. major change is rails activerecord gem to latest versions 4.1.1, please provide feedback.
|
|
75
83
|
|
data/data-anonymization.gemspec
CHANGED
|
@@ -19,10 +19,10 @@ Gem::Specification.new do |gem|
|
|
|
19
19
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
20
20
|
gem.require_paths = ['lib']
|
|
21
21
|
|
|
22
|
-
gem.add_dependency('activerecord', '~> 4.
|
|
22
|
+
gem.add_dependency('activerecord', '~> 4.2')
|
|
23
23
|
gem.add_dependency('protected_attributes', '~> 1.0')
|
|
24
|
-
gem.add_dependency('composite_primary_keys', '~>
|
|
25
|
-
gem.add_dependency('activesupport', '~> 4.
|
|
24
|
+
gem.add_dependency('composite_primary_keys', '~> 8.0')
|
|
25
|
+
gem.add_dependency('activesupport', '~> 4.2')
|
|
26
26
|
gem.add_dependency('rgeo', '~> 0.3')
|
|
27
27
|
gem.add_dependency('rgeo-geojson', '~> 0.3')
|
|
28
28
|
gem.add_dependency('powerbar', '~> 1.0')
|
data/lib/version.rb
CHANGED
|
@@ -60,7 +60,7 @@ describe "End 2 End MongoDB Blacklist Acceptance Test" do
|
|
|
60
60
|
|
|
61
61
|
user['_id'].should == 1
|
|
62
62
|
user['user_id'].should == "user-1"
|
|
63
|
-
user['date_of_birth'].should_not == Time.new(2012, 7, 14, 13, 1, 0)
|
|
63
|
+
user['date_of_birth'].to_i.should_not == Time.new(2012, 7, 14, 13, 1, 0).to_i
|
|
64
64
|
user['email'].should_not == "parekh.sunit@gmail.com"
|
|
65
65
|
user['password'].should == "password"
|
|
66
66
|
user['failed_attempts'].should == 0
|
|
@@ -68,7 +68,7 @@ describe "End 2 End MongoDB Blacklist Acceptance Test" do
|
|
|
68
68
|
user['last_name'].should_not be "Parekh"
|
|
69
69
|
user['password_reset_answer'].should == "manza"
|
|
70
70
|
user['password_reset_question'].should == "My new car modal?"
|
|
71
|
-
user['updated_at'].should == Time.new(2012, 8, 15, 13, 1, 0)
|
|
71
|
+
user['updated_at'].to_i.should == Time.new(2012, 8, 15, 13, 1, 0).to_i
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: data-anonymization
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sunit Parekh
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2015-01-17 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activerecord
|
|
@@ -18,14 +18,14 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - "~>"
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: '4.
|
|
21
|
+
version: '4.2'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - "~>"
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: '4.
|
|
28
|
+
version: '4.2'
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: protected_attributes
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -46,28 +46,28 @@ dependencies:
|
|
|
46
46
|
requirements:
|
|
47
47
|
- - "~>"
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: '
|
|
49
|
+
version: '8.0'
|
|
50
50
|
type: :runtime
|
|
51
51
|
prerelease: false
|
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
|
53
53
|
requirements:
|
|
54
54
|
- - "~>"
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: '
|
|
56
|
+
version: '8.0'
|
|
57
57
|
- !ruby/object:Gem::Dependency
|
|
58
58
|
name: activesupport
|
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
|
60
60
|
requirements:
|
|
61
61
|
- - "~>"
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
|
-
version: '4.
|
|
63
|
+
version: '4.2'
|
|
64
64
|
type: :runtime
|
|
65
65
|
prerelease: false
|
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
|
67
67
|
requirements:
|
|
68
68
|
- - "~>"
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
|
-
version: '4.
|
|
70
|
+
version: '4.2'
|
|
71
71
|
- !ruby/object:Gem::Dependency
|
|
72
72
|
name: rgeo
|
|
73
73
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -311,7 +311,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
311
311
|
version: '0'
|
|
312
312
|
requirements: []
|
|
313
313
|
rubyforge_project:
|
|
314
|
-
rubygems_version: 2.4.
|
|
314
|
+
rubygems_version: 2.4.3
|
|
315
315
|
signing_key:
|
|
316
316
|
specification_version: 4
|
|
317
317
|
summary: Tool to create anonymized production data dump to use for PREF and other
|