ckeditor5 1.35.1 → 1.35.2
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: 5d9375b48f6954da3ae54b23fe613b9e7d907dd347bdea8b8d97e7caa2b806c2
|
|
4
|
+
data.tar.gz: 7bdbeee5fc549c9d5451b1c186a94d55492986aed0c10b48b75e9110cf67d54a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a63df9b1af9b9be7b2e838aa1fd78ce76d9fcbc6cd5e51149f20175cad537337acf904a56b71e55733a54c14a6d1e0f8a53a921aa171e06f4cf29faebe51f485
|
|
7
|
+
data.tar.gz: 2fa511f59885d1450727aab1c15f6a72431a3699728ebf526c4041d6542f209ee52481e54e2844945c1a8ace8c7ac35a89727bdde753039cdbda80b747676ff5
|
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 '47.6.
|
|
99
|
+
# version '47.6.1'
|
|
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 '47.6.
|
|
252
|
+
version '47.6.1'
|
|
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 '47.6.
|
|
262
|
+
version '47.6.1'
|
|
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
|
|
@@ -381,7 +381,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set
|
|
|
381
381
|
CKEditor5::Rails.configure do
|
|
382
382
|
# ... other configuration
|
|
383
383
|
|
|
384
|
-
version '47.6.
|
|
384
|
+
version '47.6.1'
|
|
385
385
|
end
|
|
386
386
|
```
|
|
387
387
|
|
|
@@ -393,7 +393,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key
|
|
|
393
393
|
CKEditor5::Rails.configure do
|
|
394
394
|
# ... other configuration
|
|
395
395
|
|
|
396
|
-
version '47.6.
|
|
396
|
+
version '47.6.1', apply_patches: false
|
|
397
397
|
end
|
|
398
398
|
```
|
|
399
399
|
|
|
@@ -1373,7 +1373,7 @@ It may be useful when you want to define a preset based on the current user or r
|
|
|
1373
1373
|
class ApplicationController < ActionController::Base
|
|
1374
1374
|
def show
|
|
1375
1375
|
@preset = ckeditor5_preset do
|
|
1376
|
-
version '47.6.
|
|
1376
|
+
version '47.6.1'
|
|
1377
1377
|
|
|
1378
1378
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
|
1379
1379
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
|
@@ -1408,7 +1408,7 @@ If you want to override the preset defined in the initializer, you can search fo
|
|
|
1408
1408
|
class ApplicationController < ActionController::Base
|
|
1409
1409
|
def show
|
|
1410
1410
|
@preset = ckeditor5_preset(:default).override do
|
|
1411
|
-
version '47.6.
|
|
1411
|
+
version '47.6.1'
|
|
1412
1412
|
|
|
1413
1413
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
|
1414
1414
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
|
@@ -1581,7 +1581,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w
|
|
|
1581
1581
|
|
|
1582
1582
|
CKEditor5::Rails.configure do
|
|
1583
1583
|
gpl
|
|
1584
|
-
version '47.6.
|
|
1584
|
+
version '47.6.1'
|
|
1585
1585
|
end
|
|
1586
1586
|
```
|
|
1587
1587
|
|
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.35.
|
|
4
|
+
version: 1.35.2
|
|
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-03-
|
|
12
|
+
date: 2026-03-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|