ckeditor5 1.37.0 → 1.37.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: a066ecae25879291dccf41a1be02409f2b79ade13983b09e645157c8f8bb00e2
|
|
4
|
+
data.tar.gz: 61d2db86b25a88f83ac3394f6d48e0122b86318bf9f1864db75cda8feddd5614
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fda673221be085dd42e173f0a47831934ae4a465cdb7b4942c464c9f3705fa1849edd1fe09cdc9bc2fa9a94394811d48ad4fbced262bde062f5a84bbe00d6f3d
|
|
7
|
+
data.tar.gz: a2c26ac6a7761e6b6255bd5919c843c9b198e5750c3540050081df51685ae02c1955a46e131be3ab5671c34500f85eb5a11f3d36fa4025fc1a2879fff67af8d4
|
data/README.md
CHANGED
|
@@ -99,7 +99,7 @@ CKEditor5::Rails.configure do
|
|
|
99
99
|
|
|
100
100
|
# Optionally, you can specify version of CKEditor 5 to use.
|
|
101
101
|
# If it's not specified the default version specified in the gem will be used.
|
|
102
|
-
# version '48.3.
|
|
102
|
+
# version '48.3.1'
|
|
103
103
|
|
|
104
104
|
# Upload images to the server using the simple upload adapter, instead of Base64 encoding.
|
|
105
105
|
# simple_upload_adapter
|
|
@@ -260,7 +260,7 @@ You can create your own by defining it in the [`config/initializers/ckeditor5.rb
|
|
|
260
260
|
|
|
261
261
|
CKEditor5::Rails.configure do
|
|
262
262
|
# It's possible to override the default preset right in the initializer.
|
|
263
|
-
version '48.3.
|
|
263
|
+
version '48.3.1'
|
|
264
264
|
|
|
265
265
|
# New presets inherit properties from the default preset defined in the initializer.
|
|
266
266
|
# In this example, the custom preset inherits everything from default but disables the menubar:
|
|
@@ -270,7 +270,7 @@ CKEditor5::Rails.configure do
|
|
|
270
270
|
|
|
271
271
|
# In order to define preset from scratch, you can use the `inherit: false` option.
|
|
272
272
|
presets.define :blank_preset, inherit: false do
|
|
273
|
-
version '48.3.
|
|
273
|
+
version '48.3.1'
|
|
274
274
|
|
|
275
275
|
# It tells the integration to fetch the newest security patches and bug fixes.
|
|
276
276
|
# It may be disabled, but it's highly recommended to keep it enabled to avoid
|
|
@@ -394,7 +394,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set
|
|
|
394
394
|
CKEditor5::Rails.configure do
|
|
395
395
|
# ... other configuration
|
|
396
396
|
|
|
397
|
-
version '48.3.
|
|
397
|
+
version '48.3.1'
|
|
398
398
|
end
|
|
399
399
|
```
|
|
400
400
|
|
|
@@ -406,7 +406,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key
|
|
|
406
406
|
CKEditor5::Rails.configure do
|
|
407
407
|
# ... other configuration
|
|
408
408
|
|
|
409
|
-
version '48.3.
|
|
409
|
+
version '48.3.1', apply_patches: false
|
|
410
410
|
end
|
|
411
411
|
```
|
|
412
412
|
|
|
@@ -1386,7 +1386,7 @@ It may be useful when you want to define a preset based on the current user or r
|
|
|
1386
1386
|
class ApplicationController < ActionController::Base
|
|
1387
1387
|
def show
|
|
1388
1388
|
@preset = ckeditor5_preset do
|
|
1389
|
-
version '48.3.
|
|
1389
|
+
version '48.3.1'
|
|
1390
1390
|
|
|
1391
1391
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
|
1392
1392
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
|
@@ -1421,7 +1421,7 @@ If you want to override the preset defined in the initializer, you can search fo
|
|
|
1421
1421
|
class ApplicationController < ActionController::Base
|
|
1422
1422
|
def show
|
|
1423
1423
|
@preset = ckeditor5_preset(:default).override do
|
|
1424
|
-
version '48.3.
|
|
1424
|
+
version '48.3.1'
|
|
1425
1425
|
|
|
1426
1426
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
|
1427
1427
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
|
@@ -1594,7 +1594,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w
|
|
|
1594
1594
|
|
|
1595
1595
|
CKEditor5::Rails.configure do
|
|
1596
1596
|
gpl
|
|
1597
|
-
version '48.3.
|
|
1597
|
+
version '48.3.1'
|
|
1598
1598
|
end
|
|
1599
1599
|
```
|
|
1600
1600
|
|
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.37.
|
|
4
|
+
version: 1.37.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-07-
|
|
12
|
+
date: 2026-07-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|