guard-zen 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -2,3 +2,5 @@
2
2
  .bundle
3
3
  Gemfile.lock
4
4
  pkg/*
5
+ .project
6
+ .settings/*
@@ -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)
@@ -3,6 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
  require "guard/zen/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
+ s.date = Time.now.to_date
6
7
  s.name = "guard-zen"
7
8
  s.version = Guard::Zen::VERSION
8
9
  s.platform = Gem::Platform::RUBY
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module Zen
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  end
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.3
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-08-27 00:00:00.000000000Z
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.9
49
+ rubygems_version: 1.8.10
49
50
  signing_key:
50
51
  specification_version: 3
51
52
  summary: guard gem for koans