station 0.0.145 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/lib/nexmo_developer/Gemfile +6 -0
  3. data/lib/nexmo_developer/Gemfile.lock +8 -0
  4. data/lib/nexmo_developer/app/assets/stylesheets/{application.css → application.scss} +2 -0
  5. data/lib/nexmo_developer/app/assets/stylesheets/blog/badge.scss +245 -0
  6. data/lib/nexmo_developer/app/assets/stylesheets/blog/blog.scss +209 -0
  7. data/lib/nexmo_developer/app/controllers/blog/authors_controller.rb +8 -0
  8. data/lib/nexmo_developer/app/controllers/blog/blogpost_controller.rb +32 -0
  9. data/lib/nexmo_developer/app/controllers/blog/categories_controller.rb +8 -0
  10. data/lib/nexmo_developer/app/controllers/blog/main_controller.rb +9 -0
  11. data/lib/nexmo_developer/app/controllers/blog/tags_controller.rb +8 -0
  12. data/lib/nexmo_developer/app/helpers/blog_helper.rb +7 -0
  13. data/lib/nexmo_developer/app/models/blog/author.rb +59 -0
  14. data/lib/nexmo_developer/app/models/blog/blogpost.rb +68 -0
  15. data/lib/nexmo_developer/app/models/blog/category.rb +25 -0
  16. data/lib/nexmo_developer/app/services/author_parser.rb +61 -0
  17. data/lib/nexmo_developer/app/services/blogpost_parser.rb +57 -0
  18. data/lib/nexmo_developer/app/services/category_parser.rb +19 -0
  19. data/lib/nexmo_developer/app/services/tag_parser.rb +38 -0
  20. data/lib/nexmo_developer/app/views/blog/authors/_social_links.html.erb +67 -0
  21. data/lib/nexmo_developer/app/views/blog/authors/show.html.erb +46 -0
  22. data/lib/nexmo_developer/app/views/blog/blogpost/_blogpost.html.erb +74 -0
  23. data/lib/nexmo_developer/app/views/blog/blogpost/_blogpost_with_image.html.erb +59 -0
  24. data/lib/nexmo_developer/app/views/blog/blogpost/_tag_labels.html.erb +20 -0
  25. data/lib/nexmo_developer/app/views/blog/blogpost/index.html.erb +43 -0
  26. data/lib/nexmo_developer/app/views/blog/blogpost/show.html.erb +127 -0
  27. data/lib/nexmo_developer/app/views/blog/categories/show.html.erb +25 -0
  28. data/lib/nexmo_developer/app/views/blog/tags/show.html.erb +25 -0
  29. data/lib/nexmo_developer/app/views/layouts/application.html.erb +1 -1
  30. data/lib/nexmo_developer/app/views/layouts/partials/_header.html.erb +0 -3
  31. data/lib/nexmo_developer/config/application.rb +1 -0
  32. data/lib/nexmo_developer/config/routes.rb +9 -1
  33. data/lib/nexmo_developer/lib/tasks/blog.rake +12 -0
  34. data/lib/nexmo_developer/public/assets/.sprockets-manifest-3f3d4eafc3f8d9771fa4ba3f13084baf.json +1 -0
  35. data/lib/nexmo_developer/public/assets/application-aa88b3c7bd34ec529f43849541752fda7c9c202aa9fff905be578ef88d103b46.js.gz +0 -0
  36. data/lib/nexmo_developer/public/assets/{application-6e9186f7602070c57b5c60de9b45ad12f1fccdcf83e08ea28c809d7a5a42a232.css → application-d9ea3be5cba4feaa1cbe4f50a2d73a7cd19cbc1658778180d3cd3890a0dd6ed0.css} +1 -1
  37. data/lib/nexmo_developer/public/assets/application-d9ea3be5cba4feaa1cbe4f50a2d73a7cd19cbc1658778180d3cd3890a0dd6ed0.css.gz +0 -0
  38. data/lib/nexmo_developer/public/assets/manifest-b4bf6e57a53c2bdb55b8998cc94cd00883793c1c37c5e5aea3ef6749b4f6d92b.js.gz +0 -0
  39. data/lib/nexmo_developer/version.rb +1 -1
  40. metadata +31 -6
  41. data/lib/nexmo_developer/public/assets/.sprockets-manifest-cbc98735a38ce872d5ca075ef4d92ef7.json +0 -1
  42. data/lib/nexmo_developer/public/assets/application-6e9186f7602070c57b5c60de9b45ad12f1fccdcf83e08ea28c809d7a5a42a232.css.gz +0 -0
