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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b65e4847207aab94ccfbf43b490d7a7847483c66e64c90b3cc5c1ed9cc47e926
4
- data.tar.gz: cdc1fea85f1d11be3fb2fd0e627dad3ea9565a39fd7c644e930e5b5b2dae9139
3
+ metadata.gz: 6af082abe532b357713c5721bc2d09ac997b82575ebb489972660a04bd54a8cc
4
+ data.tar.gz: 96b3756f2871e601a2d94fee7b219891d797ed68e494febdf2fde55d9e327094
5
5
  SHA512:
6
- metadata.gz: 44dbb133d22bdcedbcf60b57972df66f4cec4d17df615fe4fe73baceb1844ff118a7c8158a0e7dea8a598e827f11b794cd3496ff2216168628bd4f9146041a7c
7
- data.tar.gz: 1e7c6bd61e40159c7eae9d595d8d1ead749ba8ddb26b6abb930ac5527a5724138c9c7bad3ec56f50321c0d63971d94781e157c1414a397b9a113fda611dd2ad9
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: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](LICENSE)
4
+ ![NPM Version](https://img.shields.io/npm/v/ckeditor5-rails?style=flat-square)
4
5
  [![Gem Version](https://img.shields.io/gem/v/ckeditor5?style=flat-square)](https://rubygems.org/gems/ckeditor5)
5
6
  [![Gem Total Downloads](https://img.shields.io/gem/dt/ckeditor5?style=flat-square&color=orange)](https://rubygems.org/gems/ckeditor5)
6
7
  [![Coverage](https://img.shields.io/codecov/c/github/mati365/ckeditor5-rails?style=flat-square)](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.1'
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.1'
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.1'
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.1'
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.1', apply_patches: false
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.1'
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.1'
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.1'
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/).
@@ -2,8 +2,8 @@
2
2
 
3
3
  module CKEditor5
4
4
  module Rails
5
- VERSION = '1.32.3'
5
+ VERSION = '1.32.4'
6
6
 
7
- DEFAULT_CKEDITOR_VERSION = '46.0.1'
7
+ DEFAULT_CKEDITOR_VERSION = '46.0.2'
8
8
  end
9
9
  end
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.3
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 00:00:00.000000000 Z
12
+ date: 2025-08-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails