station 0.0.101 → 0.0.102

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: 64bf1507199f0467d7ac42ef46aa922b15d53e141fd745fdbc3c0a69fd4efda6
4
- data.tar.gz: 97c0cdb2f92ee2d32c69486efba81d50cf9cbdfedbb642547a0281d6ac38efc1
3
+ metadata.gz: 731c9ae04b6db8aabd750d8a19a35f6c7a561fa1ef1dfebeaa4038b182c288f2
4
+ data.tar.gz: 80ebc07b60b8757bbcca9469fe64d5fdc7c123cf84e20fc9ffedd912570d07de
5
5
  SHA512:
6
- metadata.gz: a9edf65ea65cd4cad757672e746b2b0d3bec273190f152af2789ef34fd4f13f49604ed4d63dde4c45b83905ece33f56dd059ed2a061a10d0e8c4d38c1b07c06a
7
- data.tar.gz: 884ed537ecaf8e7715a2569bf7188df61d5fc6e0bb4a01fb7c3a6247386d99b9aa918ef5debfadacfd453b33835f1adef8c8b27e21827e377826f50d43bccae3
6
+ metadata.gz: 41c85d4da7b9c1546150b05dcd717a8ce2b5bfc52d92cef4741858d07b58f79995a782aea88e904109b0c5978f390d0962d5789becca2a9cf216e8297f3ead86
7
+ data.tar.gz: ac8d0143cc76403a1138663d7a3120d0a3b292a7ecfff5aca371d7aef01dc99750961a2786a23deb47f02922c81772cbb53803703d55e5bb868065b6312b7e1f
@@ -110,7 +110,7 @@ gem 'bootsnap', require: false
110
110
  gem 'diffy', require: false
111
111
 
112
112
  # Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.
113
- gem 'rubocop', '~> 1.4.1', require: false
113
+ gem 'rubocop', '~> 1.4.2', require: false
114
114
  gem 'rubocop-rails', '~> 2.8', require: false
115
115
 
116
116
  # Volta needs a CSS autoprefixer
@@ -131,7 +131,7 @@ gem 'country_select', '~> 4.0'
131
131
 
132
132
  gem 'nexmo-oas-renderer', '~> 2.4.1', require: false
133
133
 
134
- gem 'nexmo_markdown_renderer', '~> 0.6'
134
+ gem 'nexmo_markdown_renderer', '~> 0.7'
135
135
 
136
136
  gem 'smartling'
137
137
 
@@ -266,7 +266,7 @@ GEM
266
266
  activesupport (>= 4)
267
267
  railties (>= 4)
268
268
  request_store (~> 1.0)
269
- loofah (2.7.0)
269
+ loofah (2.8.0)
270
270
  crass (~> 1.0.2)
271
271
  nokogiri (>= 1.5.9)
272
272
  lumberjack (1.2.8)
@@ -308,7 +308,7 @@ GEM
308
308
  sass (~> 3.1)
309
309
  shotgun (~> 0.9)
310
310
  sinatra (~> 2.0)
311
- nexmo_markdown_renderer (0.6.0)
311
+ nexmo_markdown_renderer (0.7.0)
312
312
  activemodel (~> 6.0)
313
313
  banzai (~> 0.1.2)
314
314
  i18n (~> 1.7)
@@ -437,7 +437,7 @@ GEM
437
437
  rspec-snapshot (0.1.2)
438
438
  rspec (> 3.0.0)
439
439
  rspec-support (3.10.0)
440
- rubocop (1.4.1)
440
+ rubocop (1.4.2)
441
441
  parallel (~> 1.10)
442
442
  parser (>= 2.7.1.5)
443
443
  rainbow (>= 2.2.2, < 4.0)
@@ -446,7 +446,7 @@ GEM
446
446
  rubocop-ast (>= 1.1.1)
447
447
  ruby-progressbar (~> 1.7)
448
448
  unicode-display_width (>= 1.4.0, < 2.0)
449
- rubocop-ast (1.1.1)
449
+ rubocop-ast (1.2.0)
450
450
  parser (>= 2.7.1.5)
451
451
  rubocop-rails (2.8.1)
452
452
  activesupport (>= 4.2.0)
@@ -590,7 +590,7 @@ DEPENDENCIES
590
590
  neatjson
591
591
  newrelic_rpm
592
592
  nexmo-oas-renderer (~> 2.4.1)
593
- nexmo_markdown_renderer (~> 0.6)
593
+ nexmo_markdown_renderer (~> 0.7)
594
594
  nokogiri (~> 1.10.9)
