watchdir 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -12
- data/VERSION +1 -1
- data/watchdir.gemspec +2 -12
- metadata +4 -5
data/Rakefile
CHANGED
@@ -15,18 +15,8 @@ Jeweler::Tasks.new do |gem|
|
|
15
15
|
gem.name = "watchdir"
|
16
16
|
gem.homepage = "http://github.com/tumf/watchdir"
|
17
17
|
gem.license = "MIT"
|
18
|
-
gem.summary = %Q{ Watchdir is a command for watching change of files to execute command.
|
19
|
-
gem.description = %Q{
|
20
|
-
Usage: watchdir [options]
|
21
|
-
--help show this message
|
22
|
-
-e, --extensions=EXT1,EXT2... comma separated extention(s)
|
23
|
-
-c, --command=COMMAND execute when updated
|
24
|
-
-s, --sleep=SEC default 2 sec.
|
25
|
-
-d, --dir=DIR1,DIR2... comma separated directories
|
26
|
-
-f, --flush
|
27
|
-
--growl
|
28
|
-
--debug debug mode
|
29
|
-
}
|
18
|
+
gem.summary = %Q{ Watchdir is a command for watching change of files to execute command.}
|
19
|
+
gem.description = %Q{ watch command for multiple files. }
|
30
20
|
gem.email = "y.takahara@gmail.com"
|
31
21
|
gem.authors = ["Yoshihiro TAKAHARA"]
|
32
22
|
# Include your dependencies below. Runtime dependencies are required when using your gem,
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.1
|
data/watchdir.gemspec
CHANGED
@@ -5,22 +5,12 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{watchdir}
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.0.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Yoshihiro TAKAHARA"]
|
12
12
|
s.date = %q{2011-01-12}
|
13
|
-
s.description = %q{
|
14
|
-
Usage: watchdir [options]
|
15
|
-
--help show this message
|
16
|
-
-e, --extensions=EXT1,EXT2... comma separated extention(s)
|
17
|
-
-c, --command=COMMAND execute when updated
|
18
|
-
-s, --sleep=SEC default 2 sec.
|
19
|
-
-d, --dir=DIR1,DIR2... comma separated directories
|
20
|
-
-f, --flush
|
21
|
-
--growl
|
22
|
-
--debug debug mode
|
23
|
-
}
|
13
|
+
s.description = %q{ watch command for multiple files. }
|
24
14
|
s.email = %q{y.takahara@gmail.com}
|
25
15
|
s.executables = ["watchdir.rb", "watchdir"]
|
26
16
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: watchdir
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Yoshihiro TAKAHARA
|
@@ -80,8 +80,7 @@ dependencies:
|
|
80
80
|
prerelease: false
|
81
81
|
name: rcov
|
82
82
|
type: :development
|
83
|
-
description: "
|
84
|
-
Usage: watchdir [options]\n --help show this message\n -e, --extensions=EXT1,EXT2... comma separated extention(s)\n -c, --command=COMMAND execute when updated\n -s, --sleep=SEC default 2 sec.\n -d, --dir=DIR1,DIR2... comma separated directories\n -f, --flush\n --growl\n --debug debug mode\n "
|
83
|
+
description: " watch command for multiple files. "
|
85
84
|
email: y.takahara@gmail.com
|
86
85
|
executables:
|
87
86
|
- watchdir.rb
|