ckeditor5 1.36.0 → 1.36.1
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/README.md +8 -8
- data/lib/ckeditor5/rails/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 176a1a844ad3d2302bdd5e2ba7b905e0b1dc9703699f95b831a9516daf616b13
|
|
4
|
+
data.tar.gz: d0a3d50c0d136cd475f9ff95712e42d464e57ff20ededf3145c8b4cfffdc5392
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 482c804a43fe91ef7dd408ca330ab1cf24df80835ea289927c852ac46948b238574f060ad73544c6f10c0e8a53f828809a8b8a1abda5840578342b5246562ec1
|
|
7
|
+
data.tar.gz: 7a102e56e646e672f7ffdc6a7315203aef2ff57a36acd4e833f4bece96e3180e1edccc1eb4f71f35a0f691ba4b488cdb93dba438a56057cdbec9272c4f34a0d0
|
data/README.md
CHANGED
|
@@ -96,7 +96,7 @@ CKEditor5::Rails.configure do
|
|
|
96
96
|
|
|
97
97
|
# Optionally, you can specify version of CKEditor 5 to use.
|
|
98
98
|
# If it's not specified the default version specified in the gem will be used.
|
|
99
|
-
# version '
|
|
99
|
+
# version '48.0.0'
|
|
100
100
|
|
|
101
101
|
# Upload images to the server using the simple upload adapter, instead of Base64 encoding.
|
|
102
102
|
# simple_upload_adapter
|
|
@@ -249,7 +249,7 @@ You can create your own by defining it in the `config/initializers/ckeditor5.rb`
|
|
|
249
249
|
|
|
250
250
|
CKEditor5::Rails.configure do
|
|
251
251
|
# It's possible to override the default preset right in the initializer.
|
|
252
|
-
version '
|
|
252
|
+
version '48.0.0'
|
|
253
253
|
|
|
254
254
|
# New presets inherit properties from the default preset defined in the initializer.
|
|
255
255
|
# In this example, the custom preset inherits everything from default but disables the menubar:
|
|
@@ -259,7 +259,7 @@ CKEditor5::Rails.configure do
|
|
|
259
259
|
|
|
260
260
|
# In order to define preset from scratch, you can use the `inherit: false` option.
|
|
261
261
|
presets.define :blank_preset, inherit: false do
|
|
262
|
-
version '
|
|
262
|
+
version '48.0.0'
|
|
263
263
|
|
|
264
264
|
# It tells the integration to fetch the newest security patches and bug fixes.
|
|
265
265
|
# It may be disabled, but it's highly recommended to keep it enabled to avoid
|
|
@@ -383,7 +383,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set
|
|
|
383
383
|
CKEditor5::Rails.configure do
|
|
384
384
|
# ... other configuration
|
|
385
385
|
|
|
386
|
-
version '
|
|
386
|
+
version '48.0.0'
|
|
387
387
|
end
|
|
388
388
|
```
|
|
389
389
|
|
|
@@ -395,7 +395,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key
|
|
|
395
395
|
CKEditor5::Rails.configure do
|
|
396
396
|
# ... other configuration
|
|
397
397
|
|
|
398
|
-
version '
|
|
398
|
+
version '48.0.0', apply_patches: false
|
|
399
399
|
end
|
|
400
400
|
```
|
|
401
401
|
|
|
@@ -1375,7 +1375,7 @@ It may be useful when you want to define a preset based on the current user or r
|
|
|
1375
1375
|
class ApplicationController < ActionController::Base
|
|
1376
1376
|
def show
|
|
1377
1377
|
@preset = ckeditor5_preset do
|
|
1378
|
-
version '
|
|
1378
|
+
version '48.0.0'
|
|
1379
1379
|
|
|
1380
1380
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
|
1381
1381
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
|
@@ -1410,7 +1410,7 @@ If you want to override the preset defined in the initializer, you can search fo
|
|
|
1410
1410
|
class ApplicationController < ActionController::Base
|
|
1411
1411
|
def show
|
|
1412
1412
|
@preset = ckeditor5_preset(:default).override do
|
|
1413
|
-
version '
|
|
1413
|
+
version '48.0.0'
|
|
1414
1414
|
|
|
1415
1415
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
|
1416
1416
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
|
@@ -1583,7 +1583,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w
|
|
|
1583
1583
|
|
|
1584
1584
|
CKEditor5::Rails.configure do
|
|
1585
1585
|
gpl
|
|
1586
|
-
version '
|
|
1586
|
+
version '48.0.0'
|
|
1587
1587
|
end
|
|
1588
1588
|
```
|
|
1589
1589
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ckeditor5
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.36.
|
|
4
|
+
version: 1.36.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mateusz Bagiński
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2026-
|
|
12
|
+
date: 2026-04-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|