guard-zen 0.0.3 → 0.0.4
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.
- data/.gitignore +2 -0
- data/README.md +64 -0
- data/guard-zen.gemspec +1 -0
- data/lib/guard/zen/version.rb +1 -1
- metadata +4 -3
data/.gitignore
CHANGED
data/README.md
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
Guard::Zen
|
|
2
|
+
=============
|
|
3
|
+
|
|
4
|
+
Zen guard allows to automatically run 'ruby path_to_enlightenment.rb'.
|
|
5
|
+
|
|
6
|
+
Install
|
|
7
|
+
-------
|
|
8
|
+
|
|
9
|
+
Please be sure to have [Guard](https://github.com/guard/guard) installed before continue.
|
|
10
|
+
|
|
11
|
+
Install the gem:
|
|
12
|
+
|
|
13
|
+
$ gem install guard-zen
|
|
14
|
+
|
|
15
|
+
Add it to your Gemfile (inside development group):
|
|
16
|
+
|
|
17
|
+
``` ruby
|
|
18
|
+
gem 'guard-zen'
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Add guard definition to your Guardfile by running this command:
|
|
22
|
+
|
|
23
|
+
$ guard init zen
|
|
24
|
+
|
|
25
|
+
Usage
|
|
26
|
+
-----
|
|
27
|
+
|
|
28
|
+
Please read [Guard usage doc](https://github.com/guard/guard#readme)
|
|
29
|
+
|
|
30
|
+
Guardfile
|
|
31
|
+
---------
|
|
32
|
+
|
|
33
|
+
Zen guard can be use to resolv koans from [Ruby Koans](http://rubykoans.com/)
|
|
34
|
+
|
|
35
|
+
``` ruby
|
|
36
|
+
guard 'zen' do
|
|
37
|
+
watch(%r{^*.\.rb$})
|
|
38
|
+
end
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Please read [Guard doc](https://github.com/guard/guard#readme) for more information about the Guardfile DSL.
|
|
42
|
+
|
|
43
|
+
Options
|
|
44
|
+
-------
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
Development
|
|
48
|
+
-----------
|
|
49
|
+
|
|
50
|
+
* Source hosted at [GitHub](https://github.com/azazelo/guard-zen)
|
|
51
|
+
* Report issues/Questions/Feature requests on [GitHub Issues](https://github.com/azazelo/guard-zen/issues)
|
|
52
|
+
|
|
53
|
+
Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change
|
|
54
|
+
you make.
|
|
55
|
+
|
|
56
|
+
Testing
|
|
57
|
+
-------
|
|
58
|
+
|
|
59
|
+
!!!TODO
|
|
60
|
+
|
|
61
|
+
Author
|
|
62
|
+
------
|
|
63
|
+
|
|
64
|
+
[Andrey Eremeev](https://github.com/azazelo)
|
data/guard-zen.gemspec
CHANGED
data/lib/guard/zen/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: guard-zen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2011-
|
|
12
|
+
date: 2011-09-09 00:00:00.000000000Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: guard gem for koans
|
|
15
15
|
email:
|
|
@@ -20,6 +20,7 @@ extra_rdoc_files: []
|
|
|
20
20
|
files:
|
|
21
21
|
- .gitignore
|
|
22
22
|
- Gemfile
|
|
23
|
+
- README.md
|
|
23
24
|
- Rakefile
|
|
24
25
|
- guard-zen.gemspec
|
|
25
26
|
- lib/guard/zen.rb
|
|
@@ -45,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
45
46
|
version: '0'
|
|
46
47
|
requirements: []
|
|
47
48
|
rubyforge_project: guard-zen
|
|
48
|
-
rubygems_version: 1.8.
|
|
49
|
+
rubygems_version: 1.8.10
|
|
49
50
|
signing_key:
|
|
50
51
|
specification_version: 3
|
|
51
52
|
summary: guard gem for koans
|