shepherdjs_rails 1.8.1 → 2.0.0.pre.beta.35
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 +10 -6
- data/lib/shepherdjs_rails/version.rb +1 -1
- data/vendor/assets/javascripts/shepherd.js +2550 -550
- data/vendor/assets/javascripts/shepherd.js.map +1 -0
- data/vendor/assets/javascripts/shepherd.min.js +6 -0
- data/vendor/assets/javascripts/shepherd.min.js.map +1 -0
- data/vendor/assets/stylesheets/shepherd-theme-dark.css +146 -222
- data/vendor/assets/stylesheets/shepherd-theme-default.css +146 -222
- data/vendor/assets/stylesheets/shepherd-theme-square-dark.css +146 -224
- data/vendor/assets/stylesheets/shepherd-theme-square.css +146 -224
- metadata +7 -9
- data/vendor/assets/javascripts/tether.js +0 -1443
- data/vendor/assets/stylesheets/shepherd-theme-arrows-fix.css +0 -5
- data/vendor/assets/stylesheets/shepherd-theme-arrows-plain-buttons.css +0 -215
- data/vendor/assets/stylesheets/shepherd-theme-arrows.css +0 -229
- data/vendor/assets/stylesheets/shepherd.css +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1e33aacbdb28c953c08901ba3358bdb5e0c339a1bb9486d0139e80b5505a84c
|
4
|
+
data.tar.gz: fed0bfaa2c0ab2c421db4b3ca965d1b11e12111613dadadad21dd94d4ae10343
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8705350f5360fbcb9bebddb46df5fd0123c73b6697924c2fcaa36b8a075f3763b56e663239839564def179ccd0d55830f8220541951f796101d4d41f17278479
|
7
|
+
data.tar.gz: cb307c12c93dd1d91ff8f41236896f8f29ddf3766063404a69cf7a44dbe892adcf8842bdb106704cae5ffdc243e0f893c5856504e6338a9e1c3480914b86a692
|
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) JavaScript library so that it can be included easily in the Rails asset pipeline.
|
3
|
+
This gem wraps the [Shepherd](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.35) JavaScript library so that it can be included easily in the Rails asset pipeline.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -22,28 +22,32 @@ Or install it yourself as:
|
|
22
22
|
|
23
23
|
add shepherdjs_rails to your application.js manifest
|
24
24
|
|
25
|
-
```
|
25
|
+
```
|
26
26
|
//= require shepherd
|
27
27
|
```
|
28
28
|
|
29
29
|
and include the stylesheets in your application.css manifest
|
30
30
|
|
31
|
-
```
|
31
|
+
```
|
32
32
|
*= require shepherd
|
33
33
|
```
|
34
34
|
|
35
35
|
This gem also includes the CSS for shepherd-theme-default, shepherd-theme-square, and shepherd-theme-dark... You can include whichever files you need in your application.css with
|
36
36
|
|
37
|
-
```
|
37
|
+
```
|
38
38
|
*= require shepherd-theme-default
|
39
39
|
*= require shepherd-theme-square
|
40
40
|
*= require shepherd-theme-dark
|
41
|
-
*= require shepherd-theme-arrows
|
42
41
|
```
|
43
42
|
|
44
43
|
## Contributing
|
45
44
|
|
46
|
-
|
45
|
+
If you need a newer version of Shepherd:
|
46
|
+
|
47
|
+
1. Fork this repo.
|
48
|
+
2. Update the vendored files with the newest release of [Shepherd](https://github.com/shipshapecode/shepherd)
|
49
|
+
3. Update `lib/shepherdjs_rails/version.rb` to match the version of Shepherd that you updated to.
|
50
|
+
4. Push to your repo and create a pull request.
|
47
51
|
|
48
52
|
## License
|
49
53
|
|