ckeditor5 1.31.2 → 1.31.3
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: 58036c91a251e598ddaa14625e3590f4dd698617c7a64f7ff626c734555cf6e8
|
4
|
+
data.tar.gz: 0da0d610f410ce20f730c29dafa005be87888242097980a57b1d9dcb2ced2e16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27446b25e22bc2920180552f7e2b4bf0fff41943c094dd8bbfa8bd3955fbd6260da19e08a5aa2a7d1c01f054f9daf00b8070c8c973fd77f36146f29985d18c5e
|
7
|
+
data.tar.gz: c01371e3acd001b2c04e51d771b2e6639fbff4070f5e8855009e35fed6a347b3dc342a5f87b43f78383bb1767c778cfe0460313d2335e1468b4ba9435cd12b09
|
data/README.md
CHANGED
@@ -91,7 +91,7 @@ CKEditor5::Rails.configure do
|
|
91
91
|
|
92
92
|
# Optionally, you can specify version of CKEditor 5 to use.
|
93
93
|
# If it's not specified the default version specified in the gem will be used.
|
94
|
-
# version '45.
|
94
|
+
# version '45.2.0'
|
95
95
|
|
96
96
|
# Upload images to the server using the simple upload adapter, instead of Base64 encoding.
|
97
97
|
# simple_upload_adapter
|
@@ -216,7 +216,7 @@ You can create your own by defining it in the `config/initializers/ckeditor5.rb`
|
|
216
216
|
|
217
217
|
CKEditor5::Rails.configure do
|
218
218
|
# It's possible to override the default preset right in the initializer.
|
219
|
-
version '45.
|
219
|
+
version '45.2.0'
|
220
220
|
|
221
221
|
# New presets inherit properties from the default preset defined in the initializer.
|
222
222
|
# In this example, the custom preset inherits everything from default but disables the menubar:
|
@@ -226,7 +226,7 @@ CKEditor5::Rails.configure do
|
|
226
226
|
|
227
227
|
# In order to define preset from scratch, you can use the `inherit: false` option.
|
228
228
|
presets.define :blank_preset, inherit: false do
|
229
|
-
version '45.
|
229
|
+
version '45.2.0'
|
230
230
|
|
231
231
|
# It tells the integration to fetch the newest security patches and bug fixes.
|
232
232
|
# It may be disabled, but it's highly recommended to keep it enabled to avoid
|
@@ -348,7 +348,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set
|
|
348
348
|
CKEditor5::Rails.configure do
|
349
349
|
# ... other configuration
|
350
350
|
|
351
|
-
version '45.
|
351
|
+
version '45.2.0'
|
352
352
|
end
|
353
353
|
```
|
354
354
|
|
@@ -360,7 +360,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key
|
|
360
360
|
CKEditor5::Rails.configure do
|
361
361
|
# ... other configuration
|
362
362
|
|
363
|
-
version '45.
|
363
|
+
version '45.2.0', apply_patches: false
|
364
364
|
end
|
365
365
|
```
|
366
366
|
|
@@ -1340,7 +1340,7 @@ It may be useful when you want to define a preset based on the current user or r
|
|
1340
1340
|
class ApplicationController < ActionController::Base
|
1341
1341
|
def show
|
1342
1342
|
@preset = ckeditor5_preset do
|
1343
|
-
version '45.
|
1343
|
+
version '45.2.0'
|
1344
1344
|
|
1345
1345
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
1346
1346
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
@@ -1375,7 +1375,7 @@ If you want to override the preset defined in the initializer, you can search fo
|
|
1375
1375
|
class ApplicationController < ActionController::Base
|
1376
1376
|
def show
|
1377
1377
|
@preset = ckeditor5_preset(:default).override do
|
1378
|
-
version '45.
|
1378
|
+
version '45.2.0'
|
1379
1379
|
|
1380
1380
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
1381
1381
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
@@ -1548,7 +1548,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w
|
|
1548
1548
|
|
1549
1549
|
CKEditor5::Rails.configure do
|
1550
1550
|
gpl
|
1551
|
-
version '45.
|
1551
|
+
version '45.2.0'
|
1552
1552
|
end
|
1553
1553
|
```
|
1554
1554
|
|
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.31.
|
4
|
+
version: 1.31.3
|
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: 2025-
|
12
|
+
date: 2025-06-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|