autotest-fsevent 0.2.0 → 0.2.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.
data/CHANGELOG.txt CHANGED
@@ -1,3 +1,9 @@
1
+ == 0.2.1 2010-02-08
2
+
3
+ * 2 minor improvements
4
+ * Remove wait_for_changes before redefining it
5
+ * Add dependency for sys-uname (Cyril Mougel)
6
+
1
7
  == 0.2.0 2010-02-03
2
8
 
3
9
  * 2 major improvement
data/README.rdoc CHANGED
@@ -21,6 +21,7 @@ extend autotest and does *not* require RubyCocoa to be installed.
21
21
 
22
22
  * Mac OS X >= 10.5
23
23
  * autotest >= 4.2.4
24
+ * sys-uname
24
25
 
25
26
  == INSTALL:
26
27
 
@@ -82,6 +83,7 @@ Thanks to the following folks who have contributed to this project:
82
83
  * Harry Vangberg
83
84
  * Darrick Wiebe
84
85
  * Sean DeNigris
86
+ * Cyril Mougel
85
87
 
86
88
  == LICENSE:
87
89
 
@@ -23,6 +23,7 @@ module Autotest::FSEvent
23
23
  Autotest.add_hook :initialize do
24
24
  if (Uname.sysname == 'Darwin' && Uname.release.to_i >= 9) || %w(Linux).include?(Uname.sysname)
25
25
  class ::Autotest
26
+ remove_method :wait_for_changes
26
27
  def wait_for_changes
27
28
  hook :waiting
28
29
  begin
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autotest-fsevent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sven Schwyn
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-02-03 00:00:00 +01:00
12
+ date: 2010-02-08 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -32,6 +32,16 @@ dependencies:
32
32
  - !ruby/object:Gem::Version
33
33
  version: 4.2.4
34
34
  version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: sys-uname
37
+ type: :runtime
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: "0"
44
+ version:
35
45
  description: Autotest relies on filesystem polling to detect modifications in source code files. This is expensive for the CPU, harddrive and battery - and unnecesary on Mac OS X 10.5 or higher which comes with the very efficient FSEvent core service for this very purpose. This gem teaches autotest how to use FSEvent.
36
46
  email: ruby@bitcetera.com
37
47
  executables: []