shepherdjs_rails 1.8.1 → 2.0.0.pre.beta.35

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: 6697fc8348eff7e935c48c2ea9c44a4b0387bfe3deff48cecc91894cb7716165
4
- data.tar.gz: 82399603272731a26c42820bfbe3c2154494aeb4396da2efddb080b658659022
3
+ metadata.gz: c1e33aacbdb28c953c08901ba3358bdb5e0c339a1bb9486d0139e80b5505a84c
4
+ data.tar.gz: fed0bfaa2c0ab2c421db4b3ca965d1b11e12111613dadadad21dd94d4ae10343
5
5
  SHA512:
6
- metadata.gz: c17589da44d783179193555d71747bc872a0bd98f5ec05131675bdba27713c828e5068b64d65735d3f75f69806c5d6d39585992cfd3b47c0481e3055d1063983
7
- data.tar.gz: 1050b504a03552fb78f625919f8f118e81b2c1a3e7769340a22a309b36418a0a4efcf7c7b2f09d1f7f4655470f0c8a4e39f220b40c0c78fdd639f189a2c4aaab
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
- ```ruby
25
+ ```
26
26
  //= require shepherd
27
27
  ```
28
28
 
29
29
  and include the stylesheets in your application.css manifest
30
30
 
31
- ```ruby
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
- ```ruby
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
- Bug reports and pull requests are welcome on GitHub at https://github.com/jinhucheung/shepherdjs_rails.
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
 
@@ -1,3 +1,3 @@
1
1
  module ShepherdjsRails
2
- VERSION = "1.8.1"
2
+ VERSION = "2.0.0-beta.35"
3
3
  end