595
595
  octokit
596
596
  pg (~> 1.2)
@@ -605,7 +605,7 @@ DEPENDENCIES
605
605
  rspec-collection_matchers
606
606
  rspec-rails (~> 4.0)
607
607
  rspec-snapshot (~> 0.1.2)
608
- rubocop (~> 1.4.1)
608
+ rubocop (~> 1.4.2)
609
609
  rubocop-rails (~> 2.8)
610
610
  ruby-progressbar
611
611
  sassc-rails (~> 2.1)
@@ -1,5 +1,7 @@
1
1
  module Translator
2
2
  class FileTranslator
3
+ include Utils
4
+
3
5
  attr_reader :doc_path
4
6
 
5
7
  def initialize(doc_path)
@@ -12,41 +14,45 @@ module Translator
12
14
  Translator::TranslationRequest.new(
13
15
  locale: locale_with_region(locale),
14
16
  frequency: frequency,
15
- file_uri: doc_path
17
+ file_uri: uri,
18
+ file_path: full_path
16
19
  )
17
20
  end
18
21
  end
19
22
  end
20
23
 
24
+ def uri
25
+ @uri ||= file_uri(doc_path)
26
+ end
27
+
21
28
  def frontmatter
22
29
  @frontmatter ||= YAML.safe_load(File.read(full_path))
23
30
  end
24
31
 
25
32
  def full_path
26
- @full_path ||= "#{Rails.configuration.docs_base_path}/_documentation/en/#{doc_path}"
33
+ @full_path ||= "#{Rails.configuration.docs_base_path}/#{doc_path}"
27
34
  end
28
35
 
29
36
  def frequency
30
37
  @frequency ||= frontmatter['translation_frequency'] || product_translation_frequency
31
38
  end
32
39
 
