Sha256: c2b72b2252b0598b11c02cfa42251bb70b63c2dd19aca81caa45e5b6f4c50b1f

Contents?: true

Size: 920 Bytes

Versions: 1

Compression:

Stored size: 920 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.has_rdoc    = true

  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.2 ruby-inotify.gemspec