guard 2.3.0 → 2.4.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
  SHA1:
3
- metadata.gz: 9a9c7c3c069655878f11c259de0b8f30c0e97914
4
- data.tar.gz: df85000a6061c14ba2df3231d5ce2297a39c61b5
3
+ metadata.gz: 92ad4b938632516836b137027518c5ce1b078ede
4
+ data.tar.gz: 106f21643bca890f75c08c49a618497577e057b4
5
5
  SHA512:
6
- metadata.gz: 3a16582451f68776b47e8d71740858f2d5135ae33e5d3e507204719a86a668f97c0488ba7b7bccd4de555070e7020ca52ca3eaa45f589003a05f4a036b74c97a
7
- data.tar.gz: 2abaeda0d2a2387ce3da9ea64f1080c32226f59a3d82bb10f7c4990a67a9f1f375e1efaed76b19d9e9b29933e9c1910704549cf2df7cc2ea3f7afb850c7abb7c
6
+ metadata.gz: cfa0c07f4c42e02df37ba8efca2cc0d4b28b67c83d827c601d7066840d994bb166fa66eeb41a840132e6bf193a94eb14672b124c834d7676c7d8c55265a943c5
7
+ data.tar.gz: fcc4854eeefb682c40ad6c11081c5214217ed7eaa13c30123b5d02befd96926fb30a15df110e0f41eef0dd405d8b89d3bbd3faf925da547413b97867b168fe1c
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009-2013 Thibaud Guillaume-Gentil
1
+ Copyright (c) 2009-2014 Thibaud Guillaume-Gentil
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  Guard [![Gem Version](https://badge.fury.io/rb/guard.png)](http://badge.fury.io/rb/guard) [![Build Status](https://travis-ci.org/guard/guard.png?branch=master)](https://travis-ci.org/guard/guard) [![Dependency Status](https://gemnasium.com/guard/guard.png)](https://gemnasium.com/guard/guard) [![Code Climate](https://codeclimate.com/github/guard/guard.png)](https://codeclimate.com/github/guard/guard) [![Coverage Status](https://coveralls.io/repos/guard/guard/badge.png?branch=master)](https://coveralls.io/r/guard/guard)
2
2
  =====
3
3
 
4
- <img src="http://img515.imageshack.us/img515/1358/guardicon.png" alt="Guard Icon" align="right" />
4
+ <img src="http://cl.ly/image/1k3o1r2Z3a0J/guard-Icon.png" alt="Guard Icon" align="right" />
5
5
  Guard is a command line tool to easily handle events on file system modifications.
6
6
 
7
7
  This document contains a lot of information, please take your time and read these instructions carefully. If you have
@@ -23,7 +23,7 @@ Before you file an issue, make sure you have read the _[known issues](#issues)_
23
23
  * File system changes handled by our awesome [Listen](https://github.com/guard/listen) gem.
24
24
  * Support for visual system notifications.
25
25
  * Huge eco-system with [more than 220](https://rubygems.org/search?query=guard-) Guard plugins.
26
- * Tested against Ruby 1.9.3, 2.0.0, JRuby (1.9 mode) & Rubinius (1.9 mode).
26
+ * Tested against Ruby 1.9.3, 2.0.0, 2.1.0, JRuby & Rubinius.
27
27
 
28
28
  #### Screencast
29
29
 
@@ -437,7 +437,7 @@ guard :bundler do
437
437
  end
438
438
  ```
439
439
 
440
- String watch patterns are matched with [String#==](http://www.ruby-doc.org/core-1.9.2/String.html#method-i-3D-3D).
440
+ String watch patterns are matched with [String#==](http://www.ruby-doc.org/core-1.9.3/String.html#method-i-3D-3D).
441
441
  You can also pass a regular expression to the watch method:
442
442
 
443
443
  ```ruby
@@ -462,7 +462,7 @@ end
462
462
 
463
463
  In this example the regular expression capture group `(.+)` is used to transform a file change
464
464
  in the `lib` folder to its test case in the `spec` folder. Regular expression watch patterns
465
- are matched with [Regexp#match](http://www.ruby-doc.org/core-1.9.2/Regexp.html#method-i-match).
465
+ are matched with [Regexp#match](http://www.ruby-doc.org/core-1.9.3/Regexp.html#method-i-match).
466
466
 
467
467
  You can also launch any arbitrary command in the supplied block:
468
468
 
@@ -752,9 +752,9 @@ Please try to follow these simple rules:
752
752
 
753
753
  #### Core Team
754
754
 
755
- * [Michael Kessler](https://github.com/netzpirat) ([@netzpirat](http://twitter.com/netzpirat), [mksoft.ch](https://mksoft.ch))
755
+ * [Michael Kessler](https://github.com/netzpirat) ([@netzpirat](http://twitter.com/netzpirat), [flinkfinger.com](http://www.flinkfinger.com))
756
756
  * [Rémy Coutable](https://github.com/rymai)
757
- * [Thibaud Guillaume-Gentil](https://github.com/thibaudgg) ([@thibaudgg](http://twitter.com/thibaudgg), [thibaud.me](http://thibaud.me/))
757
+ * [Thibaud Guillaume-Gentil](https://github.com/thibaudgg) ([@thibaudgg](http://twitter.com/thibaudgg), [thibaud.gg](http://thibaud.gg/))
758
758
 
759
759
  #### Contributors
760
760
 
@@ -16,7 +16,7 @@ module Guard
16
16
  BANNER
17
17
 
18
18
  def process
19
- ::Guard::DslDescriber.show(::Guard.options)
19
+ ::Guard::DslDescriber.new(::Guard.options).show
20
20
  end
21
21
  end
22
22
  end
@@ -234,7 +234,7 @@ module Guard
234
234
  # @param [Regexp] regexps a pattern (or list of patterns) for ignoring paths
235
235
  #
236
236
  def ignore(*regexps)
237
- ::Guard.listener.ignore(*regexps) if ::Guard.listener
237
+ ::Guard.listener.ignore(regexps) if ::Guard.listener
238
238
  end
239
239
  alias filter ignore
240
240
 
@@ -1,3 +1,3 @@
1
1
  module Guard
2
- VERSION = '2.3.0'
2
+ VERSION = '2.4.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.4.0
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-01-17 00:00:00.000000000 Z
11
+ date: 2014-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -110,7 +110,7 @@ dependencies:
110
110
  version: 3.0.0.beta1
111
111
  description: Guard is a command line tool to easily handle events on file system modifications.
112
112
  email:
113
- - thibaud@thibaud.me
113
+ - thibaud@thibaud.gg
114
114
  executables:
115
115
  - guard
116
116
  extensions: []
@@ -185,7 +185,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
185
185
  requirements:
186
186
  - - ">="
187
187
  - !ruby/object:Gem::Version
188
- version: 1.9.2
188
+ version: 1.9.3
189
189
  required_rubygems_version: !ruby/object:Gem::Requirement
190
190
  requirements:
191
191
  - - ">="