contact_sync 0.4.7 → 0.4.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: da6e7f919f536f73257bd76f6620e3fd8c91458a
4
- data.tar.gz: 86c1d40638035027cf92756c82a024a22847e538
3
+ metadata.gz: 387f3b7febb5ba5e7a78e41920b667a1a0d89aa7
4
+ data.tar.gz: 877992cc5047c07398078360b43b519ef5d71988
5
5
  SHA512:
6
- metadata.gz: ee82076e25440f791d13b59fc1aa60143b04804b0b0ed2d491200fe3e7c758f4ad0fda65cea9d05a0bd02d33a6b736d2314d3d94637f7ac63980486968445150
7
- data.tar.gz: 37f8d6dfc0bbd3d7141c5f017e9b39a08c8b577a528f65bccbec1fc1f486e19dbd23e53101875a9f911f42cfc59bb292b6ab7eb1690f75420b8dd0b82c98255e
6
+ metadata.gz: ac251fed601ce9b6f9ad8ce5571f15851778e8a19d0b9abbc9b6a867d1f7ecff27cd3d98a74ef749116e2ca49edb9b44b313ff6e0addcb0c4c70b698776978b6
7
+ data.tar.gz: 84e87516482f0c8933c5aea790e685c8758a7dafe3ac2f7fd30ba7f98a34a2467a787d56ef698058fe7f0c9de5766e920a0700eecd1030196dafdea681e6f126
@@ -1,3 +1,3 @@
1
1
  module ContactSync
2
- VERSION = "0.4.7"
2
+ VERSION = "0.4.8"
3
3
  end
@@ -14,10 +14,6 @@ class InstallContactSyncGenerator < Rails::Generators::Base
14
14
  if !self.class.migration_exists?('db/migrate', 'create_contact_sync_schema')
15
15
  migration_template "create_contact_sync_schema.rb", "db/migrate/create_contact_sync_schema.rb"
16
16
  end
17
-
18
- if !self.class.migration_exists?('db/migrate', 'change_emails_schema')
19
- migration_template "change_email_encrypted_from_emails.rb", "db/migrate/change_emails_schema.rb"
20
- end
21
17
  end
22
18
 
23
19
  def generate_encrypted_strings_config
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: contact_sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.7
4
+ version: 0.4.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Saad Masood
@@ -103,7 +103,6 @@ files:
103
103
  - lib/generators/install_contact_sync/USAGE
104
104
  - lib/generators/install_contact_sync/install_contact_sync_generator.rb
105
105
  - lib/generators/install_contact_sync/templates/address.rb
106
- - lib/generators/install_contact_sync/templates/change_email_encrypted_from_emails.rb
107
106
  - lib/generators/install_contact_sync/templates/contact.rb
108
107
  - lib/generators/install_contact_sync/templates/create_contact_sync_schema.rb
109
108
  - lib/generators/install_contact_sync/templates/email.rb
@@ -1,11 +0,0 @@
1
- class changeEmailSchema < ActiveRecord::Migration
2
- def up
3
- add_column :emails, :encrypted_email, :string
4
- remove_column :emails, :email
5
- end
6
-
7
- def down
8
- remove_column :emails, :encrypted_email
9
- add_column :emails, :email, :string
10
- end
11
- end