19 lines
428 B
Ruby
19 lines
428 B
Ruby
source "http://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
require 'rbconfig'
|
|
|
|
if Config::CONFIG['target_os'] =~ /darwin/i
|
|
gem 'rb-fsevent', '>= 0.3.9'
|
|
gem 'growl', '~> 1.0.3'
|
|
end
|
|
if Config::CONFIG['target_os'] =~ /linux/i
|
|
gem 'rb-inotify', '>= 0.5.1'
|
|
gem 'libnotify', '~> 0.1.3'
|
|
end
|
|
if Config::CONFIG['target_os'] =~ /mswin|mingw/i
|
|
gem 'win32console'
|
|
gem 'rb-fchange', :git => 'git://github.com/stereobooster/rb-fchange.git'
|
|
end
|