storyblok-richtext-renderer 0.0.1 → 0.0.2
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/.gitignore +1 -0
- data/lib/.DS_Store +0 -0
- data/lib/{storyblok/richtext.rb → richtext.rb} +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/marks/bold.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/marks/code.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/marks/italic.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/marks/link.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/marks/mark.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/marks/strike.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/marks/strong.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/marks/underline.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/blockquote.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/blok.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/bullet_list.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/code_block.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/hard_break.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/heading.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/horizontal_rule.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/image.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/list_item.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/node.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/ordered_list.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/paragraph.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/html_renderer/nodes/text.rb +0 -0
- data/lib/{storyblok/richtext → richtext}/version.rb +1 -1
- data/storyblok.gemspec +2 -2
- metadata +27 -28
- data/lib/storyblok/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d805147d58369c12404f9836b38804b0572f938cb1dee1c82846385b7ed4795f
|
4
|
+
data.tar.gz: ccf44a0e37a1bb5ffff3ee31defb7c1ab1a28ff834d7b1ea2bffd8c60cf5a08e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8945bd8a29e9f2a60bebdbee5b80d5adc1dd57de11141f3043a8241f45cfc61f6a4c2b5291b42c3d2196f18ef40b7eb18b2cab1acfed3a76da4b5310b8a9c385
|
7
|
+
data.tar.gz: 2535d6772f96b9a22395cf10c7529fa21efbb6a45524473a496a292b3358b7db12442b32776b92cdfbcab31d5e2dc796601c860b4f313789606234f53475c465
|
data/.gitignore
CHANGED
data/lib/.DS_Store
CHANGED
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/storyblok.gemspec
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
require File.expand_path('../lib/
|
1
|
+
require File.expand_path('../lib/richtext/version', __FILE__)
|
2
2
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
4
|
gem.name = 'storyblok-richtext-renderer'
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
|
|
13
13
|
gem.files = Dir['{**/}{.*,*}'].select { |path| File.file?(path) && !path.start_with?('pkg') && !path.end_with?('.gem') }
|
14
14
|
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
|
15
15
|
gem.test_files = gem.files.grep(%r{^spec/})
|
16
|
-
gem.require_paths = ['lib
|
16
|
+
gem.require_paths = ['lib']
|
17
17
|
|
18
18
|
gem.add_development_dependency 'bundler', '~> 1.5'
|
19
19
|
gem.add_development_dependency 'rspec', '~> 3'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: storyblok-richtext-renderer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Storyblok (Alexander Feiglstorfer)
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-09-
|
11
|
+
date: 2019-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,31 +52,30 @@ files:
|
|
52
52
|
- Gemfile
|
53
53
|
- README.md
|
54
54
|
- lib/.DS_Store
|
55
|
-
- lib/
|
56
|
-
- lib/
|
57
|
-
- lib/
|
58
|
-
- lib/
|
59
|
-
- lib/
|
60
|
-
- lib/
|
61
|
-
- lib/
|
62
|
-
- lib/
|
63
|
-
- lib/
|
64
|
-
- lib/
|
65
|
-
- lib/
|
66
|
-
- lib/
|
67
|
-
- lib/
|
68
|
-
- lib/
|
69
|
-
- lib/
|
70
|
-
- lib/
|
71
|
-
- lib/
|
72
|
-
- lib/
|
73
|
-
- lib/
|
74
|
-
- lib/
|
75
|
-
- lib/
|
76
|
-
- lib/
|
77
|
-
- lib/
|
78
|
-
- lib/
|
79
|
-
- lib/storyblok/richtext/version.rb
|
55
|
+
- lib/richtext.rb
|
56
|
+
- lib/richtext/html_renderer.rb
|
57
|
+
- lib/richtext/html_renderer/marks/bold.rb
|
58
|
+
- lib/richtext/html_renderer/marks/code.rb
|
59
|
+
- lib/richtext/html_renderer/marks/italic.rb
|
60
|
+
- lib/richtext/html_renderer/marks/link.rb
|
61
|
+
- lib/richtext/html_renderer/marks/mark.rb
|
62
|
+
- lib/richtext/html_renderer/marks/strike.rb
|
63
|
+
- lib/richtext/html_renderer/marks/strong.rb
|
64
|
+
- lib/richtext/html_renderer/marks/underline.rb
|
65
|
+
- lib/richtext/html_renderer/nodes/blockquote.rb
|
66
|
+
- lib/richtext/html_renderer/nodes/blok.rb
|
67
|
+
- lib/richtext/html_renderer/nodes/bullet_list.rb
|
68
|
+
- lib/richtext/html_renderer/nodes/code_block.rb
|
69
|
+
- lib/richtext/html_renderer/nodes/hard_break.rb
|
70
|
+
- lib/richtext/html_renderer/nodes/heading.rb
|
71
|
+
- lib/richtext/html_renderer/nodes/horizontal_rule.rb
|
72
|
+
- lib/richtext/html_renderer/nodes/image.rb
|
73
|
+
- lib/richtext/html_renderer/nodes/list_item.rb
|
74
|
+
- lib/richtext/html_renderer/nodes/node.rb
|
75
|
+
- lib/richtext/html_renderer/nodes/ordered_list.rb
|
76
|
+
- lib/richtext/html_renderer/nodes/paragraph.rb
|
77
|
+
- lib/richtext/html_renderer/nodes/text.rb
|
78
|
+
- lib/richtext/version.rb
|
80
79
|
- storyblok.gemspec
|
81
80
|
homepage: https://github.com/storyblok/storyblok-ruby-richtext-renderer
|
82
81
|
licenses:
|
@@ -85,7 +84,7 @@ metadata: {}
|
|
85
84
|
post_install_message:
|
86
85
|
rdoc_options: []
|
87
86
|
require_paths:
|
88
|
-
- lib
|
87
|
+
- lib
|
89
88
|
required_ruby_version: !ruby/object:Gem::Requirement
|
90
89
|
requirements:
|
91
90
|
- - ">="
|
data/lib/storyblok/.DS_Store
DELETED
Binary file
|