guard 2.12.8 → 2.12.9

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: da880f8732dd441d36f71b39e8ea5f82c1967e54
4
- data.tar.gz: 0325d387d7d58d92c912ae851ed3859e5e1a0d42
3
+ metadata.gz: 405dd41ca5e1687db6ca44dbafd373d8f25a5f8b
4
+ data.tar.gz: 7a4551f85bf89de5387332ac326e5b0c6443d8b6
5
5
  SHA512:
6
- metadata.gz: 0f7e56b9f314af258795d863046c8efdb707dc597906ec5a08c21394c389ca54bd09bb3a27caaa0870dd16ec72423046132aa4d6f32f62cfc11494eecf5a018f
7
- data.tar.gz: 14269c8399f6913127c688e5249d7ea2137d618e037f8b9c0f5a18533c7e892421a0cc3bb2bd5e965f7dd5bbb69c2cdf2a8386229d9dbd7973a263974aca8aa1
6
+ metadata.gz: 57305dd135f3abe025f1062c274079ec31430d9c544d8dee92064f22798721d73a86d947f01b7df35ca98593d2a62a63b29ecc556ed34e4a79563b82aa0049dd
7
+ data.tar.gz: e2d5aa2c3c0ff95b72e8382872dd53da7e72057709189ec0629f1a86935aeb9a546857063274bb2bf12e8bf377036c77043b6fcdf8a6117d542f187f1fa929d1
data/README.md CHANGED
@@ -1,4 +1,7 @@
1
- ### :exclamation::exclamation: Guard is [currently accepting more maintainers/contributors](https://groups.google.com/forum/#!topic/guard-dev/2Td0QTvTIsE). Please [contact me](mailto:thibaud@thibaud.gg) or [Cezary Baginski](mailto:cezary@chronomantic.net) if you're interested in joining the team. :exclamation::exclamation:
1
+ :exclamation::exclamation: Guard is [currently accepting more maintainers/contributors](https://groups.google.com/forum/#!topic/guard-dev/2Td0QTvTIsE). :exclamation::exclamation:
2
+
3
+
4
+ :exclamation::exclamation: Please [contact me](mailto:thibaud@thibaud.gg) or [Cezary Baginski](mailto:cezary@chronomantic.net) if you're interested in joining the team. :exclamation::exclamation:
2
5
 
3
6
  Guard
4
7
  =====
@@ -6,25 +9,24 @@ Guard
6
9
  [![Gem Version](https://img.shields.io/gem/v/guard.svg?style=flat)](https://rubygems.org/gems/guard) [![Build Status](https://travis-ci.org/guard/guard.svg)](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/badges/gpa.svg)](https://codeclimate.com/github/guard/guard) [![Test Coverage](https://codeclimate.com/github/guard/guard/badges/coverage.svg)](https://codeclimate.com/github/guard/guard) [![Inline docs](http://inch-ci.org/github/guard/guard.svg)](http://inch-ci.org/github/guard/guard)
7
10
 
8
11
  <img src="http://cl.ly/image/1k3o1r2Z3a0J/guard-Icon.png" alt="Guard Icon" align="right" />
9
- Guard is a command line tool to easily handle events on file system modifications.
12
+ Guard automates various tasks by running custom rules whenever file or directories are modified.
10
13
 
11
- Guard has many very handy features, so read this document through at least once
12
- to be aware of them - or you'll likely miss out on really cool ideas and tricks.
14
+ It's frequently used by software developers, web designers, writers and other specialists to avoid mundane, repetitive actions and commands such as "relaunching" tools after changing source files or configurations.
13
15
 
14
- Also, by reading through you'll likely avoid common and time-consuming problems which Guard simply can't automatically solve.
16
+ Common use cases include: an IDE replacement, web development tools, designing "smart" and "responsive" build systems/workflows, automating various project tasks and installing/monitoring various system services.
17
+
18
+ For a full categorized list of known Guard plugins, look here: https://github.com/guard/guard/wiki/Guard-Plugins
15
19
 
16
20
  If you have
17
- any questions about the Guard usage or want to share some information with the Guard community, please go to one of
21
+ any questions about Guard or want to share some information with the Guard community, please go to one of
18
22
  the following places:
19
23
 
24
+ * [Guard Wiki](https://github.com/guard/guard/wiki)
20
25
  * [Google+ community](https://plus.google.com/u/1/communities/110022199336250745477).
21
26
  * [Google group](http://groups.google.com/group/guard-dev).
22
27
  * [StackOverflow](http://stackoverflow.com/questions/tagged/guard).
23
28
  * IRC channel `#guard` (irc.freenode.net) for chatting.
24
29
 
25
- Information on advanced topics like creating your own Guard plugin, programmatic use of Guard, hooks and callbacks and
26
- more can be found in the [Guard wiki](https://github.com/guard/guard/wiki).
27
-
28
30
  Before you file an issue, make sure you have read the _[known issues](#issues)_ and _[file an issue](#file-an-issue)_ sections that contains some important information.
29
31
 
30
32
  #### Features
@@ -11,7 +11,7 @@ module Guard
11
11
  end
12
12
 
13
13
  def guard(name, _options = {})
14
- @plugin_names << name
14
+ @plugin_names << name.to_s
15
15
  end
16
16
 
17
17
  # Stub everything else
@@ -105,6 +105,7 @@ module Guard
105
105
  # @param [String] plugin_name the name of the Guard
106
106
  # @return [Boolean] whether the Guard plugin has been declared
107
107
  #
108
+ # TODO: rename this method to it matches RSpec examples better
108
109
  def guardfile_include?(plugin_name)
109
110
  reader = DslReader.new
110
111
  reader.evaluate(@contents, @path || "", 1)
@@ -1,3 +1,3 @@
1
1
  module Guard
2
- VERSION = "2.12.8"
2
+ VERSION = "2.12.9"
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.12.8
4
+ version: 2.12.9
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: 2015-07-05 00:00:00.000000000 Z
11
+ date: 2015-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor