automaker 0.1.0 → 0.1.1

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.
Files changed (4) hide show
  1. data/README.rdoc +4 -5
  2. data/VERSION +1 -1
  3. data/automaker.gemspec +1 -1
  4. metadata +1 -1
data/README.rdoc CHANGED
@@ -4,8 +4,7 @@ This tool is inspired by autotest/autospec and automatically calls make when som
4
4
 
5
5
  == Prerequisites and dependencies
6
6
 
7
- * uses FSEvents API so work only on Mac OS X
8
- * requires fsevents gem
7
+ Since it uses the FSEvents API it only works on Mac OS X and it requires the fsevets gem. See Installing.
9
8
 
10
9
  == Installing
11
10
 
@@ -15,13 +14,13 @@ It's on gemcutter so just do:
15
14
 
16
15
  == Using
17
16
 
18
- Like autospec:
17
+ Specify the path to watch and the patterns to look for in filenames of changed files:
19
18
 
20
- $ automaker [/path/to/watch]
19
+ $ automaker /path/to/watch .tex .whatever
21
20
 
22
21
  == Todo
23
22
 
24
- * need to make it return a proper exit code
23
+ * make it return a proper exit code
25
24
  * make it react to ctrl-c autospec-style
26
25
  - ctrl-c c to make clean
27
26
  - ctrl-c a to make all
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/automaker.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{automaker}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ronald Evers"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: automaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ronald Evers