markdown-rails 2.0.0.alpha7 → 2.0.0.alpha9
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/lib/markdown-rails/renderer/base.rb +2 -0
- data/lib/markdown-rails/renderer/rails.rb +10 -3
- data/lib/markdown-rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b43dcc40c9f348cff27e3f16d95f312b62e5673f71bb81cbc7a8c1a7e8b4f00
|
4
|
+
data.tar.gz: bf617fefac5972001e04424518b61dd93300c678d68ba30a5e2d9f19dc9474ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4b4d6fd8264ab7fcf10346bcecd35d3e45b8cb05be2285a7118e9f1415f9ce50ae1835395e38d9777d97ef68bd31c82186e14611dacf3271aa95804efa691e1
|
7
|
+
data.tar.gz: 37cc570911399969cdcfb03e4e39ffb8d596e94b4c72b35f2ea20a2cfeb013fee7d8d7079e3749dfdaed2b4cbd2d4749d0fcc5419e0754c2a46df54cea9e7535
|
@@ -3,6 +3,14 @@ module MarkdownRails
|
|
3
3
|
class Rails < Base
|
4
4
|
include ::Rails.application.routes.url_helpers
|
5
5
|
|
6
|
+
# Rendering from Markdown is actually outside of the view
|
7
|
+
# context, so we need to delegate render to the ApplicationController
|
8
|
+
# render method that can render outside of the view context.
|
9
|
+
delegate \
|
10
|
+
:helpers,
|
11
|
+
:render,
|
12
|
+
to: :base_controller
|
13
|
+
|
6
14
|
delegate \
|
7
15
|
:asset_digest_path,
|
8
16
|
:asset_path,
|
@@ -20,7 +28,6 @@ module MarkdownRails
|
|
20
28
|
:video_url,
|
21
29
|
:tag,
|
22
30
|
:content_tag,
|
23
|
-
:render,
|
24
31
|
:request,
|
25
32
|
:turbo_frame_tag,
|
26
33
|
:controller,
|
@@ -32,8 +39,8 @@ module MarkdownRails
|
|
32
39
|
end
|
33
40
|
|
34
41
|
protected
|
35
|
-
def
|
36
|
-
::
|
42
|
+
def base_controller
|
43
|
+
::ApplicationController
|
37
44
|
end
|
38
45
|
end
|
39
46
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: markdown-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.
|
4
|
+
version: 2.0.0.alpha9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brad Gessler
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|