contact_sync 0.4.4 → 0.4.5
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 322aae6c4ee241aa3c4642d3e960aecd27c3bafc
|
4
|
+
data.tar.gz: 95d2a1f54b01c0c4c64bf55050baf59d26893fcf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb258facfaff58829ba9200cbac22571dfd618aca5223cbf2b27b4bd001cb0efad1044093c95f6a03f41604f243409c3557177e6c81686078ce146f4833e7064
|
7
|
+
data.tar.gz: dff4e02880081a20e5cf1122af3ebd9730b1afcb51b0736107198686d5b00766e06ef7512c61bdf54fff7599ae3e9eb7408f6c1666c149e59ac6a32c1276c00b
|
data/lib/contact_sync/version.rb
CHANGED
@@ -10,8 +10,13 @@ class InstallContactSyncGenerator < Rails::Generators::Base
|
|
10
10
|
source_root File.expand_path('../templates', __FILE__)
|
11
11
|
|
12
12
|
def generate_migration
|
13
|
-
|
14
|
-
|
13
|
+
if self.class.migration_exists?('db/migrate', @migration_file_name)
|
14
|
+
migration_template "create_contact_sync_schema.rb", "db/migrate/create_contact_sync_schema.rb"
|
15
|
+
end
|
16
|
+
|
17
|
+
if self.class.migration_exists?('db/migrate', @migration_file_name)
|
18
|
+
migration_template "change_email_encrypted_from_emails.rb", "db/migrate/change_emails_schema.rb"
|
19
|
+
end
|
15
20
|
end
|
16
21
|
|
17
22
|
# def generate_global_phone_db
|