ckeditor5 1.32.3 โ 1.32.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 +21 -20
- 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: 6af082abe532b357713c5721bc2d09ac997b82575ebb489972660a04bd54a8cc
|
4
|
+
data.tar.gz: 96b3756f2871e601a2d94fee7b219891d797ed68e494febdf2fde55d9e327094
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21253dd14871585157335c197667b4948e602e1e79aba499a3611870ca4051d5f862456cf0cdac575bf6d02ac4dfc143f49a1398065d679d5bc7d4b42f7000ff
|
7
|
+
data.tar.gz: 63891a4f79289dabea5ba74d2a328fc09b37161078851beb6120ef4a2928d233c7ea0b2921c2df53b5dbb311ac7ecb8268eee3f45867ccb9b078c8d7f5261c6a
|
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# CKEditor 5 Rails Integration โจ
|
2
2
|
|
3
3
|
[](LICENSE)
|
4
|
+

|
4
5
|
[](https://rubygems.org/gems/ckeditor5)
|
5
6
|
[](https://rubygems.org/gems/ckeditor5)
|
6
7
|
[](https://codecov.io/gh/mati365/ckeditor5-rails)
|
@@ -21,17 +22,6 @@ CKEditor 5 Ruby on Rails integration gem. Provides seamless integration of CKEdi
|
|
21
22
|
<img src="docs/intro-classic-editor.png" alt="CKEditor 5 Classic Editor in Ruby on Rails application">
|
22
23
|
</p>
|
23
24
|
|
24
|
-
## Psst... ๐
|
25
|
-
|
26
|
-
If you're looking for similar stuff, check these out:
|
27
|
-
|
28
|
-
* [ckeditor5-phoenix](https://github.com/Mati365/ckeditor5-phoenix)
|
29
|
-
Seamless CKEditor 5 integration for Phoenix Framework. Plug & play support for LiveView forms with dynamic content, localization, and custom builds.
|
30
|
-
|
31
|
-
* [ckeditor5-livewire](https://github.com/Mati365/ckeditor5-livewire)
|
32
|
-
Drop-in CKEditor 5 solution for Laravel + Livewire apps. Works great with Blade forms too. Includes JS hooks, flexible config, and easy customization.
|
33
|
-
|
34
|
-
|
35
25
|
## Installation ๐ ๏ธ
|
36
26
|
|
37
27
|
Add this line to your application's Gemfile:
|
@@ -102,7 +92,7 @@ CKEditor5::Rails.configure do
|
|
102
92
|
|
103
93
|
# Optionally, you can specify version of CKEditor 5 to use.
|
104
94
|
# If it's not specified the default version specified in the gem will be used.
|
105
|
-
# version '46.0.
|
95
|
+
# version '46.0.2'
|
106
96
|
|
107
97
|
# Upload images to the server using the simple upload adapter, instead of Base64 encoding.
|
108
98
|
# simple_upload_adapter
|
@@ -134,7 +124,6 @@ For extending CKEditor's functionality, refer to the [plugins directory](https:/
|
|
134
124
|
## Table of Contents ๐
|
135
125
|
|
136
126
|
- [CKEditor 5 Rails Integration โจ](#ckeditor-5-rails-integration-)
|
137
|
-
- [Psst... ๐](#psst-)
|
138
127
|
- [Installation ๐ ๏ธ](#installation-๏ธ)
|
139
128
|
- [Try Demos! ๐ฎ โจ](#try-demos--)
|
140
129
|
- [Table of Contents ๐](#table-of-contents-)
|
@@ -215,6 +204,7 @@ For extending CKEditor's functionality, refer to the [plugins directory](https:/
|
|
215
204
|
- [Gem Development ๐ ](#gem-development-)
|
216
205
|
- [Building NPM package ๐ฆ](#building-npm-package-)
|
217
206
|
- [Running tests ๐งช](#running-tests-)
|
207
|
+
- [Psst... ๐](#psst-)
|
218
208
|
- [Trademarks ๐](#trademarks-)
|
219
209
|
- [License ๐](#license-)
|
220
210
|
|
@@ -229,7 +219,7 @@ You can create your own by defining it in the `config/initializers/ckeditor5.rb`
|
|
229
219
|
|
230
220
|
CKEditor5::Rails.configure do
|
231
221
|
# It's possible to override the default preset right in the initializer.
|
232
|
-
version '46.0.
|
222
|
+
version '46.0.2'
|
233
223
|
|
234
224
|
# New presets inherit properties from the default preset defined in the initializer.
|
235
225
|
# In this example, the custom preset inherits everything from default but disables the menubar:
|
@@ -239,7 +229,7 @@ CKEditor5::Rails.configure do
|
|
239
229
|
|
240
230
|
# In order to define preset from scratch, you can use the `inherit: false` option.
|
241
231
|
presets.define :blank_preset, inherit: false do
|
242
|
-
version '46.0.
|
232
|
+
version '46.0.2'
|
243
233
|
|
244
234
|
# It tells the integration to fetch the newest security patches and bug fixes.
|
245
235
|
# It may be disabled, but it's highly recommended to keep it enabled to avoid
|
@@ -361,7 +351,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set
|
|
361
351
|
CKEditor5::Rails.configure do
|
362
352
|
# ... other configuration
|
363
353
|
|
364
|
-
version '46.0.
|
354
|
+
version '46.0.2'
|
365
355
|
end
|
366
356
|
```
|
367
357
|
|
@@ -373,7 +363,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key
|
|
373
363
|
CKEditor5::Rails.configure do
|
374
364
|
# ... other configuration
|
375
365
|
|
376
|
-
version '46.0.
|
366
|
+
version '46.0.2', apply_patches: false
|
377
367
|
end
|
378
368
|
```
|
379
369
|
|
@@ -1353,7 +1343,7 @@ It may be useful when you want to define a preset based on the current user or r
|
|
1353
1343
|
class ApplicationController < ActionController::Base
|
1354
1344
|
def show
|
1355
1345
|
@preset = ckeditor5_preset do
|
1356
|
-
version '46.0.
|
1346
|
+
version '46.0.2'
|
1357
1347
|
|
1358
1348
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
1359
1349
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
@@ -1388,7 +1378,7 @@ If you want to override the preset defined in the initializer, you can search fo
|
|
1388
1378
|
class ApplicationController < ActionController::Base
|
1389
1379
|
def show
|
1390
1380
|
@preset = ckeditor5_preset(:default).override do
|
1391
|
-
version '46.0.
|
1381
|
+
version '46.0.2'
|
1392
1382
|
|
1393
1383
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
1394
1384
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
@@ -1561,7 +1551,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w
|
|
1561
1551
|
|
1562
1552
|
CKEditor5::Rails.configure do
|
1563
1553
|
gpl
|
1564
|
-
version '46.0.
|
1554
|
+
version '46.0.2'
|
1565
1555
|
end
|
1566
1556
|
```
|
1567
1557
|
|
@@ -2370,6 +2360,17 @@ If you want to watch the tests, you can use the following command:
|
|
2370
2360
|
bundle exec guard -g rspec
|
2371
2361
|
```
|
2372
2362
|
|
2363
|
+
## Psst... ๐
|
2364
|
+
|
2365
|
+
If you're looking for similar stuff, check these out:
|
2366
|
+
|
2367
|
+
* [ckeditor5-phoenix](https://github.com/Mati365/ckeditor5-phoenix)
|
2368
|
+
Seamless CKEditor 5 integration for Phoenix Framework. Plug & play support for LiveView forms with dynamic content, localization, and custom builds.
|
2369
|
+
|
2370
|
+
* [ckeditor5-livewire](https://github.com/Mati365/ckeditor5-livewire)
|
2371
|
+
Drop-in CKEditor 5 solution for Laravel + Livewire apps. Works great with Blade forms too. Includes JS hooks, flexible config, and easy customization.
|
2372
|
+
|
2373
|
+
|
2373
2374
|
## Trademarks ๐
|
2374
2375
|
|
2375
2376
|
CKEditorยฎ is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com/) All rights reserved. For more information about the license of CKEditorยฎ please visit [CKEditor's licensing page](https://ckeditor.com/legal/ckeditor-oss-license/).
|
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.32.
|
4
|
+
version: 1.32.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: 2025-08-
|
12
|
+
date: 2025-08-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|