ckeditor5 1.27.1 → 1.27.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: 33d6497e8df86eb181f2ef10d462941c777e42a1896c8fd972c957383cdbda3b
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: d4a752edc043709ae4cf442ba65a276d44a5296a0fbd4e040370656fa383164f
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 1748af28f3bbfb57eff0ef29d59e309ee0a8a16909e789f6ae6b861ef5cfc40ff8aa2d433851a8f365ee2186000e117df957749362648f253b494a884a7d3690
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 04bc6c662455fb4393b429843f00a4f75e91ee30c54eb68fc16394ba32d09dfc023b530ea801558dbe3dfa9311bb637010cc9da8c43351749d9ee9a82ae61402
         
     | 
    
        data/README.md
    CHANGED
    
    | 
         @@ -87,7 +87,7 @@ CKEditor5::Rails.configure do 
     | 
|
| 
       87 
87 
     | 
    
         | 
| 
       88 
88 
     | 
    
         
             
              # Optionally, you can specify version of CKEditor 5 to use.
         
     | 
| 
       89 
89 
     | 
    
         
             
              # If it's not specified the default version specified in the gem will be used.
         
     | 
| 
       90 
     | 
    
         
            -
              # version '44. 
     | 
| 
      
 90 
     | 
    
         
            +
              # version '44.3.0'
         
     | 
| 
       91 
91 
     | 
    
         | 
| 
       92 
92 
     | 
    
         
             
              # Upload images to the server using the simple upload adapter, instead of Base64 encoding.
         
     | 
| 
       93 
93 
     | 
    
         
             
              # simple_upload_adapter
         
     | 
| 
         @@ -210,7 +210,7 @@ You can create your own by defining it in the `config/initializers/ckeditor5.rb` 
     | 
|
| 
       210 
210 
     | 
    
         | 
| 
       211 
211 
     | 
    
         
             
            CKEditor5::Rails.configure do
         
     | 
| 
       212 
212 
     | 
    
         
             
              # It's possible to override the default preset right in the initializer.
         
     | 
| 
       213 
     | 
    
         
            -
              version '44. 
     | 
| 
      
 213 
     | 
    
         
            +
              version '44.3.0'
         
     | 
| 
       214 
214 
     | 
    
         | 
| 
       215 
215 
     | 
    
         
             
              # New presets inherit properties from the default preset defined in the initializer.
         
     | 
| 
       216 
216 
     | 
    
         
             
              # In this example, the custom preset inherits everything from default but disables the menubar:
         
     | 
| 
         @@ -220,7 +220,7 @@ CKEditor5::Rails.configure do 
     | 
|
| 
       220 
220 
     | 
    
         | 
| 
       221 
221 
     | 
    
         
             
              # In order to define preset from scratch, you can use the `inherit: false` option.
         
     | 
| 
       222 
222 
     | 
    
         
             
              presets.define :blank_preset, inherit: false do
         
     | 
| 
       223 
     | 
    
         
            -
                version '44. 
     | 
| 
      
 223 
     | 
    
         
            +
                version '44.3.0'
         
     | 
| 
       224 
224 
     | 
    
         | 
| 
       225 
225 
     | 
    
         
             
                # It tells the integration to fetch the newest security patches and bug fixes.
         
     | 
| 
       226 
226 
     | 
    
         
             
                # It may be disabled, but it's highly recommended to keep it enabled to avoid
         
     | 
| 
         @@ -342,7 +342,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set 
     | 
|
| 
       342 
342 
     | 
    
         
             
            CKEditor5::Rails.configure do
         
     | 
| 
       343 
343 
     | 
    
         
             
              # ... other configuration
         
     | 
| 
       344 
344 
     | 
    
         | 
| 
       345 
     | 
    
         
            -
              version '44. 
     | 
| 
      
 345 
     | 
    
         
            +
              version '44.3.0'
         
     | 
| 
       346 
346 
     | 
    
         
             
            end
         
     | 
| 
       347 
347 
     | 
    
         
             
            ```
         
     | 
| 
       348 
348 
     | 
    
         | 
| 
         @@ -354,7 +354,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key 
     | 
|
| 
       354 
354 
     | 
    
         
             
            CKEditor5::Rails.configure do
         
     | 
| 
       355 
355 
     | 
    
         
             
              # ... other configuration
         
     | 
| 
       356 
356 
     | 
    
         | 
| 
       357 
     | 
    
         
            -
              version '44. 
     | 
| 
      
 357 
     | 
    
         
            +
              version '44.3.0', apply_patches: false
         
     | 
| 
       358 
358 
     | 
    
         
             
            end
         
     | 
| 
       359 
359 
     | 
    
         
             
            ```
         
     | 
| 
       360 
360 
     | 
    
         | 
| 
         @@ -1301,7 +1301,7 @@ It may be useful when you want to define a preset based on the current user or r 
     | 
|
| 
       1301 
1301 
     | 
    
         
             
            class ApplicationController < ActionController::Base
         
     | 
| 
       1302 
1302 
     | 
    
         
             
              def show
         
     | 
| 
       1303 
1303 
     | 
    
         
             
                @preset = ckeditor5_preset do
         
     | 
| 
       1304 
     | 
    
         
            -
                  version '44. 
     | 
| 
      
 1304 
     | 
    
         
            +
                  version '44.3.0'
         
     | 
| 
       1305 
1305 
     | 
    
         | 
| 
       1306 
1306 
     | 
    
         
             
                  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
         
     | 
| 
       1307 
1307 
     | 
    
         
             
                          :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
         
     | 
| 
         @@ -1336,7 +1336,7 @@ If you want to override the preset defined in the initializer, you can search fo 
     | 
|
| 
       1336 
1336 
     | 
    
         
             
            class ApplicationController < ActionController::Base
         
     | 
| 
       1337 
1337 
     | 
    
         
             
              def show
         
     | 
| 
       1338 
1338 
     | 
    
         
             
                @preset = ckeditor5_preset(:default).override do
         
     | 
| 
       1339 
     | 
    
         
            -
                  version '44. 
     | 
| 
      
 1339 
     | 
    
         
            +
                  version '44.3.0'
         
     | 
| 
       1340 
1340 
     | 
    
         | 
| 
       1341 
1341 
     | 
    
         
             
                  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
         
     | 
| 
       1342 
1342 
     | 
    
         
             
                          :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
         
     | 
| 
         @@ -1509,7 +1509,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w 
     | 
|
| 
       1509 
1509 
     | 
    
         | 
| 
       1510 
1510 
     | 
    
         
             
            CKEditor5::Rails.configure do
         
     | 
| 
       1511 
1511 
     | 
    
         
             
              gpl
         
     | 
| 
       1512 
     | 
    
         
            -
              version '44. 
     | 
| 
      
 1512 
     | 
    
         
            +
              version '44.3.0'
         
     | 
| 
       1513 
1513 
     | 
    
         
             
            end
         
     | 
| 
       1514 
1514 
     | 
    
         
             
            ```
         
     | 
| 
       1515 
1515 
     | 
    
         | 
    
        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.27. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.27.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: 2025- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2025-03-06 00:00:00.000000000 Z
         
     | 
| 
       13 
13 
     | 
    
         
             
            dependencies:
         
     | 
| 
       14 
14 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       15 
15 
     | 
    
         
             
              name: rails
         
     |