codemirror-rails 4.13 → 5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/lib/codemirror/rails/version.rb +2 -2
  3. data/vendor/assets/javascripts/codemirror.js +1025 -448
  4. data/vendor/assets/javascripts/codemirror/addons/edit/matchbrackets.js +1 -1
  5. data/vendor/assets/stylesheets/codemirror.css +13 -2
  6. data/vendor/assets/stylesheets/codemirror/themes/3024-day.css +2 -0
  7. data/vendor/assets/stylesheets/codemirror/themes/3024-night.css +2 -0
  8. data/vendor/assets/stylesheets/codemirror/themes/ambiance.css +4 -6
  9. data/vendor/assets/stylesheets/codemirror/themes/base16-dark.css +2 -0
  10. data/vendor/assets/stylesheets/codemirror/themes/base16-light.css +2 -0
  11. data/vendor/assets/stylesheets/codemirror/themes/blackboard.css +2 -0
  12. data/vendor/assets/stylesheets/codemirror/themes/cobalt.css +2 -0
  13. data/vendor/assets/stylesheets/codemirror/themes/erlang-dark.css +2 -0
  14. data/vendor/assets/stylesheets/codemirror/themes/lesser-dark.css +2 -0
  15. data/vendor/assets/stylesheets/codemirror/themes/mbo.css +2 -0
  16. data/vendor/assets/stylesheets/codemirror/themes/mdn-like.css +2 -0
  17. data/vendor/assets/stylesheets/codemirror/themes/midnight.css +2 -0
  18. data/vendor/assets/stylesheets/codemirror/themes/monokai.css +2 -0
  19. data/vendor/assets/stylesheets/codemirror/themes/night.css +2 -0
  20. data/vendor/assets/stylesheets/codemirror/themes/paraiso-dark.css +2 -0
  21. data/vendor/assets/stylesheets/codemirror/themes/paraiso-light.css +2 -0
  22. data/vendor/assets/stylesheets/codemirror/themes/pastel-on-dark.css +3 -0
  23. data/vendor/assets/stylesheets/codemirror/themes/rubyblue.css +2 -0
  24. data/vendor/assets/stylesheets/codemirror/themes/solarized.css +6 -6
  25. data/vendor/assets/stylesheets/codemirror/themes/the-matrix.css +2 -0
  26. data/vendor/assets/stylesheets/codemirror/themes/tomorrow-night-eighties.css +2 -0
  27. data/vendor/assets/stylesheets/codemirror/themes/twilight.css +2 -0
  28. data/vendor/assets/stylesheets/codemirror/themes/vibrant-ink.css +2 -0
  29. data/vendor/assets/stylesheets/codemirror/themes/xq-dark.css +2 -0
  30. metadata +1 -1
@@ -81,7 +81,7 @@
81
81
  if (marks.length) {
82
82
  // Kludge to work around the IE bug from issue #1193, where text
83
83
  // input stops going to the textare whever this fires.
84
- if (ie_lt8 && cm.state.focused) cm.display.input.focus();
84
+ if (ie_lt8 && cm.state.focused) cm.focus();
85
85
 
86
86
  var clear = function() {
87
87
  cm.operation(function() {
@@ -4,6 +4,7 @@
4
4
  /* Set height, width, borders, and global font properties here */
5
5
  font-family: monospace;
6
6
  height: 300px;
7
+ color: black;
7
8
  }
8
9
 
9
10
  /* PADDING */
@@ -139,11 +140,9 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
139
140
  the editor. You probably shouldn't touch them. */
140
141
 
141
142
  .CodeMirror {
142
- line-height: 1;
143
143
  position: relative;
144
144
  overflow: hidden;
145
145
  background: white;
146
- color: black;
147
146
  }
148
147
 
149
148
  .CodeMirror-scroll {
@@ -215,6 +214,11 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
215
214
  cursor: default;
216
215
  z-index: 4;
217
216
  }
217
+ .CodeMirror-gutter-wrapper {
218
+ -webkit-user-select: none;
219
+ -moz-user-select: none;
220
+ user-select: none;
221
+ }
218
222
 
219
223
  .CodeMirror-lines {
220
224
  cursor: text;
@@ -235,6 +239,7 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
235
239
  z-index: 2;
236
240
  position: relative;
237
241
  overflow: visible;
242
+ -webkit-tap-highlight-color: transparent;
238
243
  }
239
244
  .CodeMirror-wrap pre {
240
245
  word-wrap: break-word;
@@ -256,6 +261,10 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
256
261
 
257
262
  .CodeMirror-widget {}
258
263
 
264
+ .CodeMirror-code {
265
+ outline: none;
266
+ }
267
+
259
268
  .CodeMirror-measure {
260
269
  position: absolute;
261
270
  width: 100%;
@@ -283,6 +292,8 @@ div.CodeMirror-cursors {
283
292
  .CodeMirror-selected { background: #d9d9d9; }
284
293
  .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
285
294
  .CodeMirror-crosshair { cursor: crosshair; }
295
+ .CodeMirror ::selection { background: #d7d4f0; }
296
+ .CodeMirror ::-moz-selection { background: #d7d4f0; }
286
297
 
287
298
  .cm-searching {
288
299
  background: #ffa;
@@ -10,6 +10,8 @@
10
10
 
11
11
  .cm-s-3024-day.CodeMirror {background: #f7f7f7; color: #3a3432;}
12
12
  .cm-s-3024-day div.CodeMirror-selected {background: #d6d5d4 !important;}
13
+ .cm-s-3024-day.CodeMirror ::selection { background: #d6d5d4; }
14
+ .cm-s-3024-day.CodeMirror ::-moz-selection { background: #d9d9d9; }
13
15
 
14
16
  .cm-s-3024-day .CodeMirror-gutters {background: #f7f7f7; border-right: 0px;}
15
17
  .cm-s-3024-day .CodeMirror-guttermarker { color: #db2d20; }
@@ -10,6 +10,8 @@
10
10
 
11
11
  .cm-s-3024-night.CodeMirror {background: #090300; color: #d6d5d4;}
12
12
  .cm-s-3024-night div.CodeMirror-selected {background: #3a3432 !important;}
13
+ .cm-s-3024-night.CodeMirror ::selection { background: rgba(58, 52, 50, .99); }
14
+ .cm-s-3024-night.CodeMirror ::-moz-selection { background: rgba(58, 52, 50, .99); }
13
15
  .cm-s-3024-night .CodeMirror-gutters {background: #090300; border-right: 0px;}
14
16
  .cm-s-3024-night .CodeMirror-guttermarker { color: #db2d20; }
15
17
  .cm-s-3024-night .CodeMirror-guttermarker-subtle { color: #5c5855; }
@@ -30,12 +30,10 @@
30
30
  .cm-s-ambiance .CodeMirror-matchingbracket { color: #0f0; }
31
31
  .cm-s-ambiance .CodeMirror-nonmatchingbracket { color: #f22; }
32
32
 
33
- .cm-s-ambiance .CodeMirror-selected {
34
- background: rgba(255, 255, 255, 0.15);
35
- }
36
- .cm-s-ambiance.CodeMirror-focused .CodeMirror-selected {
37
- background: rgba(255, 255, 255, 0.10);
38
- }
33
+ .cm-s-ambiance .CodeMirror-selected { background: rgba(255, 255, 255, 0.15); }
34
+ .cm-s-ambiance.CodeMirror-focused .CodeMirror-selected { background: rgba(255, 255, 255, 0.10); }
35
+ .cm-s-ambiance.CodeMirror ::selection { background: rgba(255, 255, 255, 0.10); }
36
+ .cm-s-ambiance.CodeMirror ::-moz-selection { background: rgba(255, 255, 255, 0.10); }
39
37
 
40
38
  /* Editor styling */
41
39
 
@@ -10,6 +10,8 @@
10
10
 
11
11
  .cm-s-base16-dark.CodeMirror {background: #151515; color: #e0e0e0;}
12
12
  .cm-s-base16-dark div.CodeMirror-selected {background: #303030 !important;}
13
+ .cm-s-base16-dark.CodeMirror ::selection { background: rgba(48, 48, 48, .99); }
14
+ .cm-s-base16-dark.CodeMirror ::-moz-selection { background: rgba(48, 48, 48, .99); }
13
15
  .cm-s-base16-dark .CodeMirror-gutters {background: #151515; border-right: 0px;}
14
16
  .cm-s-base16-dark .CodeMirror-guttermarker { color: #ac4142; }
15
17
  .cm-s-base16-dark .CodeMirror-guttermarker-subtle { color: #505050; }
@@ -10,6 +10,8 @@
10
10
 
11
11
  .cm-s-base16-light.CodeMirror {background: #f5f5f5; color: #202020;}
12
12
  .cm-s-base16-light div.CodeMirror-selected {background: #e0e0e0 !important;}
13
+ .cm-s-base16-light.CodeMirror ::selection { background: #e0e0e0; }
14
+ .cm-s-base16-light.CodeMirror ::-moz-selection { background: #e0e0e0; }
13
15
  .cm-s-base16-light .CodeMirror-gutters {background: #f5f5f5; border-right: 0px;}
14
16
  .cm-s-base16-light .CodeMirror-guttermarker { color: #ac4142; }
15
17
  .cm-s-base16-light .CodeMirror-guttermarker-subtle { color: #b0b0b0; }
@@ -2,6 +2,8 @@
2
2
 
3
3
  .cm-s-blackboard.CodeMirror { background: #0C1021; color: #F8F8F8; }
4
4
  .cm-s-blackboard .CodeMirror-selected { background: #253B76 !important; }
5
+ .cm-s-blackboard.CodeMirror ::selection { background: rgba(37, 59, 118, .99); }
6
+ .cm-s-blackboard.CodeMirror ::-moz-selection { background: rgba(37, 59, 118, .99); }
5
7
  .cm-s-blackboard .CodeMirror-gutters { background: #0C1021; border-right: 0; }
6
8
  .cm-s-blackboard .CodeMirror-guttermarker { color: #FBDE2D; }
7
9
  .cm-s-blackboard .CodeMirror-guttermarker-subtle { color: #888; }
@@ -1,5 +1,7 @@
1
1
  .cm-s-cobalt.CodeMirror { background: #002240; color: white; }
2
2
  .cm-s-cobalt div.CodeMirror-selected { background: #b36539 !important; }
3
+ .cm-s-cobalt.CodeMirror ::selection { background: rgba(179, 101, 57, .99); }
4
+ .cm-s-cobalt.CodeMirror ::-moz-selection { background: rgba(179, 101, 57, .99); }
3
5
  .cm-s-cobalt .CodeMirror-gutters { background: #002240; border-right: 1px solid #aaa; }
4
6
  .cm-s-cobalt .CodeMirror-guttermarker { color: #ffee80; }
5
7
  .cm-s-cobalt .CodeMirror-guttermarker-subtle { color: #d0d0d0; }
@@ -1,5 +1,7 @@
1
1
  .cm-s-erlang-dark.CodeMirror { background: #002240; color: white; }
2
2
  .cm-s-erlang-dark div.CodeMirror-selected { background: #b36539 !important; }
3
+ .cm-s-erlang-dark.CodeMirror ::selection { background: rgba(179, 101, 57, .99); }
4
+ .cm-s-erlang-dark.CodeMirror ::-moz-selection { background: rgba(179, 101, 57, .99); }
3
5
  .cm-s-erlang-dark .CodeMirror-gutters { background: #002240; border-right: 1px solid #aaa; }
4
6
  .cm-s-erlang-dark .CodeMirror-guttermarker { color: white; }
5
7
  .cm-s-erlang-dark .CodeMirror-guttermarker-subtle { color: #d0d0d0; }
@@ -7,6 +7,8 @@ Ported to CodeMirror by Peter Kroon
7
7
  }
8
8
  .cm-s-lesser-dark.CodeMirror { background: #262626; color: #EBEFE7; text-shadow: 0 -1px 1px #262626; }
9
9
  .cm-s-lesser-dark div.CodeMirror-selected {background: #45443B !important;} /* 33322B*/
10
+ .cm-s-lesser-dark.CodeMirror ::selection { background: rgba(69, 68, 59, .99); }
11
+ .cm-s-lesser-dark.CodeMirror ::-moz-selection { background: rgba(69, 68, 59, .99); }
10
12
  .cm-s-lesser-dark .CodeMirror-cursor { border-left: 1px solid white !important; }
11
13
  .cm-s-lesser-dark pre { padding: 0 8px; }/*editable code holder*/
12
14
 
@@ -6,6 +6,8 @@
6
6
 
7
7
  .cm-s-mbo.CodeMirror {background: #2c2c2c; color: #ffffec;}
8
8
  .cm-s-mbo div.CodeMirror-selected {background: #716C62 !important;}
9
+ .cm-s-mbo.CodeMirror ::selection { background: rgba(113, 108, 98, .99); }
10
+ .cm-s-mbo.CodeMirror ::-moz-selection { background: rgba(113, 108, 98, .99); }
9
11
  .cm-s-mbo .CodeMirror-gutters {background: #4e4e4e; border-right: 0px;}
10
12
  .cm-s-mbo .CodeMirror-guttermarker { color: white; }
11
13
  .cm-s-mbo .CodeMirror-guttermarker-subtle { color: grey; }
@@ -9,6 +9,8 @@
9
9
  */
10
10
  .cm-s-mdn-like.CodeMirror { color: #999; background-color: #fff; }
11
11
  .cm-s-mdn-like .CodeMirror-selected { background: #cfc !important; }
12
+ .cm-s-mdn-like.CodeMirror ::selection { background: #cfc; }
13
+ .cm-s-mdn-like.CodeMirror ::-moz-selection { background: #cfc; }
12
14
 
13
15
  .cm-s-mdn-like .CodeMirror-gutters { background: #f8f8f8; border-left: 6px solid rgba(0,83,159,0.65); color: #333; }
14
16
  .cm-s-mdn-like .CodeMirror-linenumber { color: #aaa; margin-left: 3px; }
@@ -15,6 +15,8 @@
15
15
  .cm-s-midnight.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
16
16
 
17
17
  .cm-s-midnight div.CodeMirror-selected {background: #314D67 !important;}
18
+ .cm-s-midnight.CodeMirror ::selection { background: rgba(49, 77, 103, .99); }
19
+ .cm-s-midnight.CodeMirror ::-moz-selection { background: rgba(49, 77, 103, .99); }
18
20
  .cm-s-midnight .CodeMirror-gutters {background: #0F192A; border-right: 1px solid;}
19
21
  .cm-s-midnight .CodeMirror-guttermarker { color: white; }
20
22
  .cm-s-midnight .CodeMirror-guttermarker-subtle { color: #d0d0d0; }
@@ -2,6 +2,8 @@
2
2
 
3
3
  .cm-s-monokai.CodeMirror {background: #272822; color: #f8f8f2;}
4
4
  .cm-s-monokai div.CodeMirror-selected {background: #49483E !important;}
5
+ .cm-s-monokai.CodeMirror ::selection { background: rgba(73, 72, 62, .99); }
6
+ .cm-s-monokai.CodeMirror ::-moz-selection { background: rgba(73, 72, 62, .99); }
5
7
  .cm-s-monokai .CodeMirror-gutters {background: #272822; border-right: 0px;}
6
8
  .cm-s-monokai .CodeMirror-guttermarker { color: white; }
7
9
  .cm-s-monokai .CodeMirror-guttermarker-subtle { color: #d0d0d0; }
@@ -2,6 +2,8 @@
2
2
 
3
3
  .cm-s-night.CodeMirror { background: #0a001f; color: #f8f8f8; }
4
4
  .cm-s-night div.CodeMirror-selected { background: #447 !important; }
5
+ .cm-s-night.CodeMirror ::selection { background: rgba(68, 68, 119, .99); }
6
+ .cm-s-night.CodeMirror ::-moz-selection { background: rgba(68, 68, 119, .99); }
5
7
  .cm-s-night .CodeMirror-gutters { background: #0a001f; border-right: 1px solid #aaa; }
6
8
  .cm-s-night .CodeMirror-guttermarker { color: white; }
7
9
  .cm-s-night .CodeMirror-guttermarker-subtle { color: #bbb; }
@@ -10,6 +10,8 @@
10
10
 
11
11
  .cm-s-paraiso-dark.CodeMirror {background: #2f1e2e; color: #b9b6b0;}
12
12
  .cm-s-paraiso-dark div.CodeMirror-selected {background: #41323f !important;}
13
+ .cm-s-paraiso-dark.CodeMirror ::selection { background: rgba(65, 50, 63, .99); }
14
+ .cm-s-paraiso-dark.CodeMirror ::-moz-selection { background: rgba(65, 50, 63, .99); }
13
15
  .cm-s-paraiso-dark .CodeMirror-gutters {background: #2f1e2e; border-right: 0px;}
14
16
  .cm-s-paraiso-dark .CodeMirror-guttermarker { color: #ef6155; }
15
17
  .cm-s-paraiso-dark .CodeMirror-guttermarker-subtle { color: #776e71; }
@@ -10,6 +10,8 @@
10
10
 
11
11
  .cm-s-paraiso-light.CodeMirror {background: #e7e9db; color: #41323f;}
12
12
  .cm-s-paraiso-light div.CodeMirror-selected {background: #b9b6b0 !important;}
13
+ .cm-s-paraiso-light.CodeMirror ::selection { background: #b9b6b0; }
14
+ .cm-s-paraiso-light.CodeMirror ::-moz-selection { background: #b9b6b0; }
13
15
  .cm-s-paraiso-light .CodeMirror-gutters {background: #e7e9db; border-right: 0px;}
14
16
  .cm-s-paraiso-light .CodeMirror-guttermarker { color: black; }
15
17
  .cm-s-paraiso-light .CodeMirror-guttermarker-subtle { color: #8d8687; }
@@ -14,6 +14,9 @@
14
14
  font-size: 14px;
15
15
  }
16
16
  .cm-s-pastel-on-dark div.CodeMirror-selected { background: rgba(221,240,255,0.2) !important; }
17
+ .cm-s-pastel-on-dark.CodeMirror ::selection { background: rgba(221,240,255,0.2); }
18
+ .cm-s-pastel-on-dark.CodeMirror ::-moz-selection { background: rgba(221,240,255,0.2); }
19
+
17
20
  .cm-s-pastel-on-dark .CodeMirror-gutters {
18
21
  background: #34302f;
19
22
  border-right: 0px;
@@ -1,5 +1,7 @@
1
1
  .cm-s-rubyblue.CodeMirror { background: #112435; color: white; }
2
2
  .cm-s-rubyblue div.CodeMirror-selected { background: #38566F !important; }
3
+ .cm-s-rubyblue.CodeMirror ::selection { background: rgba(56, 86, 111, 0.99); }
4
+ .cm-s-rubyblue.CodeMirror ::-moz-selection { background: rgba(56, 86, 111, 0.99); }
3
5
  .cm-s-rubyblue .CodeMirror-gutters { background: #1F4661; border-right: 7px solid #3E7087; }
4
6
  .cm-s-rubyblue .CodeMirror-guttermarker { color: white; }
5
7
  .cm-s-rubyblue .CodeMirror-guttermarker-subtle { color: #3E7087; }
@@ -94,13 +94,13 @@ http://ethanschoonover.com/solarized/img/solarized-palette.png
94
94
  border-bottom: 1px dotted #dc322f;
95
95
  }
96
96
 
97
- .cm-s-solarized.cm-s-dark .CodeMirror-selected {
98
- background: #073642;
99
- }
97
+ .cm-s-solarized.cm-s-dark .CodeMirror-selected { background: #073642; }
98
+ .cm-s-solarized.cm-s-dark.CodeMirror ::selection { background: rgba(7, 54, 66, 0.99); }
99
+ .cm-s-solarized.cm-s-dark.CodeMirror ::-moz-selection { background: rgba(7, 54, 66, 0.99); }
100
100
 
101
- .cm-s-solarized.cm-s-light .CodeMirror-selected {
102
- background: #eee8d5;
103
- }
101
+ .cm-s-solarized.cm-s-light .CodeMirror-selected { background: #eee8d5; }
102
+ .cm-s-solarized.cm-s-light.CodeMirror ::selection { background: #eee8d5; }
103
+ .cm-s-solarized.cm-s-lightCodeMirror ::-moz-selection { background: #eee8d5; }
104
104
 
105
105
  /* Editor styling */
106
106
 
@@ -1,5 +1,7 @@
1
1
  .cm-s-the-matrix.CodeMirror { background: #000000; color: #00FF00; }
2
2
  .cm-s-the-matrix div.CodeMirror-selected { background: #2D2D2D !important; }
3
+ .cm-s-the-matrix.CodeMirror ::selection { background: rgba(45, 45, 45, 0.99); }
4
+ .cm-s-the-matrix.CodeMirror ::-moz-selection { background: rgba(45, 45, 45, 0.99); }
3
5
  .cm-s-the-matrix .CodeMirror-gutters { background: #060; border-right: 2px solid #00FF00; }
4
6
  .cm-s-the-matrix .CodeMirror-guttermarker { color: #0f0; }
5
7
  .cm-s-the-matrix .CodeMirror-guttermarker-subtle { color: white; }
@@ -10,6 +10,8 @@
10
10
 
11
11
  .cm-s-tomorrow-night-eighties.CodeMirror {background: #000000; color: #CCCCCC;}
12
12
  .cm-s-tomorrow-night-eighties div.CodeMirror-selected {background: #2D2D2D !important;}
13
+ .cm-s-tomorrow-night-eighties.CodeMirror ::selection { background: rgba(45, 45, 45, 0.99); }
14
+ .cm-s-tomorrow-night-eighties.CodeMirror ::-moz-selection { background: rgba(45, 45, 45, 0.99); }
13
15
  .cm-s-tomorrow-night-eighties .CodeMirror-gutters {background: #000000; border-right: 0px;}
14
16
  .cm-s-tomorrow-night-eighties .CodeMirror-guttermarker { color: #f2777a; }
15
17
  .cm-s-tomorrow-night-eighties .CodeMirror-guttermarker-subtle { color: #777; }
@@ -1,5 +1,7 @@
1
1
  .cm-s-twilight.CodeMirror { background: #141414; color: #f7f7f7; } /**/
2
2
  .cm-s-twilight .CodeMirror-selected { background: #323232 !important; } /**/
3
+ .cm-s-twilight.CodeMirror ::selection { background: rgba(50, 50, 50, 0.99); }
4
+ .cm-s-twilight.CodeMirror ::-moz-selection { background: rgba(50, 50, 50, 0.99); }
3
5
 
4
6
  .cm-s-twilight .CodeMirror-gutters { background: #222; border-right: 1px solid #aaa; }
5
7
  .cm-s-twilight .CodeMirror-guttermarker { color: white; }
@@ -2,6 +2,8 @@
2
2
 
3
3
  .cm-s-vibrant-ink.CodeMirror { background: black; color: white; }
4
4
  .cm-s-vibrant-ink .CodeMirror-selected { background: #35493c !important; }
5
+ .cm-s-vibrant-ink.CodeMirror ::selection { background: rgba(53, 73, 60, 0.99); }
6
+ .cm-s-vibrant-ink.CodeMirror ::-moz-selection { background: rgba(53, 73, 60, 0.99); }
5
7
 
6
8
  .cm-s-vibrant-ink .CodeMirror-gutters { background: #002240; border-right: 1px solid #aaa; }
7
9
  .cm-s-vibrant-ink .CodeMirror-guttermarker { color: white; }
@@ -22,6 +22,8 @@ THE SOFTWARE.
22
22
  */
23
23
  .cm-s-xq-dark.CodeMirror { background: #0a001f; color: #f8f8f8; }
24
24
  .cm-s-xq-dark .CodeMirror-selected { background: #27007A !important; }
25
+ .cm-s-xq-dark.CodeMirror ::selection { background: rgba(39, 0, 122, 0.99); }
26
+ .cm-s-xq-dark.CodeMirror ::-moz-selection { background: rgba(39, 0, 122, 0.99); }
25
27
  .cm-s-xq-dark .CodeMirror-gutters { background: #0a001f; border-right: 1px solid #aaa; }
26
28
  .cm-s-xq-dark .CodeMirror-guttermarker { color: #FFBD40; }
27
29
  .cm-s-xq-dark .CodeMirror-guttermarker-subtle { color: #f8f8f8; }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codemirror-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: '4.13'
4
+ version: '5.0'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Fixler