guard 2.12.8 → 2.12.9
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 +11 -9
- data/lib/guard/dsl_reader.rb +1 -1
- data/lib/guard/guardfile/evaluator.rb +1 -0
- data/lib/guard/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 405dd41ca5e1687db6ca44dbafd373d8f25a5f8b
|
|
4
|
+
data.tar.gz: 7a4551f85bf89de5387332ac326e5b0c6443d8b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57305dd135f3abe025f1062c274079ec31430d9c544d8dee92064f22798721d73a86d947f01b7df35ca98593d2a62a63b29ecc556ed34e4a79563b82aa0049dd
|
|
7
|
+
data.tar.gz: e2d5aa2c3c0ff95b72e8382872dd53da7e72057709189ec0629f1a86935aeb9a546857063274bb2bf12e8bf377036c77043b6fcdf8a6117d542f187f1fa929d1
|
data/README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
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
|
[](https://rubygems.org/gems/guard) [](https://travis-ci.org/guard/guard) [](https://gemnasium.com/guard/guard) [](https://codeclimate.com/github/guard/guard) [](https://codeclimate.com/github/guard/guard) [](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
|
|
12
|
+
Guard automates various tasks by running custom rules whenever file or directories are modified.
|
|
10
13
|
|
|
11
|
-
|
|
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
|
-
|
|
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
|
|
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
|
data/lib/guard/dsl_reader.rb
CHANGED
|
@@ -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)
|
data/lib/guard/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2015-07-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|