lexxy 0.8.0.beta → 0.8.2.beta

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: 3fc8f89f7bc3aa89a55ea8bb4f780f81fceaa5d8dd3c70e14fbcf58ae01d8084
4
- data.tar.gz: 832134912d90fcf02c6e0266e422e1389bdc7a8f6ec29a0e01371bb20ce2816f
3
+ metadata.gz: eb219286204cb2ff3821b1ff3946c1171ed1ed31068fd6806499a2a31274fba6
4
+ data.tar.gz: '0524893bac9c780433954d22344380894e744a29b462710a82e4c2adf2c8ed44'
5
5
  SHA512:
6
- metadata.gz: '086309d1ac806aea8ea161e523cb303d359c14efbe5c597d98b4d342ca29efcdd3a65079d63876d321af1f16cf4bfea56c2dab9c3885583afd1fa760570a1ebd'
7
- data.tar.gz: 544f3d06a97e21ea0136e3da758f10777666a4c98be90e720f31a74b59b928b511ad7efc1a57bd6a0253854487ec410c3a2fdbda6ff10316833345d0c0703c03
6
+ metadata.gz: 39ed051a72c18d7e1cc94562c5368883b44493e1f554f6396141ecdb965abb68ab2ae37402b1ad4157f2bbd7cfdaa318c312466893eee8fad1b7be32c98b9817
7
+ data.tar.gz: 5faa5512ba3446b4bb5de082318671839515caf7004b99c12f6e772db2c6bba1fa4aa34f597ff68eba41f5a9edc1891e0b402b916d4f1cedb3b42d8e99e28efd
data/README.md CHANGED
@@ -5,6 +5,8 @@ A modern rich text editor for Rails.
5
5
  > [!IMPORTANT]
6
6
  > This is an early beta. It hasn't been battle-tested yet. Please try it out and report any issues you find.
7
7
 
8
+ **[Try it out!](https://basecamp.github.io/lexxy/try-it)**
9
+
8
10
  ## Features
9
11
 
10
12
  - Built on top of [Lexical](https://lexical.dev), the powerful text editor framework from Meta.
@@ -32,7 +34,7 @@ This is an early beta. Here's what's coming next:
32
34
  - [x] Text highlighting
33
35
  - [x] Configuration hooks.
34
36
  - [x] Standalone JS package: to use in non-Rails environments.
35
- - [ ] Image galleries: The only remaining feature for full Action Text compatibility
37
+ - [x] Image galleries: The only remaining feature for full Action Text compatibility
36
38
  - [ ] Install task that generates the necessary JS and adds stylesheets.
37
39
 
38
40
  ## Contributing
@@ -43,3 +45,7 @@ This is an early beta. Here's what's coming next:
43
45
  ## License
44
46
 
45
47
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
48
+
49
+ ---
50
+
51
+ [![CI](https://github.com/basecamp/lexxy/actions/workflows/ci.yml/badge.svg)](https://github.com/basecamp/lexxy/actions/workflows/ci.yml)
data/Rakefile CHANGED
@@ -6,3 +6,9 @@ load "rails/tasks/engine.rake"
6
6
  load "rails/tasks/statistics.rake"
7
7
 
8
8
  require "bundler/gem_tasks"
9
+
10
+ task :yarn_build do
11
+ sh "yarn build"
12
+ end
13
+
14
+ Rake::Task["build"].enhance([ :yarn_build ])