2010-10-03 21:00:33 +00:00
|
|
|
source "http://rubygems.org"
|
|
|
|
|
|
|
|
gemspec
|
2010-10-17 19:42:40 +00:00
|
|
|
|
|
|
|
require 'rbconfig'
|
|
|
|
|
|
|
|
if Config::CONFIG['target_os'] =~ /darwin/i
|
2011-05-06 19:24:00 +00:00
|
|
|
gem 'rb-fsevent', '>= 0.3.9', :require => false
|
|
|
|
gem 'growl', '~> 1.0.3', :require => false
|
2010-10-17 19:42:40 +00:00
|
|
|
end
|
|
|
|
if Config::CONFIG['target_os'] =~ /linux/i
|
2011-05-06 19:24:00 +00:00
|
|
|
gem 'rb-inotify', '>= 0.5.1', :require => false
|
|
|
|
gem 'libnotify', '~> 0.1.3', :require => false
|
2010-10-17 19:42:40 +00:00
|
|
|
end
|
2011-04-24 19:30:54 +00:00
|
|
|
if Config::CONFIG['target_os'] =~ /mswin|mingw/i
|
|
|
|
gem 'win32console'
|
|
|
|
end
|