station 0.0.93 → 0.0.95

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: 6afd924d4cffe55394126dd3860edc66bd5ea1c3cb8f11391db094c3d5f88218
4
- data.tar.gz: 455ed9a2fea84dafc95fcf8f4fba3db64bb0b554326608b9c8b5506cdccaf5aa
3
+ metadata.gz: 520397b9e9df2b23552ddacfa1db890c4e64e2d529139da92b27fb69e831127e
4
+ data.tar.gz: 359d5422ca1cf98cad2fdd7a6cf4ed20b545c9da4456db451d91445079cca258
5
5
  SHA512:
6
- metadata.gz: 00c95fa2ee3520828c74b81d39729d94074a4f80c54a1aa54992a6f8d7332c2fc776c311d8eced8e08b9090106bec63195c6b53a11474799bc9f8d0a1f3bf56a
7
- data.tar.gz: 488cfab84f13a23c7bfb394746da85e5929530870dbf0538b928107ba96076a74337a339179af8152ab52c860eea7cf60df2f0353dc226da2cd1eda5305334fa
6
+ metadata.gz: 72292c8918fa473782a711990aa5964f29824fe81a0372db5cf7fec53515f1edc153fcd40cf54e3e774eefca1a46ea283f633086f05ce71e96dc0ad5f408fb06
7
+ data.tar.gz: '04206032797fa2819f545cf74a5f72b2761da4fd419cba0afa8c588745786332ed87ab76328d524ab75853d5af9bb1c35771805b53a0650d7fb4421c7a079bff'
@@ -0,0 +1,7 @@
1
+ module.exports = {
2
+ resolve: {
3
+ alias: {
4
+ vue: 'vue/dist/vue.js',
5
+ }
6
+ }
7
+ }
@@ -3,11 +3,15 @@ const { environment } = require('@rails/webpacker')
3
3
  const { VueLoaderPlugin } = require('vue-loader')
4
4
  const vue = require('./loaders/vue')
5
5
  const ManifestPlugin = require('webpack-manifest-plugin')
6
+ const customConfig = require('./custom')
6
7
 
7
8
  const babelLoader = environment.loaders.get('babel')
8
9
  babelLoader.exclude = []
9
10
  environment.splitChunks()
10
11
 
12
+ // Merge custom config
13
+ environment.config.merge(customConfig)
14
+
11
15
  environment.plugins.prepend('VueLoaderPlugin', new VueLoaderPlugin())
12
16
  environment.loaders.prepend('vue', vue)
13
17
 
@@ -1,3 +1,3 @@
1
1
  module NexmoDeveloper
2
- VERSION = '0.0.93'.freeze
2
+ VERSION = '0.0.95'.freeze
3
3
  end
@@ -5,11 +5,11 @@ require_relative "lib/nexmo_developer/version"
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "station"
7
7
  spec.version = NexmoDeveloper::VERSION
8
- spec.authors = ["Nexmo DevRel"]
9
- spec.email = ["devrel@nexmo.com"]
8
+ spec.authors = ["Vonage DevRel"]
9
+ spec.email = ["devrel@vonage.com"]
10
10
  spec.executables << 'nexmo-developer'
11
11
 
12
- spec.summary = %q{Nexmo Developer Platform}
12
+ spec.summary = %q{Station provides a documentation platform ready to use with your custom documentation.}
13
13
  spec.homepage = "https://github.com/Nexmo/station"
14
14
  spec.license = "MIT"
15
15
 
@@ -90,4 +90,11 @@ Gem::Specification.new do |spec|
90
90
 
91
91
  spec.add_development_dependency('rubocop', '~> 1.2.0')
92
92
  spec.add_development_dependency('rubocop-rails', '~> 2.6')
93
+
94
+ spec.metadata = {
95
+ 'homepage' => 'https://github.com/Nexmo/station',
96
+ 'source_code_uri' => 'https://github.com/Nexmo/station',
97
+ 'bug_tracker_uri' => 'https://github.com/Nexmo/station/issues',
98
+ 'documentation_uri' => 'https://nexmo.github.io/station/'
99
+ }
93
100
  end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: station
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.93
4
+ version: 0.0.95
5
5
  platform: ruby
6
6
  authors:
7
- - Nexmo DevRel
7
+ - Vonage DevRel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
@@ -760,7 +760,7 @@ dependencies:
760
760
  version: '2.6'
761
761
  description:
762
762
  email:
763
- - devrel@nexmo.com
763
+ - devrel@vonage.com
764
764
  executables:
765
765
  - nexmo-developer
766
766
  extensions: []
@@ -1677,6 +1677,7 @@ files:
1677
1677
  - lib/nexmo_developer/config/tutorials/en/sms-dlr-with-ruby.yml
1678
1678
  - lib/nexmo_developer/config/tutorials/en/sms-fortune-cookies-with-ibm-cloud.yml
1679
1679
  - lib/nexmo_developer/config/tutorials/en/two-factor-authentication-dotnet-verify-api.yml
1680
+ - lib/nexmo_developer/config/webpack/custom.js
1680
1681
  - lib/nexmo_developer/config/webpack/development.js
1681
1682
  - lib/nexmo_developer/config/webpack/environment.js
1682
1683
  - lib/nexmo_developer/config/webpack/loaders/vue.js
@@ -1878,8 +1879,10 @@ homepage: https://github.com/Nexmo/station
1878
1879
  licenses:
1879
1880
  - MIT
1880
1881
  metadata:
1881
- homepage_uri: https://github.com/Nexmo/station
1882
+ homepage: https://github.com/Nexmo/station
1882
1883
  source_code_uri: https://github.com/Nexmo/station
1884
+ bug_tracker_uri: https://github.com/Nexmo/station/issues
1885
+ documentation_uri: https://nexmo.github.io/station/
1883
1886
  post_install_message:
1884
1887
  rdoc_options: []
1885
1888
  require_paths:
@@ -1898,5 +1901,5 @@ requirements: []
1898
1901
  rubygems_version: 3.1.4
1899
1902
  signing_key:
1900
1903
  specification_version: 4
1901
- summary: Nexmo Developer Platform
1904
+ summary: Station provides a documentation platform ready to use with your custom documentation.
1902
1905
  test_files: []