zendesk_apps_tools 3.9.2 → 3.9.4
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cae1a1926ab8e5f5dedfbfa6bbad4bc0381fceb4cf4c5ccd46dd96a57f92b8fd
|
|
4
|
+
data.tar.gz: 7eb258153706c81d4a4a15d0eaea28ab63a586b38148fb8785abdac7342a231f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3995a50fa76d63c8b12ede3161dbc9f8368b8908b79943c9aaaa87d7d3de9bbce4f0dbce9c34057ae252153217a817678a8dd3e2158dbe209e6fb65a12492ed
|
|
7
|
+
data.tar.gz: 35a7af07b795cc110b017c44b272e129761aa694abe320c01743bd3206fbda0fc0878e84dc4f25b123a834a2e1ec1cc3f01dba43e37f6bd5bc2ff62a91476729
|
|
@@ -178,6 +178,12 @@ module ZendeskAppsTools
|
|
|
178
178
|
server.set :parameters, settings
|
|
179
179
|
server.set :app_id, options[:app_id]
|
|
180
180
|
server.set :plan, [options[:plan], cache.fetch('plan')].reject(&:nil?).first
|
|
181
|
+
|
|
182
|
+
host = options[:bind] || DEFAULT_SERVER_IP
|
|
183
|
+
say "If apps fail to load, your browser may be blocking requests to http://#{host}:#{options[:port]}", :yellow
|
|
184
|
+
say 'Make sure Local Network Access (LNA) is allowed to access your local apps server.', :yellow
|
|
185
|
+
say 'Learn more: https://developer.zendesk.com/documentation/apps/zendesk-app-tools-zat/installing-and-using-zat/#testing-your-app-locally-in-a-browser', :yellow
|
|
186
|
+
|
|
181
187
|
server.run!
|
|
182
188
|
end
|
|
183
189
|
end
|
|
@@ -295,7 +301,7 @@ module ZendeskAppsTools
|
|
|
295
301
|
begin
|
|
296
302
|
require 'open-uri'
|
|
297
303
|
require 'zip'
|
|
298
|
-
download = open(scaffold_url)
|
|
304
|
+
download = URI.open(scaffold_url)
|
|
299
305
|
IO.copy_stream(download, tmp_download_name)
|
|
300
306
|
zip_file = Zip::File.open(tmp_download_name)
|
|
301
307
|
zip_file.each do |entry|
|
|
@@ -205,7 +205,7 @@ module ZendeskAppsTools
|
|
|
205
205
|
@en_yaml ||= begin
|
|
206
206
|
path = "#{destination_root}/translations/en.yml"
|
|
207
207
|
require 'yaml'
|
|
208
|
-
YAML.
|
|
208
|
+
YAML.safe_load_file(path, permitted_classes: [Date]) if File.exist? path
|
|
209
209
|
end
|
|
210
210
|
end
|
|
211
211
|
|
metadata
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zendesk_apps_tools
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.9.
|
|
4
|
+
version: 3.9.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James A. Rosen
|
|
8
8
|
- Kenshiro Nakagawa
|
|
9
9
|
- Shajith Chacko
|
|
10
10
|
- Likun Liu
|
|
11
|
-
autorequire:
|
|
11
|
+
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date:
|
|
14
|
+
date: 2025-12-09 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: thor
|
|
@@ -129,14 +129,14 @@ dependencies:
|
|
|
129
129
|
requirements:
|
|
130
130
|
- - "~>"
|
|
131
131
|
- !ruby/object:Gem::Version
|
|
132
|
-
version: 4.
|
|
132
|
+
version: 4.39.0
|
|
133
133
|
type: :runtime
|
|
134
134
|
prerelease: false
|
|
135
135
|
version_requirements: !ruby/object:Gem::Requirement
|
|
136
136
|
requirements:
|
|
137
137
|
- - "~>"
|
|
138
138
|
- !ruby/object:Gem::Version
|
|
139
|
-
version: 4.
|
|
139
|
+
version: 4.39.0
|
|
140
140
|
- !ruby/object:Gem::Dependency
|
|
141
141
|
name: sinatra-cross_origin
|
|
142
142
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -365,7 +365,7 @@ homepage: http://github.com/zendesk/zendesk_apps_tools
|
|
|
365
365
|
licenses:
|
|
366
366
|
- Apache-2.0
|
|
367
367
|
metadata: {}
|
|
368
|
-
post_install_message:
|
|
368
|
+
post_install_message:
|
|
369
369
|
rdoc_options: []
|
|
370
370
|
require_paths:
|
|
371
371
|
- lib
|
|
@@ -373,25 +373,25 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
373
373
|
requirements:
|
|
374
374
|
- - ">="
|
|
375
375
|
- !ruby/object:Gem::Version
|
|
376
|
-
version:
|
|
376
|
+
version: 3.1.0
|
|
377
377
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
378
378
|
requirements:
|
|
379
379
|
- - ">="
|
|
380
380
|
- !ruby/object:Gem::Version
|
|
381
381
|
version: 3.0.0
|
|
382
382
|
requirements: []
|
|
383
|
-
rubygems_version: 3.
|
|
384
|
-
signing_key:
|
|
383
|
+
rubygems_version: 3.5.22
|
|
384
|
+
signing_key:
|
|
385
385
|
specification_version: 4
|
|
386
386
|
summary: Tools to help you develop Zendesk Apps.
|
|
387
387
|
test_files:
|
|
388
|
-
- features/
|
|
389
|
-
- features/
|
|
390
|
-
- features/
|
|
388
|
+
- features/clean.feature
|
|
389
|
+
- features/create.feature
|
|
390
|
+
- features/fixtures/quote_character_translation.json
|
|
391
391
|
- features/new.feature
|
|
392
392
|
- features/package.feature
|
|
393
|
-
- features/fixtures/quote_character_translation.json
|
|
394
|
-
- features/create.feature
|
|
395
|
-
- features/clean.feature
|
|
396
|
-
- features/validate.feature
|
|
397
393
|
- features/step_definitions/app_steps.rb
|
|
394
|
+
- features/support/env.rb
|
|
395
|
+
- features/support/helpers.rb
|
|
396
|
+
- features/support/webmock.rb
|
|
397
|
+
- features/validate.feature
|