zuora_connect 0.0.9.3.1 → 0.0.9.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 79b03b3d916270f8038d6cf0744e4666b2261640
4
- data.tar.gz: a1d451915b411b30f4e0bc516dd04451f4ca0fc3
3
+ metadata.gz: c47e373f477442be544f1fca1f6d3cb123d38abb
4
+ data.tar.gz: 1b7b0c9dcaf1e8f1097f78ace004d9a25ba952b9
5
5
  SHA512:
6
- metadata.gz: 5eb5204e39a76403956ed221d4441bfa767f768e7b3a9a43ebd0e54879a59b3decca0c506ce83657775bc0f59b3fd8c46aefaa34a5ce7884fc4739eafc2a2b1b
7
- data.tar.gz: 72956a127a8aacf9c1b37c86d6f61b9e9c3b081fd5a5d7ea8a8e8fc5cae082858bb8d4e0522d2d47ccce4d5a8230eec50e2df91bca5f8b0e731ceb7fb37a3cb8
6
+ metadata.gz: be8b4ab150883a8b2bee3598fb9d34dced6693f7fa2ec16b393ca785f65a5f5e34dc7a1cd4f35dde5594e2b41ba03d783a3d9b04f61096eb12a94a979dff185f
7
+ data.tar.gz: 08898e3efb91120bab1cc1b480d30235cf83077a97bbabafc0dfc6d802b68e43b1ed509d497ea471b36d0c7e9f1c02b50b5dabaf149a744660e36878865c8586
@@ -1,3 +1,3 @@
1
1
  module ZuoraConnect
2
- VERSION = "0.0.9.3.1"
2
+ VERSION = "0.0.9.3.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zuora_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9.3.1
4
+ version: 0.0.9.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Connect Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-18 00:00:00.000000000 Z
11
+ date: 2016-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apartment
@@ -127,8 +127,6 @@ files:
127
127
  - config/initializers/apartment.rb
128
128
  - config/routes.rb
129
129
  - db/migrate/20160718151733_create_connect_app_instances.rb
130
- - db/migrate/20161024162319_add_tokens_to_app_instance.rb
131
- - db/migrate/20161024220705_add_token_to_app_instance.rb
132
130
  - lib/tasks/zuora_connect_tasks.rake
133
131
  - lib/zuora_connect.rb
134
132
  - lib/zuora_connect/configuration.rb
@@ -1,6 +0,0 @@
1
- class AddTokensToAppInstance < ActiveRecord::Migration
2
- def change
3
- add_column :zuora_connect_app_instances, :access_token, :string unless column_exists? :zuora_connect_app_instances, :access_token
4
- add_column :zuora_connect_app_instances, :refresh_token, :string unless column_exists? :zuora_connect_app_instances, :refresh_token
5
- end
6
- end
@@ -1,5 +0,0 @@
1
- class AddTokenToAppInstance < ActiveRecord::Migration
2
- def change
3
- add_column :zuora_connect_app_instances, :token, :string unless column_exists? :zuora_connect_app_instances, :token
4
- end
5
- end