richer_text 0.15.0 → 0.16.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b163192b82f3d7dd12dc87947662ec0d48ac222d725c69a08c937b235b712ee6
|
4
|
+
data.tar.gz: f70ee93612cb1b8c1604e76801fcd621ac50afa337a10b957fb99004dbb71cd8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90ba2c059d81782a76bf12e24b905f0a95736496176349555a7f2b8fe9808e231518163b64fee3d341c66768a56f3a1994e8ebf7c29ecb3328caaf8a28f06ae3
|
7
|
+
data.tar.gz: 31f544b425897ab96918320afe4b4e59eb852c9f7430ec2712794063a7573cdc25c2115a25493960f8836da31924ae1c68b13d6b9a125d3d92c9eeeb5c536a80
|
@@ -27,10 +27,10 @@ module RicherText
|
|
27
27
|
if destination.join("package.json").exist?
|
28
28
|
say "Adding dependencies to package.json", :green
|
29
29
|
|
30
|
-
run "npm install highlight.js @afomera/richer-text
|
31
|
-
run "bun add highlight.js @afomera/richer-text
|
32
|
-
run "yarn add highlight.js @afomera/richer-text
|
33
|
-
run "pnpm add highlight.js @afomera/richer-text
|
30
|
+
run "npm install highlight.js @afomera/richer-text" if destination.join("package-lock.json").exist?
|
31
|
+
run "bun add highlight.js @afomera/richer-text" if destination.join("bun.lockb").exist?
|
32
|
+
run "yarn add highlight.js @afomera/richer-text" if destination.join("yarn.lock").exist?
|
33
|
+
run "pnpm add highlight.js @afomera/richer-text" if destination.join("pnpm-lock.yaml").exist?
|
34
34
|
end
|
35
35
|
|
36
36
|
say "Adding import to application.js", :green
|
data/lib/richer_text/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: richer_text
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrea Fomera
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|