station 0.0.96 → 0.0.97

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: 0a6afa3f7d7c40dc3822c7a5fab7c29a04ebb8f681055a4718a453fd0eea5ee5
4
- data.tar.gz: 7b46e9ddd4841aae9a87637a2686757d71fb0c07ed2d3c502803785ac4702d8a
3
+ metadata.gz: 8ec14988c40b629659856dfd94223e89e9397f5516908dcdc6f0228042b252d0
4
+ data.tar.gz: 45e455cd1a02e1e617f5cb45b1250813abe2ba9ba42b80ab20e7dc65df5ca70e
5
5
  SHA512:
6
- metadata.gz: 5f20dba8010c8b024bcec15521b467a54635b4b3966182b29c995581db099fc70b448b439b8f1330df30886a16466e3711ff86e2db294f6b0b7257d7b7811f9e
7
- data.tar.gz: c4b374a0246a0f932586e2d61ba1fc0c45c50427d04a76d7e9d4b10efc81454cdafb9f0eb90860f7b2e0fff196416d19bb7c72f66352102ef95c26f0d8e00202
6
+ metadata.gz: 174f223da92039d868ba3a4b980f97f2e592060509771d313d00ca53e1f897cd87ad7db44a375a4cd736b6d625aa2d9de38be5dee88e4e528535bd5df469c628
7
+ data.tar.gz: 3caf4c0a9b9f5ff90e956ff3a9fd48b0a7adda24f9883cc9b70a4d5f43170ea80a5f1316ce28181ba03eebe3f3a84f898f8336d791bf1a85b46d9d89dcc984a8
@@ -271,3 +271,6 @@ Rails/SquishedSQLHeredocs:
271
271
 
272
272
  Rails/WhereNot:
273
273
  Enabled: true
274
+
275
+ Lint/DuplicateBranch:
276
+ Enabled: false
@@ -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.2.0', require: false
113
+ gem 'rubocop', '~> 1.3.0', require: false
114
114
  gem 'rubocop-rails', '~> 2.8', require: false
115
115
 
116
116
  # Volta needs a CSS autoprefixer
@@ -258,7 +258,7 @@ GEM
258
258
  activerecord
259
259
  kaminari-core (= 1.2.1)
260
260
  kaminari-core (1.2.1)
261
- listen (3.3.0)
261
+ listen (3.3.1)
262
262
  rb-fsevent (~> 0.10, >= 0.10.3)
263
263
  rb-inotify (~> 0.9, >= 0.9.10)
264
264
  lograge (0.11.2)
@@ -340,7 +340,7 @@ GEM
340
340
  sawyer (~> 0.8.0, >= 0.5.3)
341
341
  oj (3.10.15)
342
342
  orm_adapter (0.5.0)
343
- parallel (1.19.2)
343
+ parallel (1.20.0)
344
344
  parser (2.7.2.0)
345
345
  ast (~> 2.4.1)
346
346
  pg (1.2.3)
@@ -437,13 +437,13 @@ GEM
437
437
  rspec-snapshot (0.1.2)
438
438
  rspec (> 3.0.0)
439
439
  rspec-support (3.10.0)
440
- rubocop (1.2.0)
440
+ rubocop (1.3.0)
441
441
  parallel (~> 1.10)
442
442
  parser (>= 2.7.1.5)
443
443
  rainbow (>= 2.2.2, < 4.0)
444
444
  regexp_parser (>= 1.8)
445
445
  rexml
446
- rubocop-ast (>= 1.0.1)
446
+ rubocop-ast (>= 1.1.1)
447
447
  ruby-progressbar (~> 1.7)
448
448
  unicode-display_width (>= 1.4.0, < 2.0)
449
449
  rubocop-ast (1.1.1)
@@ -529,7 +529,7 @@ GEM
529
529
  activemodel (>= 6.0.0)
530
530
  bindex (>= 0.4.0)
531
531
  railties (>= 6.0.0)
532
- webmock (3.9.5)
532
+ webmock (3.10.0)
533
533
  addressable (>= 2.3.6)
534
534
  crack (>= 0.3.2)
535
535
  hashdiff (>= 0.4.0, < 2.0.0)
@@ -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.2.0)
608
+ rubocop (~> 1.3.0)
609
609
  rubocop-rails (~> 2.8)
610
610
  ruby-progressbar
611
611
  sassc-rails (~> 2.1)
@@ -5,7 +5,7 @@
5
5
  # directories %w(app lib config test spec features) \
6
6
  # .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
7
7
 
8
- ## Note: if you are using the `directories` clause above and you are not
8
+ ## NOTE: if you are using the `directories` clause above and you are not
9
9
  ## watching the project directory ('.'), then you will want to move
10
10
  ## the Guardfile to a watched dir and symlink it back, e.g.
11
11
  #
@@ -54,7 +54,7 @@ guard 'livereload' do
54
54
  watch(%r{config/locales/.+\.yml})
55
55
  end
56
56
 
57
- # Note: The cmd option is now required due to the increasing number of ways
57
+ # NOTE: The cmd option is now required due to the increasing number of ways
58
58
  # rspec may be run, below are examples of the most common uses.
59
59
  # * bundler: 'bundle exec rspec'
60
60
  # * bundler binstubs: 'bin/rspec'