@@ -0,0 +1,127 @@
1
+ <% category = @blogpost.category %>
2
+ <% author = @blogpost.author %>
3
+
4
+ <div class="max-w-screen-xl mx-auto">
5
+
6
+ <!-- Layout tweak for reading time position -->
7
+ <div style="display:flex;justify-content: space-between;">
8
+ <div style="width:20%"></div>
9
+ <div style="width:58%">
10
+ <!-- Reading time -->
11
+ <div style="display:flex;justify-content: flex-end;">
12
+ <p style="text-opacity: 1; color: rgba(107,114,128,.8); text-align: right;">
13
+ <%= readind_time_without_code_tags(@blogpost.content)%>&nbsp;
14
+ </p>
15
+ <p>
16
+ <svg class="Vlt-icon Vlt-icon--smaller Vlt-grey-darker" style="opacity: .6;">
17
+ <use xlink:href="/symbol/volta-icons.svg#Vlt-icon-clock"></use>
18
+ </svg>
19
+ </p>
20
+ </div>
21
+ </div>
22
+ <div style="width:20%"></div>
23
+ </div>
24
+
25
+
26
+ <div style="display:flex;justify-content: space-between;">
27
+
28
+ <!-- Author -->
29
+ <div class="Vlt-card Vlt-bg-white" style="width:20%;height: fit-content;">
30
+
31
+ <div class="Vlt-card__image" style="background-image: url('<%= author.url %>'); background-size: cover; min-height: 40vh; background-position: center;"></div>
32
+
33
+ <div class="Vlt-card__content">
34
+ <%= link_to blog_author_path(author.short_name), class: "Vlt-blue-darker" do %>
35
+ <h4 class="Vlt-title--icon">
36
+ <svg class="Vlt-icon"><use xlink:href="/symbol/volta-icons.svg#Vlt-icon-pentool" /></svg>
37
+ <%= author.name %>
38
+ </h4>
39
+ <% end %>
40
+
41
+ <p style="margin-bottom:16px;"><code><small><%= author.title %></small></code></p>
42
+
43
+ <p style="opacity:.6;font-weight: bold;">
44
+ <%= author.bio.truncate(200) if author.bio.present? %>
45
+ </p>
46
+
47
+ <%= link_to blog_author_path(author.short_name), class: "Vlt-blue-darker" do %>
48
+ [<%= t('read_more') %>]
49
+ <% end %>
50
+ </div>
51
+
52
+ </div>
53
+
54
+ <!-- Main Content -->
55
+ <div class="Vlt-card Vlt-bg-white" style="width:58%;padding:0;">
56
+
57
+ <!-- Header IMG -->
58
+ <div class="border-radius-top card-header-image" style="background-image: url(<%= @blogpost.header_img_url %>);"></div>
59
+
60
+ <div class="Vlt-card__content" style="padding:24px;">
61
+
62
+ <!-- Category tag -->
63
+ <a href="<%= blog_category_path(category.slug)%>" class="category-name" style="color: <%= category.color %>;padding:0 0 16px 0;">
64
+ < <%= category.name %> />
65
+ </a>
66
+
67
+ <!-- Title -->
68
+ <h1><%= @blogpost.title %></h1>
69
+
70
+ <!-- TAGs -->
71
+ <% if @blogpost.tags.count > 0 %>
72
+ <div style='margin-bottom: 1.5rem;'>
73
+ <% @blogpost.tags.each do |tag| %>
74
+ <% next if tag.empty? %>
75
+ <a href="<%= blog_tag_path(tag.downcase)%>">
76
+ <small class="Vlt-badge Vlt-badge--<%= tag.downcase %> Vlt-badge--transparent"><span>#</span><%= tag == "Objective_C" ? "Objective-C" : tag.downcase %></small>
77
+ </a>
78
+ <% end %>
79
+ </div>
80
+ <% end %>
81
+
82
+ <!-- Last Updated at -->
83
+ <% if @blogpost.updated_at.present? %>
84
+ <p class='Vlt-grey-darker'><strong>Last updated on <%= @blogpost.updated_at.strftime('%b %d, %Y') %></strong></p>
85
+ <% end %>
86
+
87
+ <!-- Raw content -->
88
+ <div class="raw_blopost_content"><%= raw @blogpost.content %></div>
89
+ </div>
90
+
91
+ </div>
92
+
93
+ <!-- Related Blogposts -->
94
+ <div class="Vlt-card Vlt-bg-white" style="width:20%;height: fit-content;">
95
+
96
+ <h4 style="text-align:center;">Related Posts</h4>
97
+
98
+ <div class="header-separator hr--tall Vlt-text-separator Vlt-text-separator--big">
99
+ <span>
100
+ <svg class="Vlt-icon"><use xlink:href="/symbol/volta-icons.svg#Vlt-icon-pentool" /></svg>
101
+ </span>
102
+ </div>
103
+
104
+ <% @related_blogposts.each_with_index do |related, i| %>
105
+ <div class="Vlt-card__content">
106
+ <%= link_to "/#{related.link}" do %>
107
+ <h5><%= related.title %></h5>
108
+ <% if related.updated_at.present? %>
109
+ <p class='Vlt-grey-darker'><%= Time.parse(related.updated_at).strftime('%b %d, %Y') %></p>
110
+ <% end %>
111
+ <p class="Vlt-blue-darker">
112
+ [<%= t('read_more') %>]
113
+ </p>
114
+ <% end %>
115
+ </div>
116
+
117
+ <% if i != @related_blogposts.length - 1 %>
118
+ <hr class="hr--short" style="opacity:.4;">
119
+ <% end %>
120
+
121
+ <% end %>
122
+
123
+ </div>
124
+
125
+ </div>
126
+
127
+ </div>
@@ -0,0 +1,25 @@
1
+ <div class="max-w-screen-xl mx-auto">
2
+
3
+ <div class="header-separator hr--tall Vlt-text-separator Vlt-text-separator--big">
4
+ <span>< <%= @category_with_all_blogposts.plural.upcase %> /></span>
5
+ </div>
6
+
7
+ <% unless @category_with_all_blogposts.blogposts.count.positive? %>
8
+
9
+ <div class="Vlt-callout Vlt-callout--warning">
10
+ <div class="Vlt-callout__content">No Blogpost available</div>
11
+ </div>
12
+
13
+ <% else %>
14
+
15
+ <div class="my-3col-grid">
16
+ <% @category_with_all_blogposts.blogposts.compact.in_groups(3) do |blogposts| %>
17
+ <%# cache blogpost do %>
18
+ <%= render partial: 'blog/blogpost/blogpost', collection: blogposts, as: :blogpost, locals: { show_category_label: false, show_author: true } %>
19
+ <%# end %>
20
+ <% end %>
21
+ </div>
22
+
23
+ <% end %>
24
+
25
+ </div>
@@ -0,0 +1,25 @@
1
+ <div class="max-w-screen-xl mx-auto">
2
+
3
+ <div class="header-separator hr--tall Vlt-text-separator Vlt-text-separator--big">
4
+ <span>< <%= @tag.upcase %> /></span>
5
+ </div>
6
+
7
+ <% unless @blogposts.count.positive? %>
8
+
9
+ <div class="Vlt-callout Vlt-callout--warning">
10
+ <div class="Vlt-callout__content">No Blogpost available</div>
11
+ </div>
12
+
13
+ <% else %>
14
+
15
+ <div class="my-3col-grid">
16
+ <% @blogposts.compact.in_groups(3) do |blogposts| %>
17
+ <%# cache blogpost do %>
18
+ <%= render partial: 'blog/blogpost/blogpost', collection: blogposts, as: :blogpost, locals: { show_category_label: false, show_author: true } %>
19
+ <%# end %>
20
+ <% end %>
21
+ </div>
22
+
23
+ <% end %>
24
+
25
+ </div>
@@ -6,7 +6,7 @@
6
6
  <%= render partial: 'layouts/partials/header' %>
7
7
  <div class="wrapper wrapper--tint" tabindex="2">
8
8
  <%= render partial: 'layouts/partials/notices' %>
9
- <main class="Nxd-landing-main">
9
+ <main class="Nxd-landing-main <%= @gradient_bg ? 'gradient-bg' : ''%>">
10
10
  <%= yield %>
11
11
  </main>
12
12
  </div>
@@ -93,9 +93,6 @@
93
93
  <div class="Vlt-topmenu__item">
94
94
  <a href="/startups"><p><b class="Vlt-white">Startup program</b></p></a>
95
95
  </div>
96
- <div class="Vlt-topmenu__item">
97
- <a href="/voyagers"><p><b class="Vlt-white">Voyagers program</b></p></a>
98
- </div>
99
96
  <div class="Vlt-topmenu__item">
100
97
  <a href="https://stackoverflow.com/questions/tagged/nexmo" target='_blank' rel='noopener noreferrer'><p><b class="Vlt-white">Stackoverflow</b></p></a>
101
98
  </div>
@@ -38,6 +38,7 @@ module NexmoDeveloper
38
38
  config.docs_base_path = ENV.fetch('DOCS_BASE_PATH', '.')
39
39
  config.middleware.use ::ActionDispatch::Static, "#{Rails.configuration.docs_base_path}/public", index: 'index'
40
40
  config.oas_path = ENV.fetch('OAS_PATH', './_open_api/api_specs/definitions')
41
+ config.blog_path = ENV.fetch('BLOG_PATH', './_blog')
41
42
  config.paths['app/views'].unshift("#{Rails.configuration.docs_base_path}/custom/views")
42
43
  config.i18n.load_path += Dir[Pathname.new(config.docs_base_path).join('config', 'locales', '**', '*.yml')]
43
44
  end
@@ -98,7 +98,15 @@ Rails.application.routes.draw do
98
98
 
99
99
  get '(/:locale)/*product/*document(/:code_language)', to: 'markdown#show', constraints: DocumentationConstraint.documentation.merge(locale: LocaleConstraint.available_locales)
100
100
 
