dante2-editor 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +33 -0
- data/Gemfile +25 -0
- data/Gemfile.lock +42 -0
- data/README.md +107 -0
- data/app/assets/index.html +55 -0
- data/app/assets/license.html +52 -0
- data/app/assets/options.html +57 -0
- data/app/assets/store.json +1 -0
- data/app/components/App.cjsx +1083 -0
- data/app/components/blocks/embed.cjsx +109 -0
- data/app/components/blocks/image.cjsx +316 -0
- data/app/components/blocks/placeholder.cjsx +60 -0
- data/app/components/blocks/video.cjsx +75 -0
- data/app/components/debug.cjsx +96 -0
- data/app/components/decorators/link.cjsx +61 -0
- data/app/components/popovers/addButton.cjsx +247 -0
- data/app/components/popovers/image.cjsx +160 -0
- data/app/components/popovers/link.cjsx +87 -0
- data/app/components/popovers/toolTip.cjsx +326 -0
- data/app/data/poc.js +15 -0
- data/app/demo.js +7 -0
- data/app/images/dante/media-loading-placeholder.png +0 -0
- data/app/images/site/dante-demo.png +0 -0
- data/app/images/site/dante-editor-logo.png +0 -0
- data/app/images/site/github-logo.png +0 -0
- data/app/initialize.js +4 -0
- data/app/model/index.js +194 -0
- data/app/styles/dante.scss +22 -0
- data/app/styles/dante/_animations.scss +54 -0
- data/app/styles/dante/_caption.scss +61 -0
- data/app/styles/dante/_debug.scss +124 -0
- data/app/styles/dante/_fonts.scss +17 -0
- data/app/styles/dante/_graf.scss +242 -0
- data/app/styles/dante/_icons.scss +62 -0
- data/app/styles/dante/_media.scss +39 -0
- data/app/styles/dante/_menu.scss +201 -0
- data/app/styles/dante/_needsorder.scss +209 -0
- data/app/styles/dante/_popover.scss +212 -0
- data/app/styles/dante/_post.scss +67 -0
- data/app/styles/dante/_scaffold.scss +24 -0
- data/app/styles/dante/_tooltip.scss +130 -0
- data/app/styles/dante/_utilities.scss +59 -0
- data/app/styles/dante/_variables.scss +96 -0
- data/app/styles/dante/blame.scss +246 -0
- data/app/styles/draft.css +297 -0
- data/app/styles/fonts/dante/dante.eot +0 -0
- data/app/styles/fonts/dante/dante.svg +18 -0
- data/app/styles/fonts/dante/dante.ttf +0 -0
- data/app/styles/fonts/dante/dante.woff +0 -0
- data/app/styles/fonts/dante/fontello.eot +0 -0
- data/app/styles/fonts/dante/fontello.svg +36 -0
- data/app/styles/fonts/dante/fontello.ttf +0 -0
- data/app/styles/fonts/dante/fontello.woff +0 -0
- data/app/styles/layout/layout.scss +64 -0
- data/app/styles/layout/normalize.css +375 -0
- data/app/styles/layout/scaffold.scss +8 -0
- data/app/styles/layout/tooltips.scss +216 -0
- data/app/utils/find_entities.coffee +20 -0
- data/app/utils/html2content.coffee +120 -0
- data/app/utils/logger.coffee +0 -0
- data/app/utils/save_content.coffee +63 -0
- data/app/utils/selection.js +53 -0
- data/config.ru +64 -0
- data/dante2.gemspec +19 -0
- data/docs/app.css +2 -0
- data/docs/app.css.map +1 -0
- data/docs/app.js +3 -0
- data/docs/app.js.map +1 -0
- data/docs/dante-vendors.js +28 -0
- data/docs/dante-vendors.js.map +1 -0
- data/docs/dante.css +2 -0
- data/docs/dante.css.map +1 -0
- data/docs/dante.js +4 -0
- data/docs/dante.js.map +1 -0
- data/docs/doc.html +57 -0
- data/docs/fonts/dante.eot +0 -0
- data/docs/fonts/dante.svg +18 -0
- data/docs/fonts/dante.ttf +0 -0
- data/docs/fonts/dante.woff +0 -0
- data/docs/fonts/fontello.eot +0 -0
- data/docs/fonts/fontello.svg +36 -0
- data/docs/fonts/fontello.ttf +0 -0
- data/docs/fonts/fontello.woff +0 -0
- data/docs/images/dante-editor-logo.png +0 -0
- data/docs/images/github-logo.png +0 -0
- data/docs/index.html +55 -0
- data/docs/license.html +52 -0
- data/lib/dante2-editor.rb +5 -0
- data/lib/dante2-editor/rails.rb +16 -0
- data/lib/dante2-editor/version.rb +5 -0
- data/package.json +61 -0
- data/rakefile +1 -0
- data/webpack.config.js +148 -0
- data/yarn.lock +4704 -0
- metadata +139 -0
metadata
ADDED
@@ -0,0 +1,139 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: dante2-editor
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Miguel Michelson
|
8
|
+
- Cristian Ferrari
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2016-11-24 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: dante-editor yet another Medium editor clone.
|
15
|
+
email:
|
16
|
+
- miguelmichelson@gmail.com
|
17
|
+
- cristianferrarig@gmail.com
|
18
|
+
executables: []
|
19
|
+
extensions: []
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
22
|
+
- ".gitignore"
|
23
|
+
- Gemfile
|
24
|
+
- Gemfile.lock
|
25
|
+
- README.md
|
26
|
+
- app/assets/index.html
|
27
|
+
- app/assets/license.html
|
28
|
+
- app/assets/options.html
|
29
|
+
- app/assets/store.json
|
30
|
+
- app/components/App.cjsx
|
31
|
+
- app/components/blocks/embed.cjsx
|
32
|
+
- app/components/blocks/image.cjsx
|
33
|
+
- app/components/blocks/placeholder.cjsx
|
34
|
+
- app/components/blocks/video.cjsx
|
35
|
+
- app/components/debug.cjsx
|
36
|
+
- app/components/decorators/link.cjsx
|
37
|
+
- app/components/popovers/addButton.cjsx
|
38
|
+
- app/components/popovers/image.cjsx
|
39
|
+
- app/components/popovers/link.cjsx
|
40
|
+
- app/components/popovers/toolTip.cjsx
|
41
|
+
- app/data/poc.js
|
42
|
+
- app/demo.js
|
43
|
+
- app/images/dante/media-loading-placeholder.png
|
44
|
+
- app/images/site/dante-demo.png
|
45
|
+
- app/images/site/dante-editor-logo.png
|
46
|
+
- app/images/site/github-logo.png
|
47
|
+
- app/initialize.js
|
48
|
+
- app/model/index.js
|
49
|
+
- app/styles/dante.scss
|
50
|
+
- app/styles/dante/_animations.scss
|
51
|
+
- app/styles/dante/_caption.scss
|
52
|
+
- app/styles/dante/_debug.scss
|
53
|
+
- app/styles/dante/_fonts.scss
|
54
|
+
- app/styles/dante/_graf.scss
|
55
|
+
- app/styles/dante/_icons.scss
|
56
|
+
- app/styles/dante/_media.scss
|
57
|
+
- app/styles/dante/_menu.scss
|
58
|
+
- app/styles/dante/_needsorder.scss
|
59
|
+
- app/styles/dante/_popover.scss
|
60
|
+
- app/styles/dante/_post.scss
|
61
|
+
- app/styles/dante/_scaffold.scss
|
62
|
+
- app/styles/dante/_tooltip.scss
|
63
|
+
- app/styles/dante/_utilities.scss
|
64
|
+
- app/styles/dante/_variables.scss
|
65
|
+
- app/styles/dante/blame.scss
|
66
|
+
- app/styles/draft.css
|
67
|
+
- app/styles/fonts/dante/dante.eot
|
68
|
+
- app/styles/fonts/dante/dante.svg
|
69
|
+
- app/styles/fonts/dante/dante.ttf
|
70
|
+
- app/styles/fonts/dante/dante.woff
|
71
|
+
- app/styles/fonts/dante/fontello.eot
|
72
|
+
- app/styles/fonts/dante/fontello.svg
|
73
|
+
- app/styles/fonts/dante/fontello.ttf
|
74
|
+
- app/styles/fonts/dante/fontello.woff
|
75
|
+
- app/styles/layout/layout.scss
|
76
|
+
- app/styles/layout/normalize.css
|
77
|
+
- app/styles/layout/scaffold.scss
|
78
|
+
- app/styles/layout/tooltips.scss
|
79
|
+
- app/utils/find_entities.coffee
|
80
|
+
- app/utils/html2content.coffee
|
81
|
+
- app/utils/logger.coffee
|
82
|
+
- app/utils/save_content.coffee
|
83
|
+
- app/utils/selection.js
|
84
|
+
- config.ru
|
85
|
+
- dante2.gemspec
|
86
|
+
- docs/app.css
|
87
|
+
- docs/app.css.map
|
88
|
+
- docs/app.js
|
89
|
+
- docs/app.js.map
|
90
|
+
- docs/dante-vendors.js
|
91
|
+
- docs/dante-vendors.js.map
|
92
|
+
- docs/dante.css
|
93
|
+
- docs/dante.css.map
|
94
|
+
- docs/dante.js
|
95
|
+
- docs/dante.js.map
|
96
|
+
- docs/doc.html
|
97
|
+
- docs/fonts/dante.eot
|
98
|
+
- docs/fonts/dante.svg
|
99
|
+
- docs/fonts/dante.ttf
|
100
|
+
- docs/fonts/dante.woff
|
101
|
+
- docs/fonts/fontello.eot
|
102
|
+
- docs/fonts/fontello.svg
|
103
|
+
- docs/fonts/fontello.ttf
|
104
|
+
- docs/fonts/fontello.woff
|
105
|
+
- docs/images/dante-editor-logo.png
|
106
|
+
- docs/images/github-logo.png
|
107
|
+
- docs/index.html
|
108
|
+
- docs/license.html
|
109
|
+
- lib/dante2-editor.rb
|
110
|
+
- lib/dante2-editor/rails.rb
|
111
|
+
- lib/dante2-editor/version.rb
|
112
|
+
- package.json
|
113
|
+
- rakefile
|
114
|
+
- webpack.config.js
|
115
|
+
- yarn.lock
|
116
|
+
homepage: http://michelson.github.io/Dante/
|
117
|
+
licenses: []
|
118
|
+
metadata: {}
|
119
|
+
post_install_message:
|
120
|
+
rdoc_options: []
|
121
|
+
require_paths:
|
122
|
+
- lib
|
123
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - ">="
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '0'
|
128
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - ">="
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0'
|
133
|
+
requirements: []
|
134
|
+
rubyforge_project:
|
135
|
+
rubygems_version: 2.4.8
|
136
|
+
signing_key:
|
137
|
+
specification_version: 4
|
138
|
+
summary: dante-editor yet another Medium editor clone.
|
139
|
+
test_files: []
|