ponkotsu-md-editor 0.1.1 → 0.1.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/lib/ponkotsu/md/editor/version.rb +2 -6
- data/lib/ponkotsu/md/editor.rb +11 -0
- metadata +8 -7
- /data/{app → lib/app}/assets/javascripts/markdown_editor.js +0 -0
- /data/{app → lib/app}/assets/stylesheets/markdown_editor.css +0 -0
- /data/{app → lib/app}/ponkotsu/md/editor/_editor.html.erb +0 -0
- /data/{app → lib/app}/ponkotsu/md/editor/_input_area.html.erb +0 -0
- /data/{app → lib/app}/ponkotsu/md/editor/_preview_area.html.erb +0 -0
- /data/{app → lib/app}/ponkotsu/md/editor/_toolbar.html.erb +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '094a76006ea2e66ea15d4f6035c0af4af782a25412658a8d6522508928618ac1'
|
|
4
|
+
data.tar.gz: c914be22aebc2acaa259f3da21a7f139f6564d429121dd47bef0b26708c0fe8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cbf47e74bcea4b079f4270210bfbf2ccfbaac0b1f28abe429f30cdd5996967c65f06cf7cdfe2ec095b7c9bacb170bef68e380dfb3373abb5057bf4de971d4487
|
|
7
|
+
data.tar.gz: 499f2f0f4798fe158f7321ae01dc435342dd0d1317fc8a764d831022150ff67b6cbdfa6c315352a079ab3221fc37839f8219ce04a52bc54e796361412a77c806
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
require_relative "editor/version"
|
|
2
|
+
require_relative "editor/helpers"
|
|
3
|
+
require_relative "editor/engine" if defined?(Rails)
|
|
4
|
+
|
|
5
|
+
# Main module for PonkotsuMdEditor gem
|
|
6
|
+
# This gem provides a Markdown editor component for Rails applications
|
|
7
|
+
# and serves as a workaround for Chrome's textarea performance issues
|
|
8
|
+
module PonkotsuMdEditor
|
|
9
|
+
# Base error class for PonkotsuMdEditor specific errors
|
|
10
|
+
class Error < StandardError; end
|
|
11
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ponkotsu-md-editor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- dhq_boiler
|
|
@@ -36,12 +36,13 @@ files:
|
|
|
36
36
|
- LICENSE.txt
|
|
37
37
|
- README.md
|
|
38
38
|
- Rakefile
|
|
39
|
-
- app/assets/javascripts/markdown_editor.js
|
|
40
|
-
- app/assets/stylesheets/markdown_editor.css
|
|
41
|
-
- app/ponkotsu/md/editor/_editor.html.erb
|
|
42
|
-
- app/ponkotsu/md/editor/_input_area.html.erb
|
|
43
|
-
- app/ponkotsu/md/editor/_preview_area.html.erb
|
|
44
|
-
- app/ponkotsu/md/editor/_toolbar.html.erb
|
|
39
|
+
- lib/app/assets/javascripts/markdown_editor.js
|
|
40
|
+
- lib/app/assets/stylesheets/markdown_editor.css
|
|
41
|
+
- lib/app/ponkotsu/md/editor/_editor.html.erb
|
|
42
|
+
- lib/app/ponkotsu/md/editor/_input_area.html.erb
|
|
43
|
+
- lib/app/ponkotsu/md/editor/_preview_area.html.erb
|
|
44
|
+
- lib/app/ponkotsu/md/editor/_toolbar.html.erb
|
|
45
|
+
- lib/ponkotsu/md/editor.rb
|
|
45
46
|
- lib/ponkotsu/md/editor/engine.rb
|
|
46
47
|
- lib/ponkotsu/md/editor/helpers.rb
|
|
47
48
|
- lib/ponkotsu/md/editor/version.rb
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|