101
- get '/ed', to: 'static#blog_cookie'
101
+ get '/ed', to: 'static#blog_cookie' # workaround for Learn.vonage. com to share Google Analytics tracking with ADP
102
+
103
+ namespace :blog do
104
+ get '/', to: 'blogpost#index'
105
+ get '(/:locale)/:year/:month/:day/:blog_path/', to: 'blogpost#show', constraints: { locale: LocaleConstraint.available_locales }
106
+ get '/authors/:name', to: 'authors#show', as: 'author'
107
+ get '/categories/:slug', to: 'categories#show', as: 'category'
108
+ get '/tags/:slug', to: 'tags#show', as: 'tag'
109
+ end
102
110
 
103
111
  get '*unmatched_route', to: 'application#not_found'
104
112
 
@@ -0,0 +1,12 @@
1
+ namespace :blog do
2
+ desc 'Build index file (JSON)'
3
+ task build_index: :environment do
4
+ now = Time.zone.now
5
+
6
+ BlogpostParser.build
7
+
8
+ after = Time.zone.now
9
+
10
+ puts "\n✨ Done in #{(after - now).round(2)}s ✨\n\n"
11
+ end
12
+ end
@@ -0,0 +1 @@
1
+ {"files":{"manifest-b4bf6e57a53c2bdb55b8998cc94cd00883793c1c37c5e5aea3ef6749b4f6d92b.js":{"logical_path":"manifest.js","mtime":"2022-02-24T16:25:26+00:00","size":2,"digest":"75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070","integrity":"sha256-daEdpEyAJIa8b2VkCqSKcw8PaExcB6Qro80XNes/sHA="},"application-aa88b3c7bd34ec529f43849541752fda7c9c202aa9fff905be578ef88d103b46.js":{"logical_path":"application.js","mtime":"2022-02-24T16:25:26+00:00","size":3172,"digest":"67f1fd16f949c2794341a44cf839e5436bbef74436e043ead39890d1c3b2e583","integrity":"sha256-Z/H9FvlJwnlDQaRM+DnlQ2u+90Q24EPq05iQ0cOy5YM="},"application-d9ea3be5cba4feaa1cbe4f50a2d73a7cd19cbc1658778180d3cd3890a0dd6ed0.css":{"logical_path":"application.css","mtime":"2022-02-24T16:25:26+00:00","size":15382,"digest":"c998cd580f4117849dbb45c94dc191e3204847585806d7ecc4e514c0b0b934ec","integrity":"sha256-yZjNWA9BF4Sdu0XJTcGR4yBIR1hYBtfsxOUUwLC5NOw="}},"assets":{"manifest.js":"manifest-b4bf6e57a53c2bdb55b8998cc94cd00883793c1c37c5e5aea3ef6749b4f6d92b.js","application.js":"application-aa88b3c7bd34ec529f43849541752fda7c9c202aa9fff905be578ef88d103b46.js","application.css":"application-d9ea3be5cba4feaa1cbe4f50a2d73a7cd19cbc1658778180d3cd3890a0dd6ed0.css"}}
@@ -1 +1 @@
1
- @media only screen and (min-width: 576px){.Vlt-S-only{display:none !important}}@media only screen and (max-width: 575px){.Vlt-M-only{display:none !important}}@media only screen and (min-width: 768px){.Vlt-M-only{display:none !important}}@media only screen and (max-width: 767px){.Vlt-L-plus{display:none !important}}@media only screen and (max-width: 575px){.Vlt-M-plus{display:none !important}}@media only screen and (min-width: 768px){.Vlt-M-less{display:none !important}}.oas-page .Nxd-header__sub__menu{margin-bottom:0}.oas-page .oas-wrapper{margin-top:0}.oas-page .oas-wrapper .oas-navbar{position:sticky;height:56px}.oas-page .oas-wrapper .oas-navbar .Vlt-native-dropdown{margin-left:auto}.oas-page .oas-wrapper .oas-navbar .Vlt-native-dropdown select{padding-right:32px}.oas-wrapper{margin-top:50px}.oas-wrapper em{font-style:italic}.oas-wrapper .Vlt-tooltip__content{width:auto !important;max-width:none !important}.oas-wrapper .Nxd-content{display:flex}.oas-wrapper .Nxd-method-badge{text-transform:uppercase}.oas-wrapper .api-path-parameter{color:#33aaee}.oas-wrapper .Vlt-col{padding:0}.oas-wrapper .Vlt-accordion--chevron-left .Vlt-accordion__trigger:before{margin-right:8px !important}.oas-wrapper .oas-parameter-description{margin-left:16px}.oas-wrapper .oas-parameter-meta{padding-bottom:2px;border-bottom:1px solid #ccc;margin-bottom:4px}.oas-wrapper .oas-parameter-nested{margin-left:12px;padding-left:12px;border-left:1px solid #ccc}.oas-wrapper .oas-navbar{position:fixed;top:0;padding-left:18px;z-index:100000;width:100vw;display:flex}.oas-wrapper .oas-navbar .Vlt-native-dropdown{height:fit-content;margin-top:8px;margin-left:auto;margin-right:32px;justify-content:flex-end}.oas-wrapper .header-row .Vlt-col{padding:0}.oas-wrapper .Vlt-grid{margin:0 !important}.oas-wrapper pre[class*=language-] code{white-space:pre-wrap}.oas-wrapper .Vlt-accordion__trigger{width:auto;font-size:1.5rem}.oas-wrapper .oas-grid{display:flex;width:100%;flex-direction:column}.oas-wrapper .oas-parameter-name{margin-top:8px}.oas-wrapper .oas-parameter-name-nested b{border-bottom:1px dashed #ccc}.oas-wrapper .oas-left-panel{padding:0 36px;max-width:51%;width:50%;background:white}.oas-wrapper .oas-right-panel{font-size:13px;max-width:49%;width:49%;padding:0 16px}.oas-wrapper .oas-right-panel .Vlt-tabs__header{border:0;padding-left:8px}.oas-wrapper .oas-right-panel .Vlt-js-tabs__link_active{font-weight:bold}.oas-wrapper .response-description-toggle strong{margin-right:4px}.oas-wrapper .response-tabs-selector{display:flex;margin-bottom:12px;flex-direction:row;flex-wrap:wrap}.oas-wrapper .response-tabs-selector span{padding:6px 12px;margin-right:2px}.oas-wrapper .response-tabs-selector .response-tabs-selector-item.Vlt-js-tabs__link_active{font-weight:normal}.oas-wrapper .oas-path-full{display:flex}.oas-wrapper .oas-path-small,.oas-wrapper .oas-navbar-small{display:none}@media only screen and (max-width: 1080px){.oas-wrapper .Nxd-header{display:none !important}.oas-wrapper .oas-navbar{position:sticky !important;height:auto !important}.oas-wrapper .oas-navbar-full{display:none}.oas-wrapper .oas-navbar-small{display:flex}}@media only screen and (max-width: 1080px){.oas-wrapper .response-tabs-selector span{margin-bottom:2px}.oas-wrapper .oas-navbar{padding-left:0}.oas-wrapper .oas-navbar .Vlt-accordion__trigger{padding-left:18px}.oas-wrapper .oas-path-full{display:none}.oas-wrapper .oas-path-small{display:flex}.oas-wrapper .oas-row{padding-left:0}.oas-wrapper .oas-left-panel,.oas-wrapper .oas-right-panel{min-width:100%}.oas-wrapper .oas-right-panel{padding:36px}.oas-wrapper .oas-left-panel h2,.oas-wrapper .oas-left-panel h3{margin-top:30px}.oas-wrapper .sm-hidden{display:none}.oas-wrapper .Vlt-grid{flex-direction:column !important}.oas-wrapper .Vlt-col{margin-top:0px !important;margin-bottom:0px !important}.oas-wrapper .Vlt-right-sm{text-align:left !important}}.oas-wrapper .full-background{position:absolute;height:100vh;z-index:0}.oas-wrapper .full-background.oas-right-panel{left:51%}.oas-wrapper .oas-trigger-content{display:none;padding:16px}.oas-wrapper .oas-trigger{font-size:3rem;display:inline-block;width:100%;cursor:pointer;padding:12px 0;padding-left:16px;border-bottom:1px solid #ccc;display:flex}.oas-wrapper .oas-trigger .Vlt-native-dropdown{margin-top:0}.oas-wrapper .oas-trigger:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHMAAABkCAMAAACCTv/3AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFAAAA5ubmSUUG+gAAAAJ0Uk5T/wDltzBKAAAAPklEQVR42uzYQQ0AAAgDseHfNC4IyVoD912WAACUm3uampqampqamq+aAAD+IVtTU1NTU1NT0z8EAFBsBRgAX+kR+Qam138AAAAASUVORK5CYII=);background-position:center center;background-repeat:no-repeat;background-size:22px;content:'';display:inline-block;-ms-flex:0 0 24px;flex:0 0 24px;min-height:24px;width:24px;margin-right:8px}.oas-wrapper .Nxd-version p{text-transform:uppercase;font-size:1.3rem !important}.oas-wrapper .Nxd-version a{font-size:1.3rem !important;color:#005282 !important}.oas-wrapper .Nxd-version a.active{font-weight:bold}.oas-wrapper .constraint{text-transform:uppercase;font-size:0.82em;font-weight:600;color:#f25a6b}.oas-wrapper .xml-flag{text-transform:uppercase;font-size:0.82em;font-weight:600;color:#117bb8}.theme-light .Vlt-switch__slider:after{background-image:url("data:image/svg+xml,%0A%3Csvg height='15px' viewBox='0 0 230 200' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23131415' d='M45.3408,0 L-0.0002,0 L64.6808,146.958 C65.1748,148.081 66.7718,148.07 67.2508,146.942 L88.7628,96.337 L45.3408,0 Z'%3E%3C/path%3E%3Cpath fill='%23131415' d='M183.4502,0 C183.4502,0 113.9562,159.156 104.6482,173.833 C93.8292,190.896 86.6592,197.409 73.3912,199.496 C73.2682,199.515 73.1772,199.621 73.1772,199.746 C73.1772,199.886 73.2912,200 73.4312,200 L114.9552,200 C132.9432,200 145.9152,184.979 153.1042,171.714 C161.2742,156.637 229.5902,0 229.5902,0 L183.4502,0 Z'%3E%3C/path%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center}.theme-light .theme-link{color:black}.theme-light .oas-navbar,.theme-light .oas-right-panel{background:#f8fafc !important}.theme-light .group-link{background:black !important;color:white}.theme-light .Nxd-method-badge--post{color:#2d966f;background:#d7f2e8}.theme-light .Nxd-method-badge--get{color:#117bb8;background:#d6eefc}.theme-light .Nxd-method-badge--delete{color:#bb3241;background:#fde8eb}.theme-light .Nxd-method-badge--patch{color:#00848e;background:#dbf3f6}.theme-light .Nxd-method-badge--put{color:#8f4fa7;background:#f3e7f8}.theme-light .oas-right-panel .Vlt-js-tabs__link_active{background:#131415 !important;color:white}.theme-light .oas-right-panel h4,.theme-light .oas-right-panel .Vlt-tabs__link{color:black !important}.theme-dark .Vlt-switch__slider:after{background:black;background-image:url("data:image/svg+xml,%0A%3Csvg width='15px' height='200px' viewBox='0 0 230 200' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M45.3408,0 L-0.0002,0 L64.6808,146.958 C65.1748,148.081 66.7718,148.07 67.2508,146.942 L88.7628,96.337 L45.3408,0 Z'%3E%3C/path%3E%3Cpath fill='%23ffffff' d='M183.4502,0 C183.4502,0 113.9562,159.156 104.6482,173.833 C93.8292,190.896 86.6592,197.409 73.3912,199.496 C73.2682,199.515 73.1772,199.621 73.1772,199.746 C73.1772,199.886 73.2912,200 73.4312,200 L114.9552,200 C132.9432,200 145.9152,184.979 153.1042,171.714 C161.2742,156.637 229.5902,0 229.5902,0 L183.4502,0 Z'%3E%3C/path%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center;left:22px}.theme-dark .theme-link{color:white !important}.theme-dark .group-link{background:#e1e2e6 !important;color:#131415}.theme-dark .oas-navbar .oas-trigger,.theme-dark .oas-navbar h4{color:white !important}.theme-dark .oas-navbar .oas-trigger:before,.theme-dark .oas-navbar h4:before{filter:invert(100%)}.theme-dark .oas-navbar,.theme-dark .oas-right-panel{background:#131415}.theme-dark .Vlt-native-dropdown select{background:#e1e2e6 !important;color:black}.theme-dark .Vlt-native-dropdown:after{filter:invert(100%)}.theme-dark .Nxd-method-badge{color:white;text-transform:uppercase}.theme-dark .Nxd-method-badge--post{background:#35be8b}.theme-dark .Nxd-method-badge--get{background:#117bb8}.theme-dark .Nxd-method-badge--delete{background:#f25a6b}.theme-dark .Nxd-method-badge--patch{background:#4cc3d2}.theme-dark .Nxd-method-badge--put{background:#8f4fa7}.theme-dark .oas-right-panel .Vlt-tabs__link{color:white !important}.theme-dark .oas-right-panel .Vlt-tabs__link_active:after{background:white !important}.theme-dark .oas-right-panel .Vlt-js-tabs__link_active{background:white !important}.Adp-use-cases__background{filter:blur(100px)}.Adp-platform__background{filter:blur(100px)}
1
+ @media only screen and (min-width: 576px){.Vlt-S-only{display:none !important}}@media only screen and (max-width: 575px){.Vlt-M-only{display:none !important}}@media only screen and (min-width: 768px){.Vlt-M-only{display:none !important}}@media only screen and (max-width: 767px){.Vlt-L-plus{display:none !important}}@media only screen and (max-width: 575px){.Vlt-M-plus{display:none !important}}@media only screen and (min-width: 768px){.Vlt-M-less{display:none !important}}.oas-page .Nxd-header__sub__menu{margin-bottom:0}.oas-page .oas-wrapper{margin-top:0}.oas-page .oas-wrapper .oas-navbar{position:sticky;height:56px}.oas-page .oas-wrapper .oas-navbar .Vlt-native-dropdown{margin-left:auto}.oas-page .oas-wrapper .oas-navbar .Vlt-native-dropdown select{padding-right:32px}.oas-wrapper{margin-top:50px}.oas-wrapper em{font-style:italic}.oas-wrapper .Vlt-tooltip__content{width:auto !important;max-width:none !important}.oas-wrapper .Nxd-content{display:flex}.oas-wrapper .Nxd-method-badge{text-transform:uppercase}.oas-wrapper .api-path-parameter{color:#33aaee}.oas-wrapper .Vlt-col{padding:0}.oas-wrapper .Vlt-accordion--chevron-left .Vlt-accordion__trigger:before{margin-right:8px !important}.oas-wrapper .oas-parameter-description{margin-left:16px}.oas-wrapper .oas-parameter-meta{padding-bottom:2px;border-bottom:1px solid #ccc;margin-bottom:4px}.oas-wrapper .oas-parameter-nested{margin-left:12px;padding-left:12px;border-left:1px solid #ccc}.oas-wrapper .oas-navbar{position:fixed;top:0;padding-left:18px;z-index:100000;width:100vw;display:flex}.oas-wrapper .oas-navbar .Vlt-native-dropdown{height:fit-content;margin-top:8px;margin-left:auto;margin-right:32px;justify-content:flex-end}.oas-wrapper .header-row .Vlt-col{padding:0}.oas-wrapper .Vlt-grid{margin:0 !important}.oas-wrapper pre[class*=language-] code{white-space:pre-wrap}.oas-wrapper .Vlt-accordion__trigger{width:auto;font-size:1.5rem}.oas-wrapper .oas-grid{display:flex;width:100%;flex-direction:column}.oas-wrapper .oas-parameter-name{margin-top:8px}.oas-wrapper .oas-parameter-name-nested b{border-bottom:1px dashed #ccc}.oas-wrapper .oas-left-panel{padding:0 36px;max-width:51%;width:50%;background:white}.oas-wrapper .oas-right-panel{font-size:13px;max-width:49%;width:49%;padding:0 16px}.oas-wrapper .oas-right-panel .Vlt-tabs__header{border:0;padding-left:8px}.oas-wrapper .oas-right-panel .Vlt-js-tabs__link_active{font-weight:bold}.oas-wrapper .response-description-toggle strong{margin-right:4px}.oas-wrapper .response-tabs-selector{display:flex;margin-bottom:12px;flex-direction:row;flex-wrap:wrap}.oas-wrapper .response-tabs-selector span{padding:6px 12px;margin-right:2px}.oas-wrapper .response-tabs-selector .response-tabs-selector-item.Vlt-js-tabs__link_active{font-weight:normal}.oas-wrapper .oas-path-full{display:flex}.oas-wrapper .oas-path-small,.oas-wrapper .oas-navbar-small{display:none}@media only screen and (max-width: 1080px){.oas-wrapper .Nxd-header{display:none !important}.oas-wrapper .oas-navbar{position:sticky !important;height:auto !important}.oas-wrapper .oas-navbar-full{display:none}.oas-wrapper .oas-navbar-small{display:flex}}@media only screen and (max-width: 1080px){.oas-wrapper .response-tabs-selector span{margin-bottom:2px}.oas-wrapper .oas-navbar{padding-left:0}.oas-wrapper .oas-navbar .Vlt-accordion__trigger{padding-left:18px}.oas-wrapper .oas-path-full{display:none}.oas-wrapper .oas-path-small{display:flex}.oas-wrapper .oas-row{padding-left:0}.oas-wrapper .oas-left-panel,.oas-wrapper .oas-right-panel{min-width:100%}.oas-wrapper .oas-right-panel{padding:36px}.oas-wrapper .oas-left-panel h2,.oas-wrapper .oas-left-panel h3{margin-top:30px}.oas-wrapper .sm-hidden{display:none}.oas-wrapper .Vlt-grid{flex-direction:column !important}.oas-wrapper .Vlt-col{margin-top:0px !important;margin-bottom:0px !important}.oas-wrapper .Vlt-right-sm{text-align:left !important}}.oas-wrapper .full-background{position:absolute;height:100vh;z-index:0}.oas-wrapper .full-background.oas-right-panel{left:51%}.oas-wrapper .oas-trigger-content{display:none;padding:16px}.oas-wrapper .oas-trigger{font-size:3rem;display:inline-block;width:100%;cursor:pointer;padding:12px 0;padding-left:16px;border-bottom:1px solid #ccc;display:flex}.oas-wrapper .oas-trigger .Vlt-native-dropdown{margin-top:0}.oas-wrapper .oas-trigger:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHMAAABkCAMAAACCTv/3AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRFAAAA5ubmSUUG+gAAAAJ0Uk5T/wDltzBKAAAAPklEQVR42uzYQQ0AAAgDseHfNC4IyVoD912WAACUm3uampqampqamq+aAAD+IVtTU1NTU1NT0z8EAFBsBRgAX+kR+Qam138AAAAASUVORK5CYII=);background-position:center center;background-repeat:no-repeat;background-size:22px;content:'';display:inline-block;-ms-flex:0 0 24px;flex:0 0 24px;min-height:24px;width:24px;margin-right:8px}.oas-wrapper .Nxd-version p{text-transform:uppercase;font-size:1.3rem !important}.oas-wrapper .Nxd-version a{font-size:1.3rem !important;color:#005282 !important}.oas-wrapper .Nxd-version a.active{font-weight:bold}.oas-wrapper .constraint{text-transform:uppercase;font-size:0.82em;font-weight:600;color:#f25a6b}.oas-wrapper .xml-flag{text-transform:uppercase;font-size:0.82em;font-weight:600;color:#117bb8}.theme-light .Vlt-switch__slider:after{background-image:url("data:image/svg+xml,%0A%3Csvg height='15px' viewBox='0 0 230 200' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23131415' d='M45.3408,0 L-0.0002,0 L64.6808,146.958 C65.1748,148.081 66.7718,148.07 67.2508,146.942 L88.7628,96.337 L45.3408,0 Z'%3E%3C/path%3E%3Cpath fill='%23131415' d='M183.4502,0 C183.4502,0 113.9562,159.156 104.6482,173.833 C93.8292,190.896 86.6592,197.409 73.3912,199.496 C73.2682,199.515 73.1772,199.621 73.1772,199.746 C73.1772,199.886 73.2912,200 73.4312,200 L114.9552,200 C132.9432,200 145.9152,184.979 153.1042,171.714 C161.2742,156.637 229.5902,0 229.5902,0 L183.4502,0 Z'%3E%3C/path%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center}.theme-light .theme-link{color:black}.theme-light .oas-navbar,.theme-light .oas-right-panel{background:#f8fafc !important}.theme-light .group-link{background:black !important;color:white}.theme-light .Nxd-method-badge--post{color:#2d966f;background:#d7f2e8}.theme-light .Nxd-method-badge--get{color:#117bb8;background:#d6eefc}.theme-light .Nxd-method-badge--delete{color:#bb3241;background:#fde8eb}.theme-light .Nxd-method-badge--patch{color:#00848e;background:#dbf3f6}.theme-light .Nxd-method-badge--put{color:#8f4fa7;background:#f3e7f8}.theme-light .oas-right-panel .Vlt-js-tabs__link_active{background:#131415 !important;color:white}.theme-light .oas-right-panel h4,.theme-light .oas-right-panel .Vlt-tabs__link{color:black !important}.theme-dark .Vlt-switch__slider:after{background:black;background-image:url("data:image/svg+xml,%0A%3Csvg width='15px' height='200px' viewBox='0 0 230 200' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M45.3408,0 L-0.0002,0 L64.6808,146.958 C65.1748,148.081 66.7718,148.07 67.2508,146.942 L88.7628,96.337 L45.3408,0 Z'%3E%3C/path%3E%3Cpath fill='%23ffffff' d='M183.4502,0 C183.4502,0 113.9562,159.156 104.6482,173.833 C93.8292,190.896 86.6592,197.409 73.3912,199.496 C73.2682,199.515 73.1772,199.621 73.1772,199.746 C73.1772,199.886 73.2912,200 73.4312,200 L114.9552,200 C132.9432,200 145.9152,184.979 153.1042,171.714 C161.2742,156.637 229.5902,0 229.5902,0 L183.4502,0 Z'%3E%3C/path%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center;left:22px}.theme-dark .theme-link{color:white !important}.theme-dark .group-link{background:#e1e2e6 !important;color:#131415}.theme-dark .oas-navbar .oas-trigger,.theme-dark .oas-navbar h4{color:white !important}.theme-dark .oas-navbar .oas-trigger:before,.theme-dark .oas-navbar h4:before{filter:invert(100%)}.theme-dark .oas-navbar,.theme-dark .oas-right-panel{background:#131415}.theme-dark .Vlt-native-dropdown select{background:#e1e2e6 !important;color:black}.theme-dark .Vlt-native-dropdown:after{filter:invert(100%)}.theme-dark .Nxd-method-badge{color:white;text-transform:uppercase}.theme-dark .Nxd-method-badge--post{background:#35be8b}.theme-dark .Nxd-method-badge--get{background:#117bb8}.theme-dark .Nxd-method-badge--delete{background:#f25a6b}.theme-dark .Nxd-method-badge--patch{background:#4cc3d2}.theme-dark .Nxd-method-badge--put{background:#8f4fa7}.theme-dark .oas-right-panel .Vlt-tabs__link{color:white !important}.theme-dark .oas-right-panel .Vlt-tabs__link_active:after{background:white !important}.theme-dark .oas-right-panel .Vlt-js-tabs__link_active{background:white !important}.Vlt-badge--dispatch-api,.Vlt-badge--messages-api,.Vlt-badge--messages-api-sandbox,.Vlt-badge--number-insight-api,.Vlt-badge--number-api,.Vlt-badge--reports-api,.Vlt-badge--account-api,.Vlt-badge--pricing-api,.Vlt-badge--external-accounts-api,.Vlt-badge--redact-api,.Vlt-badge--audit-api,.Vlt-badge--verify-api,.Vlt-badge--media-api,.Vlt-badge--voice-api,.Vlt-badge--conversation-api,.Vlt-badge--video-api,.Vlt-badge--sms-api,.Vlt-badge--station{background:black;color:white}.Vlt-badge--spotlight{background-color:#871fff;color:white}.Vlt-badge--voyagers{background-color:#871fff;color:white}.Vlt-badge--slack{background:rgba(74,21,75,0.4);color:black}.Vlt-badge--faunadb{background:rgba(50,63,203,0.4);color:black}.Vlt-badge--vue{background-color:rgba(65,184,131,0.4);color:#35495e}.Vlt-badge--nuxt{background-color:rgba(0,197,142,0.4);color:black}.Vlt-badge--ruby-on-rails,.Vlt-badge--ruby{background-color:rgba(204,52,45,0.4);color:black}.Vlt-badge--javascript{background-color:rgba(247,223,30,0.4);color:black}.Vlt-badge--typescript{background-color:rgba(49,120,198,0.4);color:black}.Vlt-badge--dotnet{background-color:rgba(93,37,144,0.4);color:black}.Vlt-badge--node{background-color:rgba(61,136,54,0.4);color:black}.Vlt-badge--deno{background:rgba(22,30,46,0.4);color:black}.Vlt-badge--node-red{background-color:rgba(142,1,0,0.4);color:black}.Vlt-badge--azure{background-color:rgba(0,127,255,0.4);color:black}.Vlt-badge--zapier{background-color:rgba(255,74,0,0.4);color:black}.Vlt-badge--go{background-color:rgba(224,235,245,0.4);color:black}.Vlt-badge--php{background-color:rgba(35,161,170,0.4);color:black}.Vlt-badge--aws{background-color:rgba(33,43,58,0.4);color:black}.Vlt-badge--firebase{background-color:rgba(255,202,40,0.4);color:black}.Vlt-badge--zendesk{background-color:rgba(3,54,61,0.4);color:black}.Vlt-badge--ibm-watson{background-color:rgba(0,98,255,0.4);color:black}.Vlt-badge--git{background-color:rgba(241,78,50,0.4);color:black}.Vlt-badge--github{content:'GitHub';background-color:rgba(51,51,51,0.4);color:black}.Vlt-badge--hacktoberfest{background-color:rgba(7,37,64,0.4);color:black}.Vlt-badge--digitalocean{background-color:rgba(0,105,255,0.4);color:black}.Vlt-badge--java{background-color:rgba(1,71,110,0.4);color:black}.Vlt-badge--python{background-color:rgba(30,56,187,0.4);color:black}.Vlt-badge--mongodb{background-color:rgba(19,170,82,0.4);color:black}.Vlt-badge--netlify{background:linear-gradient(to bottom, rgba(35,194,184,0.4), rgba(55,175,188,0.4));color:black}.Vlt-badge--postman{background:rgba(255,108,55,0.4);color:black}.Vlt-badge--opensource{background:rgba(61,166,57,0.4);color:black}.Vlt-badge--react-native,.Vlt-badge--react{background:rgba(97,218,251,0.4);color:black}.Vlt-badge--open-api{background:rgba(56,184,50,0.4);color:black}.Vlt-badge--inclusion{background:linear-gradient(90deg, black, black 12.5%, #754d15 12.5%, #754d15 25%, #f00000 25%, #f00000 37.5%, #ff8000 37.5%, #ff8000 50%, yellow 50%, yellow 62.5%, #007940 62.5%, #007940 75%, #4040ff 75%, #4040ff 87.5%, #a000c0 87.5%, #a000c0);color:white;text-shadow:1px 1px 2px rgba(0,0,0,0.5),-1px -1px 2px rgba(0,0,0,0.5),-1px 1px 2px rgba(0,0,0,0.5),1px -1px 2px rgba(0,0,0,0.5)}.Vlt-badge--diversity{background:linear-gradient(90deg, #55cdfc, #55cdfc 20%, #f7a8b8 20%, #f7a8b8 40%, white 40%, white 60%, #f7a8b8 60%, #f7a8b8 80%, #55cdfc 80%, #55cdfc 100%);color:black;text-shadow:1px 1px 2px rgba(255,255,255,0.5),-1px -1px 2px rgba(255,255,255,0.5),-1px 1px 2px rgba(255,255,255,0.5),1px -1px 2px rgba(255,255,255,0.5)}a small[class*="Vlt-badge--"]{transition:all .2s ease-in-out}a small[class*="Vlt-badge--"]:hover{transform:scale(1.1)}.max-w-screen-xl{max-width:1280px}.mx-auto{margin-left:auto;margin-right:auto}#author-column{width:25%;display:flex;align-items:center;flex-direction:column}.gradient-bg{background:linear-gradient(135deg, rgba(127,198,244,0.3), rgba(213,39,155,0.1));background-attachment:fixed;min-height:100vh}.gradient-border-left{border-left:2px solid;padding-left:4px;border-image:linear-gradient(to bottom, rgba(127,198,244,0.8), rgba(213,39,155,0.8)) 5}.Vlt-text-separator span::before,.Vlt-text-separator span::after{background:linear-gradient(to right, #7fc6f4, #d5279b) !important}.card-header-image{width:100%;height:26rem;background-size:cover;background-position:center}.border-radius-top{border-top-right-radius:8px !important;border-top-left-radius:8px !important;border-bottom-left-radius:0 !important;border-bottom-right-radius:0 !important}.center-author-name{display:flex;justify-content:center}.image-tag-author{display:block;width:4.5rem;height:4.5rem;border-radius:50%}.category-name{display:block;padding:16px 16px 0 16px;font-size:1.5rem;line-height:3.25rem;font-weight:bold;text-transform:uppercase;position:relative;left:0;transition:all .2s ease-in-out}.category-name:hover{left:5px}.fix-position-V-icon{position:relative;left:2px}.social-links{text-align:center}.raw_blopost_content{margin-top:3em}.raw_blopost_content p{font-size:1.8rem;letter-spacing:0.5px;color:#374151;margin:1em 0}.raw_blopost_content p strong{display:inline-block;margin:1em 0}.blogpost_card_content{display:flex;justify-content:space-between;flex-direction:column;flex-grow:1}.author-title{margin-bottom:16px;text-align:center}.header-separator{opacity:.6;letter-spacing:.1em}.d-flex-column{display:flex;justify-content:space-between;flex-direction:column}.my-2col-grid{display:grid !important;grid-template-columns:repeat(2, 1fr) !important;grid-auto-rows:1fr !important;grid-column-gap:10px !important;grid-row-gap:10px !important}.my-2col-grid .Vlt-card:hover{-webkit-transform:none;transform:none;-webkit-box-shadow:0 10px 30px rgba(19,20,21,0.1);box-shadow:0 10px 30px rgba(19,20,21,0.1);transform:none}.my-2col-grid .Vlt-card{-webkit-box-shadow:none;box-shadow:none;border:1px solid #e6e6e6;-webkit-transition:-webkit-box-shadow ease-in 0.25s;transition:-webkit-box-shadow ease-in 0.25s;transition:box-shadow ease-in 0.25s;transition:box-shadow ease-in 0.25s, -webkit-box-shadow ease-in 0.25s}.my-3col-grid{display:grid !important;grid-template-columns:repeat(3, 1fr) !important;grid-auto-rows:1fr !important;grid-column-gap:10px !important;grid-row-gap:10px !important}.my-3col-grid .Vlt-card:hover{-webkit-transform:none;transform:none;-webkit-box-shadow:0 10px 30px rgba(19,20,21,0.1);box-shadow:0 10px 30px rgba(19,20,21,0.1);transform:none}.my-3col-grid .Vlt-card{-webkit-box-shadow:none;box-shadow:none;border:1px solid #e6e6e6;-webkit-transition:-webkit-box-shadow ease-in 0.25s;transition:-webkit-box-shadow ease-in 0.25s;transition:box-shadow ease-in 0.25s;transition:box-shadow ease-in 0.25s, -webkit-box-shadow ease-in 0.25s}.Adp-use-cases__background{filter:blur(100px)}.Adp-platform__background{filter:blur(100px)}
@@ -1,3 +1,3 @@
1
1
  module NexmoDeveloper
2
- VERSION = '0.0.145'.freeze
2
+ VERSION = '0.1.0'.freeze
3
3
  end
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.145
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vonage DevRel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-16 00:00:00.000000000 Z
11
+ date: 2022-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeadmin
@@ -717,11 +717,11 @@ files:
717
717
  - "./lib/nexmo_developer/public/android-chrome-512x512.png"
718
718
  - "./lib/nexmo_developer/public/apple-touch-icon-precomposed.png"
719
719
  - "./lib/nexmo_developer/public/apple-touch-icon.png"
720
- - "./lib/nexmo_developer/public/assets/.sprockets-manifest-cbc98735a38ce872d5ca075ef4d92ef7.json"
721
- - "./lib/nexmo_developer/public/assets/application-6e9186f7602070c57b5c60de9b45ad12f1fccdcf83e08ea28c809d7a5a42a232.css"
722
- - "./lib/nexmo_developer/public/assets/application-6e9186f7602070c57b5c60de9b45ad12f1fccdcf83e08ea28c809d7a5a42a232.css.gz"
720
+ - "./lib/nexmo_developer/public/assets/.sprockets-manifest-3f3d4eafc3f8d9771fa4ba3f13084baf.json"
723
721
  - "./lib/nexmo_developer/public/assets/application-aa88b3c7bd34ec529f43849541752fda7c9c202aa9fff905be578ef88d103b46.js"
724
722
  - "./lib/nexmo_developer/public/assets/application-aa88b3c7bd34ec529f43849541752fda7c9c202aa9fff905be578ef88d103b46.js.gz"
723
+ - "./lib/nexmo_developer/public/assets/application-d9ea3be5cba4feaa1cbe4f50a2d73a7cd19cbc1658778180d3cd3890a0dd6ed0.css"
724
+ - "./lib/nexmo_developer/public/assets/application-d9ea3be5cba4feaa1cbe4f50a2d73a7cd19cbc1658778180d3cd3890a0dd6ed0.css.gz"
725
725
  - "./lib/nexmo_developer/public/assets/archives/app-store-badges.zip"
726
726
  - "./lib/nexmo_developer/public/assets/fonts/icomoon.eot"
727
727
  - "./lib/nexmo_developer/public/assets/fonts/icomoon.json"
@@ -1125,7 +1125,9 @@ files:
1125
1125
  - lib/nexmo_developer/app/admin/admin_user.rb
1126
1126
  - lib/nexmo_developer/app/assets/config/manifest.js
1127
1127
  - lib/nexmo_developer/app/assets/javascripts/application.js
1128
- - lib/nexmo_developer/app/assets/stylesheets/application.css
1128
+ - lib/nexmo_developer/app/assets/stylesheets/application.scss
1129
+ - lib/nexmo_developer/app/assets/stylesheets/blog/badge.scss
1130
+ - lib/nexmo_developer/app/assets/stylesheets/blog/blog.scss
1129
1131
  - lib/nexmo_developer/app/channels/application_cable/channel.rb
1130
1132
  - lib/nexmo_developer/app/channels/application_cable/connection.rb
1131
1133
  - lib/nexmo_developer/app/constraints/documentation_constraint.rb
@@ -1138,6 +1140,11 @@ files:
1138
1140
  - lib/nexmo_developer/app/controllers/api_controller.rb
1139
1141
  - lib/nexmo_developer/app/controllers/api_errors_controller.rb
1140
1142
  - lib/nexmo_developer/app/controllers/application_controller.rb
1143
+ - lib/nexmo_developer/app/controllers/blog/authors_controller.rb
1144
+ - lib/nexmo_developer/app/controllers/blog/blogpost_controller.rb
1145
+ - lib/nexmo_developer/app/controllers/blog/categories_controller.rb
1146
+ - lib/nexmo_developer/app/controllers/blog/main_controller.rb
1147
+ - lib/nexmo_developer/app/controllers/blog/tags_controller.rb
1141
1148
  - lib/nexmo_developer/app/controllers/careers_controller.rb
1142
1149
  - lib/nexmo_developer/app/controllers/concerns/.keep
1143
1150
  - lib/nexmo_developer/app/controllers/dashboard_controller.rb
@@ -1156,6 +1163,7 @@ files:
1156
1163
  - lib/nexmo_developer/app/controllers/use_case_controller.rb
1157
1164
  - lib/nexmo_developer/app/extensions/nokogiri/html/document.rb
1158
1165
  - lib/nexmo_developer/app/helpers/application_helper.rb
1166
+ - lib/nexmo_developer/app/helpers/blog_helper.rb
1159
1167
  - lib/nexmo_developer/app/helpers/date_range_helper.rb
1160
1168
  - lib/nexmo_developer/app/helpers/navigation_helper.rb
1161
1169
  - lib/nexmo_developer/app/helpers/parameter_values_helper.rb
@@ -1166,6 +1174,9 @@ files:
1166
1174
  - lib/nexmo_developer/app/middleware/nexmo_developer/visitor_id.rb
1167
1175
  - lib/nexmo_developer/app/models/api_error.rb
1168
1176
  - lib/nexmo_developer/app/models/application_record.rb
1177
+ - lib/nexmo_developer/app/models/blog/author.rb
1178
+ - lib/nexmo_developer/app/models/blog/blogpost.rb
1179
+ - lib/nexmo_developer/app/models/blog/category.rb
1169
1180
  - lib/nexmo_developer/app/models/concerns/.keep
1170
1181
  - lib/nexmo_developer/app/models/concerns/publishable.rb
1171
1182
  - lib/nexmo_developer/app/models/event.rb
@@ -1204,6 +1215,9 @@ files:
1204
1215
  - lib/nexmo_developer/app/presenters/sidenav_subitem.rb
1205
1216
  - lib/nexmo_developer/app/presenters/title_normalizer.rb
1206
1217
  - lib/nexmo_developer/app/presenters/tutorial_list_item.rb
1218
+ - lib/nexmo_developer/app/services/author_parser.rb
1219
+ - lib/nexmo_developer/app/services/blogpost_parser.rb
1220
+ - lib/nexmo_developer/app/services/category_parser.rb
1207
1221
  - lib/nexmo_developer/app/services/diff.rb
1208
1222
  - lib/nexmo_developer/app/services/email_validator.rb
1209
1223
  - lib/nexmo_developer/app/services/feedback_slack_notifier.rb
@@ -1218,6 +1232,7 @@ files:
1218
1232
  - lib/nexmo_developer/app/services/search/document.rb
1219
1233
  - lib/nexmo_developer/app/services/search_terms.rb
1220
1234
  - lib/nexmo_developer/app/services/smartling_api.rb
1235
+ - lib/nexmo_developer/app/services/tag_parser.rb
1221
1236
  - lib/nexmo_developer/app/services/translator/file_translator.rb
1222
1237
  - lib/nexmo_developer/app/services/translator/files_list_coordinator.rb
1223
1238
  - lib/nexmo_developer/app/services/translator/smartling/api/base.rb
@@ -1243,6 +1258,15 @@ files:
1243
1258
  - lib/nexmo_developer/app/views/api_errors/_error_table.html.erb
1244
1259
  - lib/nexmo_developer/app/views/api_errors/index.html.erb
1245
1260
  - lib/nexmo_developer/app/views/api_errors/show.html.erb
1261
+ - lib/nexmo_developer/app/views/blog/authors/_social_links.html.erb
1262
+ - lib/nexmo_developer/app/views/blog/authors/show.html.erb
1263
+ - lib/nexmo_developer/app/views/blog/blogpost/_blogpost.html.erb
1264
+ - lib/nexmo_developer/app/views/blog/blogpost/_blogpost_with_image.html.erb
1265
+ - lib/nexmo_developer/app/views/blog/blogpost/_tag_labels.html.erb
1266
+ - lib/nexmo_developer/app/views/blog/blogpost/index.html.erb
1267
+ - lib/nexmo_developer/app/views/blog/blogpost/show.html.erb
1268
+ - lib/nexmo_developer/app/views/blog/categories/show.html.erb
1269
+ - lib/nexmo_developer/app/views/blog/tags/show.html.erb
1246
1270
  - lib/nexmo_developer/app/views/careers/index.html.erb
1247
1271
  - lib/nexmo_developer/app/views/code_languages/_icon.html.erb
1248
1272
  - lib/nexmo_developer/app/views/contribute/administration/page-links.md
@@ -1588,6 +1612,7 @@ files:
1588
1612
  - lib/nexmo_developer/github_deploy_key.enc
1589
1613
  - lib/nexmo_developer/lib/common_errors.rb
1590
1614
  - lib/nexmo_developer/lib/tasks/.keep
1615
+ - lib/nexmo_developer/lib/tasks/blog.rake
1591
1616
  - lib/nexmo_developer/lib/tasks/cache.rake
1592
1617
  - lib/nexmo_developer/lib/tasks/careers.rake
1593
1618
  - lib/nexmo_developer/lib/tasks/ci.rake
@@ -1 +0,0 @@
1
- {"files":{"manifest-b4bf6e57a53c2bdb55b8998cc94cd00883793c1c37c5e5aea3ef6749b4f6d92b.js":{"logical_path":"manifest.js","mtime":"2022-02-16T15:54:25+00:00","size":2,"digest":"75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070","integrity":"sha256-daEdpEyAJIa8b2VkCqSKcw8PaExcB6Qro80XNes/sHA="},"application-aa88b3c7bd34ec529f43849541752fda7c9c202aa9fff905be578ef88d103b46.js":{"logical_path":"application.js","mtime":"2022-02-16T15:54:25+00:00","size":3172,"digest":"67f1fd16f949c2794341a44cf839e5436bbef74436e043ead39890d1c3b2e583","integrity":"sha256-Z/H9FvlJwnlDQaRM+DnlQ2u+90Q24EPq05iQ0cOy5YM="},"application-6e9186f7602070c57b5c60de9b45ad12f1fccdcf83e08ea28c809d7a5a42a232.css":{"logical_path":"application.css","mtime":"2022-02-16T15:54:25+00:00","size":8704,"digest":"99228d4019121f891ee008e4db5fb0ffa736bada427f4996d15c9c95d1af58b3","integrity":"sha256-mSKNQBkSH4ke4Ajk21+w/6c2utpCf0mW0VycldGvWLM="}},"assets":{"manifest.js":"manifest-b4bf6e57a53c2bdb55b8998cc94cd00883793c1c37c5e5aea3ef6749b4f6d92b.js","application.js":"application-aa88b3c7bd34ec529f43849541752fda7c9c202aa9fff905be578ef88d103b46.js","application.css":"application-6e9186f7602070c57b5c60de9b45ad12f1fccdcf83e08ea28c809d7a5a42a232.css"}}