sinefunc-rstakeout 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +11 -2
  2. data/VERSION +1 -1
  3. data/bin/rstakeout +0 -1
  4. metadata +2 -2
data/README.md CHANGED
@@ -3,8 +3,6 @@ Rstakeout
3
3
 
4
4
  Ruby script to execute an arbitrary command whenever a file changes.
5
5
 
6
- Forked from github.com/edvardm/rstakeout, which was forked from topfunkyv
7
-
8
6
  Installation
9
7
  ------------
10
8
 
@@ -20,6 +18,17 @@ Common usage
20
18
  # Regenerate some LessCSS files whenever needed
21
19
  rstakeout 'lessc %s' **/*.less
22
20
 
21
+ Authors
22
+ -------
23
+
24
+ This project has been forked from github.com/edvardm/rstakeout, which was forked from topfunky. The original author is Mike Clark.
25
+
26
+ Sinefunc has forked this project to:
27
+
28
+ - Make this project a gem (easily installable with gem install)
29
+ - New icons
30
+ - Small feature additions
31
+
23
32
  Copyright
24
33
  ---------
25
34
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -174,7 +174,6 @@ end.parse!
174
174
 
175
175
  MYTEMP = ENV['TEMP'] || '/tmp'
176
176
 
177
- puts ARGV.inspect
178
177
  command = ARGV.shift
179
178
  files = build_mtimes_hash(ARGV)
180
179
  LOCKFILE = File.join(MYTEMP, 'rstakeout.lock')
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - edvardw