fssm 0.0.9 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -66,9 +66,9 @@ describe "The File System State Monitor" do
66
66
  path.update.should be_a_kind_of(Proc)
67
67
  path.delete.should be_a_kind_of(Proc)
68
68
  path.create.should be_a_kind_of(Proc)
69
- path.update.call('','').should == 'success'
70
- path.delete.call('','').should == 'success'
71
- path.create.call('','').should == 'success'
69
+ path.update.call('', '').should == 'success'
70
+ path.delete.call('', '').should == 'success'
71
+ path.create.call('', '').should == 'success'
72
72
  end
73
73
 
74
74
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fssm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Travis Tilley
@@ -42,8 +42,9 @@ files:
42
42
  - fssm.gemspec
43
43
  - lib/fssm.rb
44
44
  - lib/fssm/backends/fsevents.rb
45
+ - lib/fssm/backends/inotify.rb
45
46
  - lib/fssm/backends/polling.rb
46
- - lib/fssm/fsevents.rb
47
+ - lib/fssm/backends/rubycocoa/fsevents.rb
47
48
  - lib/fssm/monitor.rb
48
49
  - lib/fssm/path.rb
49
50
  - lib/fssm/pathname.rb