activeadmin_quill_editor 1.0.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e375a2fb59c984b11edb01fcd2fe96105f6d4ed7799265ab7807f0643128e364
4
- data.tar.gz: 8d66f041b8f72232f9ac9f71f4d26062c77770249f03a1b3603d8f8426f99fdf
3
+ metadata.gz: bf94d0ea455088b72ac7be86f3806c05b198382a4ea60dd764478802e8a96a71
4
+ data.tar.gz: 5b33ccb578cf5a7ea15a713faf72198cb0832fb6674aa2909a4af76520afb723
5
5
  SHA512:
6
- metadata.gz: a1efd9801f1b6cd50fefdbdc8f9dda6107fad108b72707be9d893d67e473c85c3012be31f7c54e7b603d3e0da8bce394165c24433b195fa9edd90d861375e6ab
7
- data.tar.gz: 333d51a8e177b7243ed71e6765d6c4031c5c076616dbd996fb604625656d799aabb21e32c3c890a483b14e0783414707cff23ddc80e4c275c655bcd123da5339
6
+ metadata.gz: 10c3d5a3d71cea53b2f3eb4eb57739aac06a6f3059e5813732bb1606765e76683809142bec4b5471f9a646f9de7214a20f3ffd6919295f76c361fd1d237e29bc
7
+ data.tar.gz: 64880dab1738516ac61fcf91b1251c1f0127eaeec1ded2ec011d113bccca8466a62eaae6756b6870808c1b891348b2d969cde469ee25476be20e21eada4fabb4
data/README.md CHANGED
@@ -13,6 +13,8 @@ Please :star: if you like it.
13
13
 
14
14
  ## Install
15
15
 
16
+ _NOTE_: Ruby 2.7 is supported until version 1.1.0
17
+
16
18
  After installing Active Admin, add to your Gemfile: `gem 'activeadmin_quill_editor'` (and execute *bundle*)
17
19
 
18
20
  If you installed Active Admin without Webpacker support (default for now):
@@ -48,6 +50,8 @@ In your Active Admin models, form configuration, set the text inputs with `as: :
48
50
 
49
51
  **data-options**: permits to set *quill editor* options directly - see [options list](https://quilljs.com/docs/configuration/)
50
52
 
53
+ If you are using Action Text (`has_rich_text`) on the same field of the Quill editor please take a look at [this workaround](https://github.com/blocknotes/activeadmin_quill_editor/issues/33#issuecomment-1965996947) to avoid issues.
54
+
51
55
  ## Examples
52
56
 
53
57
  ### Basic usage
@@ -2,7 +2,7 @@
2
2
 
3
3
  module ActiveAdmin
4
4
  module QuillEditor
5
- VERSION = '1.0.0'
5
+ VERSION = '1.2.0'
6
6
  QUILL_VERSION = '1.3.7'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeadmin_quill_editor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattia Roccoberton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-19 00:00:00.000000000 Z
11
+ date: 2024-02-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeadmin
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '2.9'
20
+ - - "<"
18
21
  - !ruby/object:Gem::Version
19
- version: '2.0'
22
+ version: '4'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '2.9'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '2.0'
32
+ version: '4'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: appraisal
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -67,7 +73,7 @@ licenses:
67
73
  - MIT
68
74
  metadata:
69
75
  homepage_uri: https://github.com/blocknotes/activeadmin_quill_editor
70
- changelog_uri: https://github.com/blocknotes/activeadmin_quill_editor/blob/master/CHANGELOG.md
76
+ changelog_uri: https://github.com/blocknotes/activeadmin_quill_editor/blob/main/CHANGELOG.md
71
77
  source_code_uri: https://github.com/blocknotes/activeadmin_quill_editor
72
78
  rubygems_mfa_required: 'true'
73
79
  post_install_message:
@@ -78,14 +84,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
78
84
  requirements:
79
85
  - - ">="
80
86
  - !ruby/object:Gem::Version
81
- version: 2.6.0
87
+ version: '3.0'
82
88
  required_rubygems_version: !ruby/object:Gem::Requirement
83
89
  requirements:
84
90
  - - ">="
85
91
  - !ruby/object:Gem::Version
86
92
  version: '0'
87
93
  requirements: []
88
- rubygems_version: 3.1.6
94
+ rubygems_version: 3.4.19
89
95
  signing_key:
90
96
  specification_version: 4
91
97
  summary: Quill Editor for ActiveAdmin