rest_framework 0.9.3 → 0.9.4
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 +4 -4
- data/VERSION +1 -1
- data/app/views/layouts/rest_framework.html.erb +6 -1
- data/app/views/rest_framework/_head.html.erb +2 -4
- metadata +4 -4
- /data/app/views/rest_framework/{_external.html.erb → head/_external.html.erb} +0 -0
- /data/app/views/rest_framework/{_shared.html → head/_shared.html} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 64cf1d1a710b4ee12f57fb30cb23d3ba000a2e9072ff991cb40aaa20c3cdf81b
|
|
4
|
+
data.tar.gz: 212edeefb3ffecaf05658cfa301cb161e09201e09fe7dd4deb490c152bebe211
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 907aef47db6388a52f017d3f6a02f8ca07f4d67c59e68ff0a3004cff559ca7fcf4fe88937a1943b6a8afe81802df18d3b31249cc808dd512689bd5f0c62b2b01
|
|
7
|
+
data.tar.gz: 871befe2e9b01875d57171188db84a6eca226d2d37cd170c6c3de9b05f8bd75466447276f22a16f64af030d0f5dfb786790ace1edd59fdc4375f7ede7545a175
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.4
|
|
@@ -2,7 +2,12 @@
|
|
|
2
2
|
<html class="rrf-mode">
|
|
3
3
|
<head>
|
|
4
4
|
<title><%= @title %></title>
|
|
5
|
-
|
|
5
|
+
|
|
6
|
+
<%# These dynamic tags cannot be cached, so include directly instead of in `head` partial. %>
|
|
7
|
+
<%= csrf_meta_tags %>
|
|
8
|
+
<%= csp_meta_tag rescue nil %>
|
|
9
|
+
|
|
10
|
+
<%= render partial: "rest_framework/head", cached: true %>
|
|
6
11
|
</head>
|
|
7
12
|
|
|
8
13
|
<body>
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
<meta charset="utf-8">
|
|
2
2
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
3
|
-
<%= csrf_meta_tags %>
|
|
4
|
-
<%= csp_meta_tag rescue nil %>
|
|
5
3
|
|
|
6
|
-
<%= render partial: "rest_framework/external" %>
|
|
7
|
-
<%= render partial: "rest_framework/shared" %>
|
|
4
|
+
<%= render partial: "rest_framework/head/external" %>
|
|
5
|
+
<%= render partial: "rest_framework/head/shared" %>
|
|
8
6
|
|
|
9
7
|
<style>
|
|
10
8
|
/* Header adjustments. */
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rest_framework
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gregory N. Schmit
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-06-
|
|
11
|
+
date: 2023-06-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -35,13 +35,13 @@ files:
|
|
|
35
35
|
- README.md
|
|
36
36
|
- VERSION
|
|
37
37
|
- app/views/layouts/rest_framework.html.erb
|
|
38
|
-
- app/views/rest_framework/_external.html.erb
|
|
39
38
|
- app/views/rest_framework/_head.html.erb
|
|
40
39
|
- app/views/rest_framework/_html_form.html.erb
|
|
41
40
|
- app/views/rest_framework/_raw_form.html.erb
|
|
42
41
|
- app/views/rest_framework/_route.html.erb
|
|
43
42
|
- app/views/rest_framework/_routes.html.erb
|
|
44
|
-
- app/views/rest_framework/
|
|
43
|
+
- app/views/rest_framework/head/_external.html.erb
|
|
44
|
+
- app/views/rest_framework/head/_shared.html
|
|
45
45
|
- docs/CNAME
|
|
46
46
|
- docs/Gemfile
|
|
47
47
|
- docs/Gemfile.lock
|
|
File without changes
|
|
File without changes
|