oas_rails 0.10.0 → 0.10.1

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: 3ce2a79462161474eeb19ee711b0bdf11615c64e5695732587ebecfeef8a5c3f
4
- data.tar.gz: 7f6df06bb7de5dffaf94019e3ba9f9bab2cc59d17b72573f69f945635b435291
3
+ metadata.gz: e7aba5fe8b9983dd63d1ff69467c419f26ac1c0733737da6994d65542ff00a5c
4
+ data.tar.gz: 7df7cc51ffcdb2690c42a9aaa6eef1d13ede77a96f6ae5b97891be16cc76dae1
5
5
  SHA512:
6
- metadata.gz: c4e58fd69b4ebc8903541e2c9bef51b435c578e18af5a05c3c63f5faf7fad11defabd35bfb4a129b4977bd034a5f432661b3d5c1f81ee6fb8462b81741f187ba
7
- data.tar.gz: 599a61527af3f05fe535d57c7016b00a52046564b4d792c40bb9b5aa7413917d2898f36da20bf3e7064f480ab45ffcd095f9168f0865cad7397aebec3aba9256
6
+ metadata.gz: f01774e088f4edd899ec6fe02373f29ddf609c8102f4759f372d32ffa36798fa3f35ee3c2f6137d21063b51d22c8df94de9f1fbaa12c4ad198ff2150a92df16b
7
+ data.tar.gz: 15c21a08bb93729fc3c1f129a2b4008f44132cf01e9b10a58e72a8c867fc985bd3f3e3a4f32cab03ff621ceaa41e674b6d927047351b254f92a51111ad15a69c
@@ -1,19 +1,34 @@
1
- <script type="module" src="https://unpkg.com/rapidoc/dist/rapidoc-min.js"></script>
2
- <rapi-doc
3
- spec-url = "<%= OasRails::Engine.routes.find_script_name({}) %>.json"
4
- theme = "dark"
5
- bg-color="#0F172A"
6
- text-color= "#f7f7f7"
7
- show-header = 'false'
8
- primary-color = "#2de410"
9
- font-size="largest"
10
- show-method-in-nav-bar="as-colored-text"
11
- nav-text-color="#f7f7f7"
12
- nav-item-spacing="relaxed"
13
- allow-spec-file-download="true"
14
- >
15
- </rapi-doc>
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title><%= OasRails.config.info.title %></title>
5
+ <%= csrf_meta_tags %>
6
+ <%= csp_meta_tag %>
7
+ <meta charset="utf-8">
8
+ <!-- Important: rapi-doc uses utf8 characters -->
9
+ <script type="module" src="https://unpkg.com/rapidoc/dist/rapidoc-min.js"></script>
10
+ </head>
11
+ <body>
12
+ <rapi-doc
13
+ spec-url="<%= OasRails::Engine.routes.find_script_name({}) %>.json"
14
+ theme="dark"
15
+ bg-color="#0F172A"
16
+ text-color="#f7f7f7"
17
+ show-header="false"
18
+ primary-color="#2de410"
19
+ font-size="largest"
20
+ show-method-in-nav-bar="as-colored-text"
21
+ nav-text-color="#f7f7f7"
22
+ nav-item-spacing="relaxed"
23
+ allow-spec-file-download="true"
24
+ >
25
+ </rapi-doc>
16
26
 
17
- <style>
18
- rapi-doc::part(btn btn-outline){ width: 220px; min-width: 170px; }
19
- </style>
27
+ <style>
28
+ rapi-doc::part(btn btn-outline) {
29
+ width: 220px;
30
+ min-width: 170px;
31
+ }
32
+ </style>
33
+ </body>
34
+ </html>
@@ -15,9 +15,9 @@ module OasRails
15
15
  end
16
16
 
17
17
  def extract_word_before(string, param)
18
- regex = %r{/(\w+)/\{#{param}\}}
18
+ regex = %r{/([\w-]+)/\{#{param}\}}
19
19
  match = string.match(regex)
20
- match ? match[1] : nil
20
+ match ? match[1] : ""
21
21
  end
22
22
 
23
23
  def build
@@ -71,7 +71,8 @@ module OasRails
71
71
  erb_result = ERB.new(File.read(fixture_file)).result
72
72
  fixture_data = YAML.safe_load(
73
73
  erb_result,
74
- permitted_classes: [Symbol, ActiveSupport::HashWithIndifferentAccess]
74
+ aliases: true,
75
+ permitted_classes: [Symbol, ActiveSupport::HashWithIndifferentAccess, Time]
75
76
  ).with_indifferent_access
76
77
  rescue Errno::ENOENT
77
78
  return {}
@@ -1,3 +1,3 @@
1
1
  module OasRails
2
- VERSION = "0.10.0"
2
+ VERSION = "0.10.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oas_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - a-chacon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-26 00:00:00.000000000 Z
11
+ date: 2025-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: easy_talk