All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.rb-inotify-0.10.0.rb-inotify.gemspec Maven / Gradle / Ivy

The newest version!
# -*- encoding: utf-8 -*-
require_relative 'lib/rb-inotify/version'

Gem::Specification.new do |spec|
  spec.name     = 'rb-inotify'
  spec.version  = INotify::VERSION
  spec.platform = Gem::Platform::RUBY

  spec.summary     = 'A Ruby wrapper for Linux inotify, using FFI'
  spec.authors     = ['Natalie Weizenbaum', 'Samuel Williams']
  spec.email       = ['[email protected]', '[email protected]']
  spec.homepage    = 'https://github.com/guard/rb-inotify'
  spec.licenses    = ['MIT']

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]
  
  spec.required_ruby_version = '>= 2.2'
  
  spec.add_dependency "ffi", "~> 1.0"
  
  spec.add_development_dependency "rspec", "~> 3.6"
  spec.add_development_dependency "bundler"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "concurrent-ruby"
end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy