Sha256: a47570a1bff1e7989b212214eb02318d0802f5322cc0324e5ba2fb5944768550
Contents?: true
Size: 890 Bytes
Versions: 1
Compression:
Stored size: 890 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "inotify/version" 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.0 | ruby-inotify.gemspec |