zuora_connect 0.0.7.1 → 0.0.7.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 +4 -4
- data/app/assets/javascripts/zuora_connect/application.js +0 -2
- data/app/controllers/zuora_connect/static_controller.rb +0 -2
- data/lib/zuora_connect/configuration.rb +1 -1
- data/lib/zuora_connect/engine.rb +0 -1
- data/lib/zuora_connect/version.rb +1 -1
- metadata +1 -17
- data/app/views/zuora_connect/static/invalid_app_instance_error.js.erb +0 -1
- data/app/views/zuora_connect/static/session_error.js.erb +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d06fd476d7806ed43d9c0dcc12fbeb6482ee2b7
|
4
|
+
data.tar.gz: 094e32f7cebd99624a3f6e1780e781a869eef287
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37dd72749d138d0793d750e47f1ac6c1ae4350c38e46fa0004e168c90293f19beb242296c5a10c762eb1eed952b47f420a64946058c890b90e7553a0318a675f
|
7
|
+
data.tar.gz: 0a3c2590480708a05e2e03399e00063fd3489218671b50b419b5b5521a5602fbf337014cc3c0f6f75a4e36e20399e2ccfe5000307393b25bd5fc81b8da5781c3
|
@@ -6,7 +6,6 @@ module ZuoraConnect
|
|
6
6
|
respond_to do |format|
|
7
7
|
format.html
|
8
8
|
format.json { render json: { message: "Session Error", status: 500 }, status: 500 }
|
9
|
-
format.js {}
|
10
9
|
end
|
11
10
|
end
|
12
11
|
|
@@ -14,7 +13,6 @@ module ZuoraConnect
|
|
14
13
|
respond_to do |format|
|
15
14
|
format.html
|
16
15
|
format.json {render json: { message: "Invalid App Instance", status: 500 }, status: 500 }
|
17
|
-
format.js {}
|
18
16
|
end
|
19
17
|
end
|
20
18
|
|
@@ -8,7 +8,7 @@ module ZuoraConnect
|
|
8
8
|
@default_time_zone = Time.zone
|
9
9
|
@session_error_path = '/connect/invalid_session'
|
10
10
|
@invalid_app_instance_error_path = '/connect/invalid_instance'
|
11
|
-
@url = "
|
11
|
+
@url = "https://connect.zuora.com/"
|
12
12
|
@mode = "Production"
|
13
13
|
@dev_mode_logins = { "target_login" => {"tenant_type" => "Zuora", "username" => "user", "password" => "pass", "url" => "url"} }
|
14
14
|
@dev_mode_options = {"name" => {"config_name" => "name", "datatype" => "type", "value" => "value"}}
|
data/lib/zuora_connect/engine.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zuora_connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.7.
|
4
|
+
version: 0.0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Connect Team
|
@@ -80,20 +80,6 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '3.0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: jquery-rails
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - ">="
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
type: :runtime
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ">="
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
97
83
|
- !ruby/object:Gem::Dependency
|
98
84
|
name: railties
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -137,9 +123,7 @@ files:
|
|
137
123
|
- app/models/zuora_connect/login.rb
|
138
124
|
- app/views/layouts/zuora_connect/application.html.erb
|
139
125
|
- app/views/zuora_connect/static/invalid_app_instance_error.html.erb
|
140
|
-
- app/views/zuora_connect/static/invalid_app_instance_error.js.erb
|
141
126
|
- app/views/zuora_connect/static/session_error.html.erb
|
142
|
-
- app/views/zuora_connect/static/session_error.js.erb
|
143
127
|
- config/initializers/apartment.rb
|
144
128
|
- config/routes.rb
|
145
129
|
- db/migrate/20160718151733_create_connect_app_instances.rb
|
@@ -1 +0,0 @@
|
|
1
|
-
document.write('<%= escape_javascript render(:file=>"zuora_connect/static/invalid_app_instance_error", :formats => [:html]) %>');
|
@@ -1 +0,0 @@
|
|
1
|
-
document.write('<%= escape_javascript render(:file=>"zuora_connect/static/session_error", :formats => [:html]) %>');
|