Sha256: c48ee984cee8c8ceba18425f6d19a686016a6ed28b5eee88d4120f415c1ed4ce
Contents?: true
Size: 897 Bytes
Versions: 1
Compression:
Stored size: 897 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "inotify/inotify_native" Gem::Specification.new do |s| s.name = "ruby-inotify" s.version = Inotify::VERSION s.authors = ["Aria Stewart", "Jon Raiford"] s.email = ["aredridel@nbtsc.org", "jon@raiford.org"] s.homepage = "http://dinhe.net/~aredridel/projects/ruby/ruby-inotify" s.summary = %q{Interface to Linux's Inotify (Ruby FFI version)} s.description = %q{An interface to Linux's inotify, for watching updates to directories.} s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] # specify any dependencies here # s.add_development_dependency "rspec" s.add_runtime_dependency "ffi" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-inotify-1.0.1 | ruby-inotify.gemspec |