2011-08-15 07:15:29 +00:00
|
|
|
source :rubygems
|
2010-10-03 21:00:33 +00:00
|
|
|
|
|
|
|
gemspec
|
2010-10-17 19:42:40 +00:00
|
|
|
|
2011-06-04 19:38:25 +00:00
|
|
|
gem 'rake'
|
|
|
|
|
2011-08-11 10:10:08 +00:00
|
|
|
group :guard do
|
|
|
|
gem 'guard-ronn'
|
|
|
|
end
|
|
|
|
|
2010-10-17 19:42:40 +00:00
|
|
|
require 'rbconfig'
|
|
|
|
|
2011-06-16 11:14:51 +00:00
|
|
|
if RbConfig::CONFIG['target_os'] =~ /darwin/i
|
2011-06-04 19:38:09 +00:00
|
|
|
gem 'rb-fsevent', '>= 0.4.0', :require => false
|
2011-08-17 12:27:40 +00:00
|
|
|
gem 'growl', '~> 1.0.3', :require => false
|
2010-10-17 19:42:40 +00:00
|
|
|
end
|
2011-06-16 11:14:51 +00:00
|
|
|
if RbConfig::CONFIG['target_os'] =~ /linux/i
|
2011-06-04 19:38:09 +00:00
|
|
|
gem 'rb-inotify', '>= 0.8.5', :require => false
|
2011-05-06 19:24:00 +00:00
|
|
|
gem 'libnotify', '~> 0.1.3', :require => false
|
2010-10-17 19:42:40 +00:00
|
|
|
end
|
2011-06-16 11:14:51 +00:00
|
|
|
if RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i
|
2011-05-07 12:18:32 +00:00
|
|
|
gem 'win32console', :require => false
|
|
|
|
gem 'rb-fchange', '>= 0.0.2', :require => false
|
2011-05-22 08:38:54 +00:00
|
|
|
gem 'rb-notifu', '>= 0.0.4', :require => false
|
2011-04-24 19:30:54 +00:00
|
|
|
end
|