data-anonymization 0.6.6 → 0.6.7

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
  SHA1:
3
- metadata.gz: f37cb6bf8cacec07bdeee51b377679b8578be95e
4
- data.tar.gz: 0eba2b8055084c4d8fbd76d64d4b850126034c95
3
+ metadata.gz: 012176ad7901448a27800e5855faf1c9fb756dcf
4
+ data.tar.gz: c321d121978e71bddfbd2c2a850af15805337c0f
5
5
  SHA512:
6
- metadata.gz: e1dd7f72f912055830576608c2afc091e860bffad0f43285fb105849c3086a861e135a7c87f66ff3891a52c6ef29ce0dc958402ef825f5af2b3ff23ba6dbe8ef
7
- data.tar.gz: 334c430f7ef1bb5931a633cf9d0ead4451af707b0d83a287eb5bc15d244287f5a5e6352a6a2bcd6af0c29216cdde0516c7aa89ec5c7586f6102f1281dc2a8017
6
+ metadata.gz: 068f82d4ccfab5b941d64a8e2fcd54b4fd0b66af6857c820523b0cc67382753c7a716e4ab9dd9f2173d32650d93be3fc941c520d8c80f6f3d94ef1d78b42793e
7
+ data.tar.gz: a75b41acdfafc9e6da3e0afff811c8f890f3368d79ed6b7d9d0422530260a689e7d9a5e1df543e0fc70a64e9d858b304e1c8c4505a21999c94ca68a788fa163b
@@ -1 +1 @@
1
- ruby-2.1.4
1
+ ruby-2.1.5
@@ -5,5 +5,5 @@ before_script: rake empty_dest
5
5
  rvm:
6
6
  - 1.9.3
7
7
  - 2.0.0
8
- - 2.1.4
8
+ - 2.1.5
9
9
  - ruby-head
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # Data::Anonymization
2
- Afraid of getting production data due to privacy issues. Data Anonymization tool helps to build anonymized production data dump to use for performance and security testing, debugging production issues and development purpose.
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
 
@@ -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.1')
22
+ gem.add_dependency('activerecord', '~> 4.2')
23
23
  gem.add_dependency('protected_attributes', '~> 1.0')
24
- gem.add_dependency('composite_primary_keys', '~> 7.0')
25
- gem.add_dependency('activesupport', '~> 4.1')
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')
@@ -1,3 +1,3 @@
1
1
  module DataAnonymization
2
- VERSION = '0.6.6'
2
+ VERSION = '0.6.7'
3
3
  end
@@ -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.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: 2014-10-31 00:00:00.000000000 Z
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.1'
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.1'
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: '7.0'
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: '7.0'
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.1'
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.1'
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.2
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