33
- def locale_with_region(locale)
34
- case locale.to_s
35
- when 'ja', 'ja-JP'
36
- 'ja-JP'
37
- when 'cn', 'zh-CN'
38
- 'zh-CN'
39
- else
40
- locale.to_s
40
+ def product_from_path
41
+ @product_from_path ||= begin
42
+ Pathname.new(
43
+ doc_path.gsub(%r{(_documentation|_tutorials|_use_cases)/#{I18n.default_locale}/}, '')
44
+ ).dirname.to_s
41
45
  end
42
46
  end
43
47
 
44
48
  def product
45
49
  @product ||= begin
46
50
  products = YAML.safe_load(File.open("#{Rails.configuration.docs_base_path}/config/products.yml"))
47
- product = products['products'].detect { |p| doc_path.starts_with? p['path'] }
51
+ product = products['products'].detect do |p|
52
+ product_from_path.starts_with?(p['path']) || frontmatter['products']&.include?(p['path'])
53
+ end
48
54
 
49
- raise ArgumentError, 'Unable to match document with products list in config/products.yml' unless product
55
+ raise ArgumentError, "Unable to match document with products list in config/products.yml for #{full_path}" unless product
50
56
 
51
57
  product
52
58
  end
@@ -53,8 +53,10 @@ module Translator
53
53
  def file
54
54
  @file ||= begin
55
55
  file = Tempfile.new
56
- file.write Nexmo::Markdown::Pipelines::Smartling::Preprocessor.new.call(
57
- File.read("#{Rails.configuration.docs_base_path}/_documentation/#{I18n.default_locale}/#{@translation_request.file_uri}")
56
+ file.write(
57
+ Nexmo::Markdown::Pipelines::Smartling::Preprocessor.new.call(
58
+ File.read(@translation_request.file_path)
59
+ )
58
60
  )
59
61
  file.rewind
60
62
  file.close
@@ -1,11 +1,12 @@
1
1
  module Translator
2
2
  class TranslationRequest
3
- attr_reader :locale, :frequency, :file_uri
3
+ attr_reader :locale, :frequency, :file_uri, :file_path
4
4
 
5
- def initialize(locale:, frequency:, file_uri:)
5
+ def initialize(locale:, frequency:, file_uri:, file_path:)
6
6
  @locale = locale
7
7
  @frequency = frequency
8
8
  @file_uri = file_uri
9
+ @file_path = file_path
9
10
  end
10
11
  end
11
12
  end
@@ -11,12 +11,33 @@ module Translator
11
11
  end
12
12
  end
13
13
 
14
+ def locale_with_region(locale)
15
+ case locale.to_s
16
+ when 'ja', 'ja-JP'
17
+ 'ja-JP'
18
+ when 'cn', 'zh-CN'
19
+ 'zh-CN'
20
+ else
21
+ locale.to_s
22
+ end
23
+ end
24
+
14
25
  def storage_folder(filename, locale)
15
26
  if filename.starts_with? '_documentation'
16
27
  dir_path = Pathname.new(file_uri(filename)).dirname.to_s
17
28
  "#{Rails.configuration.docs_base_path}/_documentation/#{locale}/#{dir_path}"
29
+ elsif filename.starts_with? '_use_cases'
30
+ "#{Rails.configuration.docs_base_path}/_use_cases/#{locale}"
18
31
  elsif filename.starts_with? 'config/locales'
19
32
  Pathname.new(file_uri(filename)).dirname.to_s
33
+ elsif filename.starts_with? 'config/tutorials'
34
+ pathname = Pathname.new(filename.gsub("config/tutorials/#{I18n.default_locale}/", ''))
35
+ dir_path = pathname.dirname.to_s == '.' ? '' : "/#{pathname.dirname}"
36
+ "#{Rails.configuration.docs_base_path}/config/tutorials/#{locale}#{dir_path}"
37
+ elsif filename.starts_with? '_tutorials'
38
+ pathname = Pathname.new(filename.gsub("_tutorials/#{I18n.default_locale}/", ''))
39
+ dir_path = pathname.dirname.to_s == '.' ? '' : "/#{pathname.dirname}"
40
+ "#{Rails.configuration.docs_base_path}/_tutorials/#{locale}#{dir_path}"
20
41
  else
21
42
  dir_path = Pathname.new(file_uri(filename)).dirname.to_s
22
43
  "#{Rails.configuration.docs_base_path}/_documentation/#{locale}/#{dir_path}"
@@ -36,7 +57,13 @@ module Translator
36
57
  end
37
58
 
38
59
  def file_uri(filename)
39
- filename.gsub(%r{_documentation/[a-z]{2}/}, '')
60
+ if filename.starts_with? '_documentation'
61
+ filename.gsub(%r{_documentation/[a-z]{2}/}, '')
62
+ else
63
+ filename.gsub(%r{(_use_cases|_tutorials|config/tutorials)/#{I18n.default_locale}/(.*)}) do |_|
64
+ "#{$1}/#{$2}"
65
+ end
66
+ end
40
67
  end
41
68
  end
42
69
  end
@@ -51,7 +51,7 @@ namespace :smartling do
51
51
 
52
52
  desc 'Upload recently modified docs to Smartling for translation'
53
53
  task :upload, %i[paths frequency] => [:environment] do |_, args|
54
- # RAILS_ENV=production RAILS_LOG_TO_STDOUT=1 be nexmo-developer --docs=`pwd` --rake-smartling-upload 15 messages/test.md messages/external-accounts/overview.md
54
+ # RAILS_ENV=production RAILS_LOG_TO_STDOUT=1 be nexmo-developer --docs=`pwd` --rake-smartling-upload 15 _documentation/en/messages/test.md _documentation/en/messages/external-accounts/overview.md
55
55
  puts "Uploading files to Smartling with a translation frequency of #{args[:frequency]} days..."
56
56
  puts args[:paths].join("\n")
57
57
 
@@ -1,3 +1,3 @@
1
1
  module NexmoDeveloper
2
- VERSION = '0.0.101'.freeze
2
+ VERSION = '0.0.102'.freeze
3
3
  end
@@ -15,7 +15,7 @@
15
15
  "@rails/ujs": "^6.0.3-4",
16
16
  "@rails/webpacker": "^5.2.1",
17
17
  "@vonagevolta/volta2": "^0.0.56",
18
- "algoliasearch": "^4.8.0",
18
+ "algoliasearch": "^4.8.1",
19
19
  "autoprefixer": "^9.8.6",
20
20
  "babel-loader": "^8.2.1",
21
21
  "babel-preset-babili": "^0.1.4",
@@ -40,7 +40,7 @@ Gem::Specification.new do |spec|
40
40
  spec.add_runtime_dependency('rails', '~> 6.0')
41
41
  spec.add_runtime_dependency('bootsnap', '~> 1.4')
42
42
  spec.add_runtime_dependency('nexmo-oas-renderer', '~> 2.4')
43
- spec.add_runtime_dependency('nexmo_markdown_renderer', '~> 0.6')
43
+ spec.add_runtime_dependency('nexmo_markdown_renderer', '~> 0.7')
44
44
  spec.add_runtime_dependency('activesupport', '~> 6.0')
45
45
  spec.add_runtime_dependency('bugsnag', '~> 6.13')
46
46
  spec.add_runtime_dependency('railties', '~> 6.0')
data/yarn.lock CHANGED
@@ -2,109 +2,109 @@
2
2
  # yarn lockfile v1
3
3
 
4
4
 
5
- "@algolia/cache-browser-local-storage@4.8.0":
6
- version "4.8.0"
7
- resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.8.0.tgz#42137b8e18474e8a94bd7206d7e4ada2daf5da04"
8
- integrity sha512-VnI25yr+3LfCnHdp4YWWjdjtTseY3/hFwhp9vXBZLq+ZCbGpDiRjCNP9ZXLJELrtugk5tn2DpBGN2LWF4ZpKLg==
9
- dependencies:
10
- "@algolia/cache-common" "4.8.0"
11
-
12
- "@algolia/cache-common@4.8.0":
13
- version "4.8.0"
14
- resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.8.0.tgz#fd57e4bfb75c93ae82c1cf047fa81511d720cfd9"
15
- integrity sha512-68WmVpHOFerjDh7AqUZdGdZF/wR1kEmDv1o32Gcty00BIfHLAo8YuA7ijoTPhJh4fGWwR2gYIybO/WOmFhwK5Q==
16
-
17
- "@algolia/cache-in-memory@4.8.0":
18
- version "4.8.0"
19
- resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.8.0.tgz#7716ec2dd797f890e69fb48e44add5ae1faa1ad3"
20
- integrity sha512-m1uYLns8+PzlTy8xeXkM+p2sjFCJahYnrPj0s8ymU1bHgQC5qGp7rEz7o7zxElGYBeJ+f8tNiXrsnCnutASfNg==
21
- dependencies:
22
- "@algolia/cache-common" "4.8.0"
23
-
24
- "@algolia/client-account@4.8.0":
25
- version "4.8.0"
26
- resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.8.0.tgz#0b88d04a1733fc48b813db4e1d7a8226062ae79b"
27
- integrity sha512-xNMfm7UPuPQpKtd5a2NB8j5LGockB4vsx+/0O9ZbboMKbDeucWa44CpXx7p0vPXW4SUgifCu7AFN//qXxIyxXg==
28
- dependencies:
29
- "@algolia/client-common" "4.8.0"
30
- "@algolia/client-search" "4.8.0"
31
- "@algolia/transporter" "4.8.0"
32
-
33
- "@algolia/client-analytics@4.8.0":
34
- version "4.8.0"
35
- resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.8.0.tgz#3bd928f20e20c15feb0cb3741ac581bfb8aecd51"
36
- integrity sha512-Zq+yjvN03E7sDvLer9NvGfab9WplckRCGjnyDcdk11rF1Bhht8adtbfyaO78Ftl2SujkvBMsnTF8THVf0Ewplg==
37
- dependencies:
38
- "@algolia/client-common" "4.8.0"
39
- "@algolia/client-search" "4.8.0"
40
- "@algolia/requester-common" "4.8.0"
41
- "@algolia/transporter" "4.8.0"
42
-
43
- "@algolia/client-common@4.8.0":
44
- version "4.8.0"
45
- resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.8.0.tgz#3c3fcfa135fae2813d2be13e23282714cc306b98"
46
- integrity sha512-tjth4GICsY/V3gFtzebH7fS9V9/dlLdKpMgjbrNeIDo+rB3vJtBYwguhUrVLl2x2H0Hu5ffN26VclXRHFpwslg==
47
- dependencies:
48
- "@algolia/requester-common" "4.8.0"
49
- "@algolia/transporter" "4.8.0"
50
-
51
- "@algolia/client-recommendation@4.8.0":
52
- version "4.8.0"
53
- resolved "https://registry.yarnpkg.com/@algolia/client-recommendation/-/client-recommendation-4.8.0.tgz#fbe6d49ad9a87ee0ffdd79491e1332a1711ebbd2"
54
- integrity sha512-HdKBNRYVrFhyX3oPZg+LT1peO7tMawFYtiMHGoHFyR0PHfqMIw305NAErV+jGo3WmLJuyt4ywNrTtQnwFd+YYw==
55
- dependencies:
56
- "@algolia/client-common" "4.8.0"
57
- "@algolia/requester-common" "4.8.0"
58
- "@algolia/transporter" "4.8.0"
59
-
60
- "@algolia/client-search@4.8.0":
61
- version "4.8.0"
62
- resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.8.0.tgz#be9021adcb958f9e5478159e38f741b98e88f8ca"
63
- integrity sha512-emfW9q/uqO4FmB7vLipLk+O/m4BKsAZ7Yaaamawv35kw1HqfBdJZZbIUcg5aGz45SIUdA36WIuT7JiRdrCfxBA==
64
- dependencies:
65
- "@algolia/client-common" "4.8.0"
66
- "@algolia/requester-common" "4.8.0"
67
- "@algolia/transporter" "4.8.0"
68
-
69
- "@algolia/logger-common@4.8.0":
70
- version "4.8.0"
71
- resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.8.0.tgz#ef5541a39bc13cf2a8b024f8f3dc6e35b08bbffe"
72
- integrity sha512-6kewiORcU2a56hJOo5+Q91SF2ynk5H89jmfnNsveHdl3PPaOKJSsb9tqIErOZyv911zeeK6bVTCHllYeeJkxsg==
73
-
74
- "@algolia/logger-console@4.8.0":
75
- version "4.8.0"
76
- resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.8.0.tgz#4c2dd4c66788f7e47b91fe027c129f20c3006146"
77
- integrity sha512-K1E/ppSHo5+215tj2G2N4LNjQLYjh6NfRDlAD30x9M6BbTSDI8tf12CgiPBe6wmdj8IQLzA2+5od8MSZKBpUMA==
78
- dependencies:
79
- "@algolia/logger-common" "4.8.0"
80
-
81
- "@algolia/requester-browser-xhr@4.8.0":
82
- version "4.8.0"
83
- resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.8.0.tgz#30c59783ea865504aa843eb6ba49daf92bbfb6d1"
84
- integrity sha512-BCKwuGQX+HujFeTpJdA9VwSFyjvmyz1wYdoYcCxgROWrM8QRCxxFvGUKCCjvkRf1vuqz/6xoSTsysZyKFkcjTA==
85
- dependencies:
86
- "@algolia/requester-common" "4.8.0"
87
-
88
- "@algolia/requester-common@4.8.0":
89
- version "4.8.0"
90
- resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.8.0.tgz#515d46294ec14a982ea75ac9ce97e20566c1c576"
91
- integrity sha512-JKjlHPZU43rTcyvANHh5ctYRNXIZea2g5A33YPlrCXFJb3BBqS/H0ssFNyEwp8SJxJR3uUHl3m6DJpvuA7RtHg==
92
-
93
- "@algolia/requester-node-http@4.8.0":
94
- version "4.8.0"
95
- resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.8.0.tgz#7bf308a91f7b1854df91c5855fa9313949a70607"
96
- integrity sha512-OSX00OXT/SWTmVwi7bkfSoGJdo9zwUHb1o0j71WbIdt8NH1KVZdC1mFfyRPp5mN2pi02brm3tv9NGNCeaLgLvQ==
97
- dependencies:
98
- "@algolia/requester-common" "4.8.0"
99
-
100
- "@algolia/transporter@4.8.0":
101
- version "4.8.0"
102
- resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.8.0.tgz#4ddf9db11c946ddbbd640ad3bced38147734a24a"
103
- integrity sha512-fYYXUMQ5avvW1a1vLdQX8qRiPxUv3C1+DAw0nWDqfhHAesQtgwsibRmuQV9XVs3hpmRwiZbavzD+dXbhkY/XCQ==
104
- dependencies:
105
- "@algolia/cache-common" "4.8.0"
106
- "@algolia/logger-common" "4.8.0"
107
- "@algolia/requester-common" "4.8.0"
5
+ "@algolia/cache-browser-local-storage@4.8.1":
6
+ version "4.8.1"
7
+ resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.8.1.tgz#1c0230f6f174a37bb22549ec502cad2dc6973c35"
8
+ integrity sha512-qqudBJE2BzpiO11CbWDbxLual75qiP6lEjHW1zlG2P6jO/NkCnVMsOhPgu2eiJx7lTJ3vhkn981g87qZre8KSg==
9
+ dependencies:
10
+ "@algolia/cache-common" "4.8.1"
11
+
12
+ "@algolia/cache-common@4.8.1":
13
+ version "4.8.1"
14
+ resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.8.1.tgz#19c76300d0e75550c4dd88fa1d12b06a75cc290f"
15
+ integrity sha512-5bJ3KX0trQfNXFzEgDx7IHUcLdrjIvs/6g5fxGMRr0eWJj6x1tSmbIJBff4pdQw7oWZvO1kueWrWD1v0dV9b/Q==
16
+
17
+ "@algolia/cache-in-memory@4.8.1":
18
+ version "4.8.1"
19
+ resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.8.1.tgz#c84a72e75cf614dc75c2ccf0a993c382d3153862"
20
+ integrity sha512-4EEUi+DHsMKfZ38AYovXVS09oLTLSQlssw1PTswJEx7wuKCAzctWSBfB116+b1eAw8mp6EmiTJw8D2qFhr70oQ==
21
+ dependencies:
22
+ "@algolia/cache-common" "4.8.1"
23
+
24
+ "@algolia/client-account@4.8.1":
25
+ version "4.8.1"
26
+ resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.8.1.tgz#7c75a5151860a592abfe720610babd0652b5d822"
27
+ integrity sha512-zfQSb9EYzZrOsUqsekKJYuizpQVLiq1D0B81KC8V0PjhjtQc13UrAJx68XP3fkNBe7V9K6H3dIRPOaK5XVHYOg==
28
+ dependencies:
29
+ "@algolia/client-common" "4.8.1"
30
+ "@algolia/client-search" "4.8.1"
31
+ "@algolia/transporter" "4.8.1"
32
+
33
+ "@algolia/client-analytics@4.8.1":
34
+ version "4.8.1"
35
+ resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.8.1.tgz#330c2e001f758fe750820366092ea6f407d6ca9f"
36
+ integrity sha512-QF6I7MCV9jI8dawi8W/tA/R5EyE+4uKc74tqLTrm6WoUdlwExaTuKgSjsqZtSjRileIDw5TuuJhSGCpgBktDOg==
37
+ dependencies:
38
+ "@algolia/client-common" "4.8.1"
39
+ "@algolia/client-search" "4.8.1"
40
+ "@algolia/requester-common" "4.8.1"
41
+ "@algolia/transporter" "4.8.1"
42
+
43
+ "@algolia/client-common@4.8.1":
44
+ version "4.8.1"
45
+ resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.8.1.tgz#a0527d8ac76b41605f3fd6370d9cf1390ea98e10"
46
+ integrity sha512-iAVBzNUFyUYqX6yyWN3AsxB+sF2g+lWguXmdMaSDAym4XMRAT6cvd3xUKBloHafzm2zWR69XHm/qxUuqJbFnxQ==
47
+ dependencies:
48
+ "@algolia/requester-common" "4.8.1"
49
+ "@algolia/transporter" "4.8.1"
50
+
51
+ "@algolia/client-recommendation@4.8.1":
52
+ version "4.8.1"
53
+ resolved "https://registry.yarnpkg.com/@algolia/client-recommendation/-/client-recommendation-4.8.1.tgz#ce0577f53eaa0877a40e4f14789714a32d199a50"
54
+ integrity sha512-WiI86PtQKjU+pmIqlzyJ5skOqfZy6PTc7s6XPgPmVd+XfQxRweXxiejbBG0aQlVcZbN2eetNMmI2vawf1cTDWg==
55
+ dependencies:
56
+ "@algolia/client-common" "4.8.1"
57
+ "@algolia/requester-common" "4.8.1"
58
+ "@algolia/transporter" "4.8.1"
59
+
60
+ "@algolia/client-search@4.8.1":
61
+ version "4.8.1"
62
+ resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.8.1.tgz#62326038d9d128f8bc87857c514ce7dea91f73b1"
63
+ integrity sha512-EAeTq5iqpoEPQmi25La1zM5hxvE04hnZzutlUq+5flhrmjwV75z6xNjqNBlDVhPwH545Xg2jcccXQjjNzLHj7A==
64
+ dependencies:
65
+ "@algolia/client-common" "4.8.1"
66
+ "@algolia/requester-common" "4.8.1"
67
+ "@algolia/transporter" "4.8.1"
68
+
69
+ "@algolia/logger-common@4.8.1":
70
+ version "4.8.1"
71
+ resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.8.1.tgz#46accd128bc5179385c437085a02e0d9c5e721ae"
72
+ integrity sha512-ENX/9LuroGxLCjPbvuO6yKPoFNkSXFO0LhWHeR/JQY0gdTHhHgj2A2nXT4Qt0PxFGE9XNhXlJ3YYVxtWEG8rww==
73
+
74
+ "@algolia/logger-console@4.8.1":
75
+ version "4.8.1"
76
+ resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.8.1.tgz#a0b42f0cab7a33e5cd09ff8a0e6da1d197c2a7aa"
77
+ integrity sha512-pFxNb9aOvUsyS+RxHJgMvnTCzt6ewqi0nsICDCCXQ/Lz1VrRFbrfmXcfxD46nQ0W8o8/7esXzaVdjGUKmEmq0Q==
78
+ dependencies:
79
+ "@algolia/logger-common" "4.8.1"
80
+
81
+ "@algolia/requester-browser-xhr@4.8.1":
82
+ version "4.8.1"
83
+ resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.8.1.tgz#02ceb6548957d347c73a6eb8c8292750136bb88a"
84
+ integrity sha512-N0+0UONv1FYMTaZR/a6wl43MUrGFYpAvsqlVgCN8/CFhuG4LFBUXhZQudL8wq9GfMoUENJ6P9spCUk2EcE5mKQ==
85
+ dependencies:
86
+ "@algolia/requester-common" "4.8.1"
87
+
88
+ "@algolia/requester-common@4.8.1":
89
+ version "4.8.1"
90
+ resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.8.1.tgz#8d0990aed68d785433e40cd389c8a87701543f43"
91
+ integrity sha512-ZtG4g4pxPbN2qI8E7ChOthuntZGIauQegzXyqYfRAAlIZ+lkTTc8KPmUDREFhkT9znCKoPD43w0j8YogSVo/4A==
92
+
93
+ "@algolia/requester-node-http@4.8.1":
94
+ version "4.8.1"
95
+ resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.8.1.tgz#23702832093e769a7837107bf96200fba9d77be3"
96
+ integrity sha512-OyryP9UBcIqD9B9C6TfkjeNbd8G/MCxuaBaK3QfbjP/J7EUVeMBFPs0jo52jTKlm8l4cgRIHCDxa1ctgfhE1Xg==
97
+ dependencies:
98
+ "@algolia/requester-common" "4.8.1"
99
+
100
+ "@algolia/transporter@4.8.1":
101
+ version "4.8.1"
102
+ resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.8.1.tgz#a80d41ae4f4b0e9f2606f4c20cef9aa4183cb59b"
103
+ integrity sha512-JNO0Bs9vmQmrM54daORAFdmA05QFV7IQNoLS7ucbtEKexJAwmxb/mOB+sAH6Ju3V8vGPPvvn9jcgu9fwIkyX3Q==
104
+ dependencies:
105
+ "@algolia/cache-common" "4.8.1"
106
+ "@algolia/logger-common" "4.8.1"
107
+ "@algolia/requester-common" "4.8.1"
108
108
 
109
109
  "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4":
110
110
  version "7.10.4"
@@ -2060,25 +2060,25 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5:
2060
2060
  json-schema-traverse "^0.4.1"
2061
2061
  uri-js "^4.2.2"
2062
2062
 
2063
- algoliasearch@^4.8.0:
2064
- version "4.8.0"
2065
- resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.8.0.tgz#12bb88b4093b05a5afdc369d3e8b83036d5f4822"
2066
- integrity sha512-y2PisBS5323otDtuZuUJavk6AATBiq7M/lDryClRigpU3dHGGamtoN/8dDD4/giw38QV7dfw2LwogU6Xb4txmQ==
2067
- dependencies:
2068
- "@algolia/cache-browser-local-storage" "4.8.0"
2069
- "@algolia/cache-common" "4.8.0"
2070
- "@algolia/cache-in-memory" "4.8.0"
2071
- "@algolia/client-account" "4.8.0"
2072
- "@algolia/client-analytics" "4.8.0"
2073
- "@algolia/client-common" "4.8.0"
2074
- "@algolia/client-recommendation" "4.8.0"
2075
- "@algolia/client-search" "4.8.0"
2076
- "@algolia/logger-common" "4.8.0"
2077
- "@algolia/logger-console" "4.8.0"
2078
- "@algolia/requester-browser-xhr" "4.8.0"
2079
- "@algolia/requester-common" "4.8.0"
2080
- "@algolia/requester-node-http" "4.8.0"
2081
- "@algolia/transporter" "4.8.0"
2063
+ algoliasearch@^4.8.1:
2064
+ version "4.8.1"
2065
+ resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.8.1.tgz#ccaa1674459f2266cdc565a041bc59bd41218638"
2066
+ integrity sha512-rK0VQiOC/9DFD6cwAZIl1dq8SrmtSLVmrz9rk2IQ0/jpTKVAE7xstOaml3nvxjBZWcFQsS4+P2qtzsg6NaLaWw==
2067
+ dependencies:
2068
+ "@algolia/cache-browser-local-storage" "4.8.1"
2069
+ "@algolia/cache-common" "4.8.1"
2070
+ "@algolia/cache-in-memory" "4.8.1"
2071
+ "@algolia/client-account" "4.8.1"
2072
+ "@algolia/client-analytics" "4.8.1"
2073
+ "@algolia/client-common" "4.8.1"
2074
+ "@algolia/client-recommendation" "4.8.1"
2075
+ "@algolia/client-search" "4.8.1"
2076
+ "@algolia/logger-common" "4.8.1"
2077
+ "@algolia/logger-console" "4.8.1"
2078
+ "@algolia/requester-browser-xhr" "4.8.1"
2079
+ "@algolia/requester-common" "4.8.1"
2080
+ "@algolia/requester-node-http" "4.8.1"
2081
+ "@algolia/transporter" "4.8.1"
2082
2082
 
2083
2083
  alphanum-sort@^1.0.0:
2084
2084
  version "1.0.2"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: station
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.101
4
+ version: 0.0.102
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vonage DevRel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-25 00:00:00.000000000 Z
11
+ date: 2020-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeadmin
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '0.6'
75
+ version: '0.7'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '0.6'
82
+ version: '0.7'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: activesupport
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -773,7 +773,7 @@ files:
773
773
  - "./lib/nexmo_developer/public/android-chrome-512x512.png"
774
774
  - "./lib/nexmo_developer/public/apple-touch-icon-precomposed.png"
775
775
  - "./lib/nexmo_developer/public/apple-touch-icon.png"
776
- - "./lib/nexmo_developer/public/assets/.sprockets-manifest-0244d058716cbc2e9f5325359baed6d6.json"
776
+ - "./lib/nexmo_developer/public/assets/.sprockets-manifest-a1157ac284c85fb4881fb292a62668f8.json"
777
777
  - "./lib/nexmo_developer/public/assets/active_admin-53c26e5835e5681ba87c5a1593ec718b9e96afe3347ff17066bbe79bea62a7d6.css"
778
778
  - "./lib/nexmo_developer/public/assets/active_admin-53c26e5835e5681ba87c5a1593ec718b9e96afe3347ff17066bbe79bea62a7d6.css.gz"
779
779
  - "./lib/nexmo_developer/public/assets/active_admin-9565b1736f29aa1460496db7d732a6af656d6b680f42629ca551b3d57219baf1.js"
@@ -928,13 +928,13 @@ files:
928
928
  - "./lib/nexmo_developer/public/packs/js/runtime~application-6a014284b1b5bfd5675d.js.map"
929
929
  - "./lib/nexmo_developer/public/packs/js/runtime~application-6a014284b1b5bfd5675d.js.map.br"
930
930
  - "./lib/nexmo_developer/public/packs/js/runtime~application-6a014284b1b5bfd5675d.js.map.gz"
931
- - "./lib/nexmo_developer/public/packs/js/vendors~application-e976535cdb1a54f160c1.chunk.js"
932
- - "./lib/nexmo_developer/public/packs/js/vendors~application-e976535cdb1a54f160c1.chunk.js.LICENSE.txt"
933
- - "./lib/nexmo_developer/public/packs/js/vendors~application-e976535cdb1a54f160c1.chunk.js.br"
934
- - "./lib/nexmo_developer/public/packs/js/vendors~application-e976535cdb1a54f160c1.chunk.js.gz"
935
- - "./lib/nexmo_developer/public/packs/js/vendors~application-e976535cdb1a54f160c1.chunk.js.map"
936
- - "./lib/nexmo_developer/public/packs/js/vendors~application-e976535cdb1a54f160c1.chunk.js.map.br"
937
- - "./lib/nexmo_developer/public/packs/js/vendors~application-e976535cdb1a54f160c1.chunk.js.map.gz"
931
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js"
932
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.LICENSE.txt"
933
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.br"
934
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.gz"
935
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.map"
936
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.map.br"
937
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.map.gz"
938
938
  - "./lib/nexmo_developer/public/packs/manifest.json"
939
939
  - "./lib/nexmo_developer/public/packs/manifest.json.br"
940
940
  - "./lib/nexmo_developer/public/packs/manifest.json.gz"