vimmate 0.9.0 → 0.9.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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.0
1
+ 0.9.1
@@ -1,4 +1,13 @@
1
1
  require 'lib/INotify'
2
2
  require 'lib/directory'
3
- ListedDirectory.class_eval { include VimMate::Plugin::INotifyDirectory }
3
+
4
+ # FIXME current inotify implementation uses syscall
5
+ # syscall is not implemented in Ruby 1.9 on 64bit systems, see:
6
+ # * https://github.com/ruby/ruby/blob/ruby_1_9_2/io.c#L7529
7
+ # * https://github.com/ruby/ruby/commit/5a809d60bd3ea54474e34f897ae60b1ae78bab73#L0R6981
8
+ # * http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/8722
9
+
10
+ if Kernel.respond_to?(:syscall)
11
+ ListedDirectory.class_eval { include VimMate::Plugin::INotifyDirectory }
12
+ end
4
13
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vimmate
3
3
  version: !ruby/object:Gem::Version
4
- hash: 59
5
- prerelease: false
4
+ hash: 57
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 0
10
- version: 0.9.0
9
+ - 1
10
+ version: 0.9.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Guillaume Benny
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2010-12-15 00:00:00 +01:00
20
+ date: 2011-01-04 00:00:00 +01:00
21
21
  default_executable: vimmate
22
22
  dependencies:
23
23
  - !ruby/object:Gem::Dependency
@@ -196,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
196
196
  requirements: []
197
197
 
198
198
  rubyforge_project:
199
- rubygems_version: 1.3.7
199
+ rubygems_version: 1.4.1
200
200
  signing_key:
201
201
  specification_version: 3
202
202
  summary: VimMate is a graphical add-on to Vim with IDE-like features.