my_obfuscate 0.3.7 → 0.4.2

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.
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ my_obfuscate
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-1.9.3-p392
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ script: "bundle exec rake"
data/CHANGES ADDED
@@ -0,0 +1 @@
1
+ 3/4/2013 - Switch to the ffaker gem for speed. Add WalkerMethod and an English language frequency dictionary for generating random texts.
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009 Honk
1
+ Copyright (c) 2009 Honk, 2010 Iteration Labs, 2012 Mavenlink
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
data/README.rdoc CHANGED
@@ -1,6 +1,6 @@
1
- = my_obfuscate
1
+ = MyObfuscate
2
2
 
3
- Standalone Ruby code for the selective rewriting of SQL dumps in order to protect user privacy. Supports MySQL and SQL Server.
3
+ You want to develop against real production data, but you don't want to violate your users' privacy. Enter MyObfuscate: standalone Ruby code for the selective rewriting of SQL dumps in order to protect user privacy. It supports MySQL, Postgres, and SQL Server.
4
4
 
5
5
  = Install
6
6
 
@@ -52,8 +52,8 @@ And to get an obfuscated dump:
52
52
 
53
53
  mysqldump -c --add-drop-table --hex-blob -u user -ppassword database | ruby obfuscator.rb > obfuscated_dump.sql
54
54
 
55
- Note that the -c option on mysqldump is required to use my_obfuscator. Additionally, the default behavior of mysqldump
56
- is to output special characters. This may cause trouble, so you can request hex-encoded blob content with --hex-blob.
55
+ Note that the -c option on mysqldump is required to use my_obfuscator. Additionally, the default behavior of mysqldump
56
+ is to output special characters. This may cause trouble, so you can request hex-encoded blob content with --hex-blob.
57
57
  If you get MySQL errors due to very long lines, try some combination of --max_allowed_packet=128M, --single-transaction, --skip-extended-insert, and --quick.
58
58
 
59
59
  == Database Server
@@ -62,6 +62,7 @@ By default the database type is assumed to be MySQL, but you can use the
62
62
  builtin SQL Server support by specifying:
63
63
 
64
64
  obfuscator.database_type = :sql_server
65
+ obfuscator.database_type = :postgres
65
66
 
66
67
  == Types
67
68
 
@@ -70,6 +71,7 @@ zip_code, phone, company, ipv4, ipv6, url, integer, fixed, null, and keep.
70
71
 
71
72
  == Changes
72
73
 
74
+ * Support for Postgres. Thanks @samuelreh!
73
75
  * Support for SQL Server
74
76
  * :unless and :if now support :nil as a shorthand for a Proc that checks for nil
75
77
  * :name, :lorem, and :address are all now supported types. You can pass :number to :lorem to specify how many sentences to generate. The default is one.
@@ -87,8 +89,10 @@ zip_code, phone, company, ipv4, ipv6, url, integer, fixed, null, and keep.
87
89
 
88
90
  == Thanks
89
91
 
90
- Thanks to Mavenlink and Pivotal Labs for patches and updates!
92
+ Thanks to Honk for the original gem, Iteration Labs for prior maintenance work, and Pivotal Labs for patches and updates!
91
93
 
92
- == Copyright
94
+ == LICENSE
93
95
 
94
- Copyright (c) 2009 Honk. Now maintained by Iteration Labs, LLC. See LICENSE for details.
96
+ This work is provided under the MIT License. See the included LICENSE file.
97
+
98
+ The included English word frequency list used for generating random text is provided under the Creative Commons – Attribution / ShareAlike 3.0 license by http://invokeit.wordpress.com/frequency-word-lists/