ckeditor5 1.36.3 → 1.36.4
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: e94610ee0bcd4457b55820dd80fd8232b4b251d2f1f8459814052acf33c97647
|
|
4
|
+
data.tar.gz: 30093bcb12d950b9ddb803247096681568b881902b50593dc11b0ef490422f77
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2e506c4f51c4fad202227b4459dbe615bc46972168a156a41fb7c8d485f3169cba7a8fa546ba11552668c701ce588791c20b80fad0393f7e2c3e66165a95353
|
|
7
|
+
data.tar.gz: cbaa17e685043bd3202e05a5f14647e0cf7282778f32d448914d651d8adfc12f6551119abb1cebd6c9ad0d1878cbf0c15541480ff828dec14e43511dee0534de
|
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 '48.1.
|
|
99
|
+
# version '48.1.1'
|
|
100
100
|
|
|
101
101
|
# Upload images to the server using the simple upload adapter, instead of Base64 encoding.
|
|
102
102
|
# simple_upload_adapter
|
|
@@ -253,7 +253,7 @@ You can create your own by defining it in the [`config/initializers/ckeditor5.rb
|
|
|
253
253
|
|
|
254
254
|
CKEditor5::Rails.configure do
|
|
255
255
|
# It's possible to override the default preset right in the initializer.
|
|
256
|
-
version '48.1.
|
|
256
|
+
version '48.1.1'
|
|
257
257
|
|
|
258
258
|
# New presets inherit properties from the default preset defined in the initializer.
|
|
259
259
|
# In this example, the custom preset inherits everything from default but disables the menubar:
|
|
@@ -263,7 +263,7 @@ CKEditor5::Rails.configure do
|
|
|
263
263
|
|
|
264
264
|
# In order to define preset from scratch, you can use the `inherit: false` option.
|
|
265
265
|
presets.define :blank_preset, inherit: false do
|
|
266
|
-
version '48.1.
|
|
266
|
+
version '48.1.1'
|
|
267
267
|
|
|
268
268
|
# It tells the integration to fetch the newest security patches and bug fixes.
|
|
269
269
|
# It may be disabled, but it's highly recommended to keep it enabled to avoid
|
|
@@ -387,7 +387,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set
|
|
|
387
387
|
CKEditor5::Rails.configure do
|
|
388
388
|
# ... other configuration
|
|
389
389
|
|
|
390
|
-
version '48.1.
|
|
390
|
+
version '48.1.1'
|
|
391
391
|
end
|
|
392
392
|
```
|
|
393
393
|
|
|
@@ -399,7 +399,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key
|
|
|
399
399
|
CKEditor5::Rails.configure do
|
|
400
400
|
# ... other configuration
|
|
401
401
|
|
|
402
|
-
version '48.1.
|
|
402
|
+
version '48.1.1', apply_patches: false
|
|
403
403
|
end
|
|
404
404
|
```
|
|
405
405
|
|
|
@@ -1379,7 +1379,7 @@ It may be useful when you want to define a preset based on the current user or r
|
|
|
1379
1379
|
class ApplicationController < ActionController::Base
|
|
1380
1380
|
def show
|
|
1381
1381
|
@preset = ckeditor5_preset do
|
|
1382
|
-
version '48.1.
|
|
1382
|
+
version '48.1.1'
|
|
1383
1383
|
|
|
1384
1384
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
|
1385
1385
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
|
@@ -1414,7 +1414,7 @@ If you want to override the preset defined in the initializer, you can search fo
|
|
|
1414
1414
|
class ApplicationController < ActionController::Base
|
|
1415
1415
|
def show
|
|
1416
1416
|
@preset = ckeditor5_preset(:default).override do
|
|
1417
|
-
version '48.1.
|
|
1417
|
+
version '48.1.1'
|
|
1418
1418
|
|
|
1419
1419
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
|
1420
1420
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
|
@@ -1587,7 +1587,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w
|
|
|
1587
1587
|
|
|
1588
1588
|
CKEditor5::Rails.configure do
|
|
1589
1589
|
gpl
|
|
1590
|
-
version '48.1.
|
|
1590
|
+
version '48.1.1'
|
|
1591
1591
|
end
|
|
1592
1592
|
```
|
|
1593
1593
|
|
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.4
|
|
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-05-
|
|
12
|
+
date: 2026-05-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|