@@ -163,4 +163,5 @@
163
163
 
164
164
  .oas-page .Nxd-header {
165
165
  position: static;
166
+ flex-shrink: 0;
166
167
  }
@@ -1,3 +1,3 @@
1
1
  module NexmoDeveloper
2
- VERSION = '0.0.96'.freeze
2
+ VERSION = '0.0.97'.freeze
3
3
  end
@@ -21,7 +21,7 @@
21
21
  "babel-preset-babili": "^0.1.4",
22
22
  "coffee-loader": "^1.0.1",
23
23
  "coffee-script": "^1.12.7",
24
- "compression-webpack-plugin": "^6.1.0",
24
+ "compression-webpack-plugin": "^6.1.1",
25
25
  "css-loader": "^5.0.1",
26
26
  "dotenv": "^8.2.0",
27
27
  "file-loader": "^6.2.0",
@@ -55,7 +55,7 @@
55
55
  "vue-template-compiler": "^2.6.12",
56
56
  "webpack": "^4.44.2",
57
57
  "webpack-manifest-plugin": "^2.2.0",
58
- "webpack-merge": "^5.3.0",
58
+ "webpack-merge": "^5.4.0",
59
59
  "webpacker": "^4",
60
60
  "websocket-extensions": "^0.1.4",
61
61
  "whatwg-fetch": "^3.5.0"
@@ -88,7 +88,7 @@ Gem::Specification.new do |spec|
88
88
  spec.add_runtime_dependency('newrelic_rpm', '6.13.1')
89
89
  spec.add_runtime_dependency('redis', '4.2.2')
90
90
 
91
- spec.add_development_dependency('rubocop', '~> 1.2.0')
91
+ spec.add_development_dependency('rubocop', '~> 1.3.0')
92
92
  spec.add_development_dependency('rubocop-rails', '~> 2.6')
93
93
 
94
94
  spec.metadata = {
data/yarn.lock CHANGED
@@ -3804,10 +3804,10 @@ compression-webpack-plugin@^4.0.0:
3804
3804
  serialize-javascript "^4.0.0"
3805
3805
  webpack-sources "^1.4.3"
3806
3806
 
3807
- compression-webpack-plugin@^6.1.0:
3808
- version "6.1.0"
3809
- resolved "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-6.1.0.tgz#ef88a4c35e240aa14bec6cccc0582ed47e148605"
3810
- integrity sha512-RK/bBW3JwQpb7tH91trro7ulNa0ynSTPxQO48rn/oS1Y2nGUYuX6CWIOqbhUF2+b+2clqJeDGIYYckvg6WKabA==
3807
+ compression-webpack-plugin@^6.1.1:
3808
+ version "6.1.1"
3809
+ resolved "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-6.1.1.tgz#ae8e4b2ffdb7396bb776e66918d751a20d8ccf0e"
3810
+ integrity sha512-BEHft9M6lwOqVIQFMS/YJGmeCYXVOakC5KzQk05TFpMBlODByh1qNsZCWjUBxCQhUP9x0WfGidxTbGkjbWO/TQ==
3811
3811
  dependencies:
3812
3812
  cacache "^15.0.5"
3813
3813
  find-cache-dir "^3.3.1"
@@ -13497,10 +13497,10 @@ webpack-manifest-plugin@^2.2.0:
13497
13497
  object.entries "^1.1.0"
13498
13498
  tapable "^1.0.0"
13499
13499
 
13500
- webpack-merge@^5.3.0:
13501
- version "5.3.0"
13502
- resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.3.0.tgz#a80df44d35fabace680bf430a19fda9ec49ed8eb"
13503
- integrity sha512-4PtsBAWnmJULIJYviiPq4BxwAykbAgGMheyEVaemj2bJI54h+p/gnlbXZEH2EM0IYC3blOE1Qm6kzKlc06N1UQ==
13500
+ webpack-merge@^5.4.0:
13501
+ version "5.4.0"
13502
+ resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.4.0.tgz#81bef0a7d23fc1e6c24b06ad8bf22ddeb533a3a3"
13503
+ integrity sha512-/scBgu8LVPlHDgqH95Aw1xS+L+PHrpHKOwYVGFaNOQl4Q4wwwWDarwB1WdZAbLQ24SKhY3Awe7VZGYAdp+N+gQ==
13504
13504
  dependencies:
13505
13505
  clone-deep "^4.0.1"
13506
13506
  wildcard "^2.0.0"
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.96
4
+ version: 0.0.97
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-12 00:00:00.000000000 Z
11
+ date: 2020-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeadmin
@@ -736,14 +736,14 @@ dependencies:
736
736
  requirements:
737
737
  - - "~>"
738
738
  - !ruby/object:Gem::Version
739
- version: 1.2.0
739
+ version: 1.3.0
740
740
  type: :development
741
741
  prerelease: false
742
742
  version_requirements: !ruby/object:Gem::Requirement
743
743
  requirements:
744
744
  - - "~>"
745
745
  - !ruby/object:Gem::Version
746
- version: 1.2.0
746
+ version: 1.3.0
747
747
  - !ruby/object:Gem::Dependency
748
748
  name: rubocop-rails
749
749
  requirement: !ruby/object:Gem::Requirement