raptor-editor-rails 0.2.2 → 0.3.0
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.
- data/MIT-LICENSE +1 -1
- data/README.md +54 -44
- data/Rakefile +1 -13
- data/lib/generators/raptor_editor_rails/copy/USAGE +10 -0
- data/lib/generators/raptor_editor_rails/copy/copy_generator.rb +8 -0
- data/lib/generators/raptor_editor_rails/install/USAGE +9 -0
- data/lib/generators/raptor_editor_rails/install/install_generator.rb +4 -12
- data/lib/raptor_editor_rails/config.rb +28 -0
- data/lib/raptor_editor_rails/engine.rb +0 -2
- data/lib/raptor_editor_rails/version.rb +2 -2
- data/lib/tasks/raptor_editor_rails_tasks.rake +37 -0
- data/vendor/assets/javascripts/raptor.js +50756 -18013
- data/vendor/assets/stylesheets/raptor-front-end.css +174 -0
- metadata +13 -39
@@ -0,0 +1,174 @@
|
|
1
|
+
/**
|
2
|
+
* Basic color menu plugin default colors.
|
3
|
+
*
|
4
|
+
* @author David Neilsen <david@panmedia.co.nz>
|
5
|
+
*/
|
6
|
+
/* line 6, color-menu-basic/color-menu-basic-front-end.scss */
|
7
|
+
.cms-white {
|
8
|
+
color: #ffffff;
|
9
|
+
}
|
10
|
+
|
11
|
+
/* line 10, color-menu-basic/color-menu-basic-front-end.scss */
|
12
|
+
.cms-black {
|
13
|
+
color: #000000;
|
14
|
+
}
|
15
|
+
|
16
|
+
/* line 14, color-menu-basic/color-menu-basic-front-end.scss */
|
17
|
+
.cms-blue {
|
18
|
+
color: #4f81bd;
|
19
|
+
}
|
20
|
+
|
21
|
+
/* line 18, color-menu-basic/color-menu-basic-front-end.scss */
|
22
|
+
.cms-red {
|
23
|
+
color: #c0504d;
|
24
|
+
}
|
25
|
+
|
26
|
+
/* line 22, color-menu-basic/color-menu-basic-front-end.scss */
|
27
|
+
.cms-green {
|
28
|
+
color: #9bbb59;
|
29
|
+
}
|
30
|
+
|
31
|
+
/* line 26, color-menu-basic/color-menu-basic-front-end.scss */
|
32
|
+
.cms-purple {
|
33
|
+
color: #8064a2;
|
34
|
+
}
|
35
|
+
|
36
|
+
/* line 30, color-menu-basic/color-menu-basic-front-end.scss */
|
37
|
+
.cms-orange {
|
38
|
+
color: #f79646;
|
39
|
+
}
|
40
|
+
|
41
|
+
/* line 34, color-menu-basic/color-menu-basic-front-end.scss */
|
42
|
+
.cms-grey {
|
43
|
+
color: #999;
|
44
|
+
}
|
45
|
+
|
46
|
+
/**
|
47
|
+
* Float plugin default colors.
|
48
|
+
*
|
49
|
+
* @author David Neilsen <david@panmedia.co.nz>
|
50
|
+
*/
|
51
|
+
/* line 6, float/float-front-end.scss */
|
52
|
+
.cms-float-left {
|
53
|
+
float: left;
|
54
|
+
}
|
55
|
+
|
56
|
+
/* line 10, float/float-front-end.scss */
|
57
|
+
.cms-float-right {
|
58
|
+
float: right;
|
59
|
+
}
|
60
|
+
|
61
|
+
/**
|
62
|
+
* Basic font-family menu plugin default fonts.
|
63
|
+
*
|
64
|
+
* @author Nikolay Rodionov <rodi.incave@gmail.com>
|
65
|
+
*/
|
66
|
+
/* line 6, font-family/font-family-front-end.scss */
|
67
|
+
.cms-font-arial {
|
68
|
+
font-family: Arial, Helvetica, sans-serif;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* line 10, font-family/font-family-front-end.scss */
|
72
|
+
.cms-font-palatino {
|
73
|
+
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
|
74
|
+
}
|
75
|
+
|
76
|
+
/* line 14, font-family/font-family-front-end.scss */
|
77
|
+
.cms-font-georgia {
|
78
|
+
font-family: Georgia, serif;
|
79
|
+
}
|
80
|
+
|
81
|
+
/* line 18, font-family/font-family-front-end.scss */
|
82
|
+
.cms-font-times {
|
83
|
+
font-family: "Times New Roman", Times, serif;
|
84
|
+
}
|
85
|
+
|
86
|
+
/* line 22, font-family/font-family-front-end.scss */
|
87
|
+
.cms-font-comic-sans {
|
88
|
+
font-family: "Comic Sans MS", cursive, sans-serif;
|
89
|
+
}
|
90
|
+
|
91
|
+
/* line 26, font-family/font-family-front-end.scss */
|
92
|
+
.cms-font-impact {
|
93
|
+
font-family: Impact, Charcoal, sans-serif;
|
94
|
+
}
|
95
|
+
|
96
|
+
/* line 30, font-family/font-family-front-end.scss */
|
97
|
+
.cms-font-courier {
|
98
|
+
font-family: "Courier New", Courier, monospace;
|
99
|
+
}
|
100
|
+
|
101
|
+
/**
|
102
|
+
* Text align styles.
|
103
|
+
*
|
104
|
+
* @author David Neilsen <david@panmedia.co.nz>
|
105
|
+
*/
|
106
|
+
/* line 6, text-align/style/text-align-front-end.scss */
|
107
|
+
.cms-center {
|
108
|
+
text-align: center;
|
109
|
+
}
|
110
|
+
|
111
|
+
/* line 10, text-align/style/text-align-front-end.scss */
|
112
|
+
.cms-left {
|
113
|
+
text-align: left;
|
114
|
+
}
|
115
|
+
|
116
|
+
/* line 14, text-align/style/text-align-front-end.scss */
|
117
|
+
.cms-right {
|
118
|
+
text-align: right;
|
119
|
+
}
|
120
|
+
|
121
|
+
/* line 18, text-align/style/text-align-front-end.scss */
|
122
|
+
.cms-justify {
|
123
|
+
text-align: justify;
|
124
|
+
}
|
125
|
+
|
126
|
+
/**
|
127
|
+
* Bold formatting styles.
|
128
|
+
*
|
129
|
+
* @author David Neilsen <david@panmedia.co.nz>
|
130
|
+
*/
|
131
|
+
/* line 6, bold/style/bold-front-end.scss */
|
132
|
+
.cms-bold {
|
133
|
+
font-weight: bold;
|
134
|
+
}
|
135
|
+
|
136
|
+
/**
|
137
|
+
* Italic formatting styles.
|
138
|
+
*
|
139
|
+
* @author David Neilsen <david@panmedia.co.nz>
|
140
|
+
*/
|
141
|
+
/* line 6, italic/style/italic-front-end.scss */
|
142
|
+
.cms-italic {
|
143
|
+
font-style: italic;
|
144
|
+
}
|
145
|
+
|
146
|
+
/**
|
147
|
+
* Strike formatting styles.
|
148
|
+
*
|
149
|
+
* @author David Neilsen <david@panmedia.co.nz>
|
150
|
+
*/
|
151
|
+
/* line 6, strike-through/style/strike-front-end.scss */
|
152
|
+
.cms-strike {
|
153
|
+
text-decoration: line-through;
|
154
|
+
}
|
155
|
+
|
156
|
+
/**
|
157
|
+
* Bold formatting styles.
|
158
|
+
*
|
159
|
+
* @author David Neilsen <david@panmedia.co.nz>
|
160
|
+
*/
|
161
|
+
/* line 6, block-quote/style/bold-front-end.scss */
|
162
|
+
.cms-bold {
|
163
|
+
font-weight: bold;
|
164
|
+
}
|
165
|
+
|
166
|
+
/**
|
167
|
+
* Underline formatting styles.
|
168
|
+
*
|
169
|
+
* @author David Neilsen <david@panmedia.co.nz>
|
170
|
+
*/
|
171
|
+
/* line 6, underline/style/underline-front-end.scss */
|
172
|
+
.cms-underline {
|
173
|
+
text-decoration: underline;
|
174
|
+
}
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: raptor-editor-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
|
-
-
|
8
|
+
- PANmedia
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2014-01-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -27,56 +27,30 @@ dependencies:
|
|
27
27
|
- - ! '>'
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: '3.1'
|
30
|
-
- !ruby/object:Gem::Dependency
|
31
|
-
name: jquery-rails
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
|
-
requirements:
|
35
|
-
- - ! '>='
|
36
|
-
- !ruby/object:Gem::Version
|
37
|
-
version: 2.2.0
|
38
|
-
type: :runtime
|
39
|
-
prerelease: false
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
|
-
requirements:
|
43
|
-
- - ! '>='
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
version: 2.2.0
|
46
|
-
- !ruby/object:Gem::Dependency
|
47
|
-
name: jquery-ui-rails
|
48
|
-
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
|
-
requirements:
|
51
|
-
- - ! '>='
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: 4.0.0
|
54
|
-
type: :runtime
|
55
|
-
prerelease: false
|
56
|
-
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
|
-
requirements:
|
59
|
-
- - ! '>='
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: 4.0.0
|
62
30
|
description: The simplest way to get Raptor Editor onto the Asset Pipeline in your
|
63
31
|
Rails applications.
|
64
32
|
email:
|
65
|
-
-
|
33
|
+
- raptor-editor-rails@pan.co.nz
|
66
34
|
executables: []
|
67
35
|
extensions: []
|
68
36
|
extra_rdoc_files: []
|
69
37
|
files:
|
38
|
+
- lib/generators/raptor_editor_rails/copy/copy_generator.rb
|
39
|
+
- lib/generators/raptor_editor_rails/copy/USAGE
|
70
40
|
- lib/generators/raptor_editor_rails/install/install_generator.rb
|
41
|
+
- lib/generators/raptor_editor_rails/install/USAGE
|
71
42
|
- lib/raptor-editor-rails.rb
|
43
|
+
- lib/raptor_editor_rails/config.rb
|
72
44
|
- lib/raptor_editor_rails/engine.rb
|
73
45
|
- lib/raptor_editor_rails/version.rb
|
74
46
|
- lib/raptor_editor_rails.rb
|
47
|
+
- lib/tasks/raptor_editor_rails_tasks.rake
|
75
48
|
- vendor/assets/javascripts/raptor.js
|
49
|
+
- vendor/assets/stylesheets/raptor-front-end.css
|
76
50
|
- MIT-LICENSE
|
77
51
|
- Rakefile
|
78
52
|
- README.md
|
79
|
-
homepage:
|
53
|
+
homepage: https://www.github.com/PANmedia/raptor-editor-rails
|
80
54
|
licenses: []
|
81
55
|
post_install_message:
|
82
56
|
rdoc_options: []
|
@@ -90,7 +64,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
90
64
|
version: '0'
|
91
65
|
segments:
|
92
66
|
- 0
|
93
|
-
hash: -
|
67
|
+
hash: -832327472966913062
|
94
68
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
69
|
none: false
|
96
70
|
requirements:
|
@@ -99,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
73
|
version: '0'
|
100
74
|
segments:
|
101
75
|
- 0
|
102
|
-
hash: -
|
76
|
+
hash: -832327472966913062
|
103
77
|
requirements: []
|
104
78
|
rubyforge_project:
|
105
79
|
rubygems_version: 1.8.25
|