guard-livereload 2.3.0 → 2.3.1

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
  SHA1:
3
- metadata.gz: f18f1b3a3f33bac0a055ad2a6e14885f885cda56
4
- data.tar.gz: 7b283d577b638ecc9d5e7bce5323087b9debd7ec
3
+ metadata.gz: 25e539e39db381a8063ff567e09bc0aac80802ca
4
+ data.tar.gz: 7286a4eff2f9f963426f443a40a2936b3c2f114f
5
5
  SHA512:
6
- metadata.gz: bfd1b0f747c5fb7dab78d1edbc1758af5636f7631b033cb55714b6a5f72eba218b6069026ef05d7d727cfba6799fed42343da97516a1ade580f6050e81007c39
7
- data.tar.gz: 13ec1be5c9c976de0ded980c62fc723fac3ad3a93b74944237e05ea1fb9184ea497ab9395f9704d26eea6a0a33bffed5b8a77a96ca91d4f4c48b364efe779d73
6
+ metadata.gz: 9e5e8d62a0059d79b57bbf45cc05760417a470b70e8c52ca8c9ae8d4a8c09f72fb0a60b821d64297446ca47fb6354cd7e2d32199fc2434192fb1aa8be0404e96
7
+ data.tar.gz: 9353fe145990a46671274cbb340fac9b25f03e87082522cde2a43b05444d7dcb85009391d79241e16f28336c05d5db3623f903453974882e6a238fa488057b26
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ ### :warning: Guard::LiveReload is looking for a new maintainer. Please [contact me](mailto:thibaud@thibaud.gg) if you're interested.
2
+
1
3
  # Guard::LiveReload
2
4
 
3
5
  [![Gem Version](https://badge.fury.io/rb/guard-livereload.png)](http://badge.fury.io/rb/guard-livereload) [![Build Status](https://travis-ci.org/guard/guard-livereload.png?branch=master)](http://travis-ci.org/guard/guard-livereload) [![Dependency Status](https://gemnasium.com/guard/guard-livereload.png)](https://gemnasium.com/guard/guard-livereload) [![Code Climate](https://codeclimate.com/github/guard/guard-livereload.png)](https://codeclimate.com/github/guard/guard-livereload) [![Coverage Status](https://coveralls.io/repos/guard/guard-livereload/badge.png?branch=master)](https://coveralls.io/r/guard/guard-livereload)
@@ -598,7 +598,7 @@
598
598
  _results = [];
599
599
  for (_i = 0, _len = _ref.length; _i < _len; _i++) {
600
600
  link = _ref[_i];
601
- if (link.rel === 'stylesheet' && !link.__LiveReload_pendingRemoval) {
601
+ if (link.rel.toLowerCase() === 'stylesheet' && !link.__LiveReload_pendingRemoval) {
602
602
  _results.push(link);
603
603
  }
604
604
  }
@@ -1005,7 +1005,7 @@
1005
1005
  _results = [];
1006
1006
  for (_i = 0, _len = _ref.length; _i < _len; _i++) {
1007
1007
  link = _ref[_i];
1008
- if (link.href && link.rel === 'stylesheet/less' || (link.rel.match(/stylesheet/) && link.type.match(/^text\/(x-)?less$/))) {
1008
+ if (link.href && link.rel.toLowerCase() === 'stylesheet/less' || (link.rel.match(/stylesheet/i) && link.type.match(/^text\/(x-)?less$/i))) {
1009
1009
  _results.push(link);
1010
1010
  }
1011
1011
  }
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module LiveReloadVersion
3
- VERSION = '2.3.0'
3
+ VERSION = '2.3.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-livereload
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thibaud Guillaume-Gentil
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-25 00:00:00.000000000 Z
11
+ date: 2014-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: guard
@@ -138,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
138
138
  version: '0'
139
139
  requirements: []
140
140
  rubyforge_project:
141
- rubygems_version: 2.3.0
141
+ rubygems_version: 2.4.1
142
142
  signing_key:
143
143
  specification_version: 4
144
144
  summary: Guard plugin for livereload