shepherdjs_rails 2.1.0 → 2.3.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 +2 -2
- data/lib/shepherdjs_rails/version.rb +1 -1
- data/vendor/assets/javascripts/shepherd.esm.js +8341 -0
- data/vendor/assets/javascripts/shepherd.esm.js.map +1 -0
- data/vendor/assets/javascripts/shepherd.js +7818 -3313
- data/vendor/assets/javascripts/shepherd.js.map +1 -1
- data/vendor/assets/javascripts/shepherd.min.js +2 -6
- data/vendor/assets/javascripts/shepherd.min.js.map +1 -1
- data/vendor/assets/stylesheets/shepherd-theme-dark.css +1 -200
- data/vendor/assets/stylesheets/shepherd-theme-default.css +1 -200
- data/vendor/assets/stylesheets/shepherd-theme-square-dark.css +1 -200
- data/vendor/assets/stylesheets/shepherd-theme-square.css +1 -200
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef0477d4a209b1c99d3d6e5d83997ce79dfed095e5ed21cb92ff5e04ca372c40
|
4
|
+
data.tar.gz: 73a597bc516cd4011d2392fa1a5a0bc08b2435124fc39ecc32e2269bad6a2b61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb4a3cf56bc7365c5973d822dc480ca594047711df8ca71d264a07fc7c54592cf7da941eec4a2bec26071c45dcd4144f0fb80d61ed1fb87dce96571dc81f4687
|
7
|
+
data.tar.gz: 84999e13fccd3ccb3c879eabbf31003d07e73eae1d941603610b2b86f296157eb76825663e93d9840bb1c62560cafcc73c381ad8ae4d43b96370ceb0ce0ceca6
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# shepherdjs_rails
|
2
2
|
|
3
|
-
This gem wraps the [Shepherd](https://github.com/shipshapecode/shepherd
|
3
|
+
This gem wraps the [Shepherd](https://github.com/shipshapecode/shepherd) JavaScript library so that it can be included easily in the Rails asset pipeline.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -23,7 +23,7 @@ Or install it yourself as:
|
|
23
23
|
add shepherdjs_rails to your application.js manifest
|
24
24
|
|
25
25
|
```
|
26
|
-
//= require shepherd
|
26
|
+
//= require shepherd.min
|
27
27
|
```
|
28
28
|
|
29
29
|
and include the stylesheets in your application.css manifest
|