2013-03-25 02:37:07 +04:00
|
|
|
source 'https://rubygems.org'
|
2010-08-23 13:42:57 +04:00
|
|
|
|
2011-02-15 13:15:23 +03:00
|
|
|
gemspec
|
|
|
|
|
2012-03-08 15:00:38 +04:00
|
|
|
gem 'rake'
|
2012-11-14 23:48:19 +04:00
|
|
|
gem 'rdoc'
|
2012-03-08 15:00:38 +04:00
|
|
|
|
2013-03-25 02:46:51 +04:00
|
|
|
group :guard do
|
|
|
|
require 'rbconfig'
|
2011-08-04 02:29:04 +04:00
|
|
|
|
2012-11-13 00:25:04 +04:00
|
|
|
if RbConfig::CONFIG['target_os'] =~ /darwin/i
|
2013-03-25 02:46:51 +04:00
|
|
|
gem 'rb-fsevent', :require => false
|
|
|
|
|
|
|
|
if `uname`.strip == 'Darwin' && `sw_vers -productVersion`.strip >= '10.8'
|
|
|
|
gem 'terminal-notifier-guard', '~> 1.5.3', :require => false
|
|
|
|
else
|
|
|
|
gem 'growl', :require => false
|
|
|
|
end rescue Errno::ENOENT
|
2013-03-25 02:37:07 +04:00
|
|
|
|
2013-03-25 02:46:51 +04:00
|
|
|
elsif RbConfig::CONFIG['target_os'] =~ /linux/i
|
|
|
|
gem 'libnotify', '~> 0.8.0', :require => false
|
|
|
|
gem 'rb-inotify', :require => false
|
|
|
|
|
|
|
|
elsif RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i
|
|
|
|
gem 'win32console', :require => false
|
|
|
|
gem 'rb-notifu', '>= 0.0.4', :require => false
|
|
|
|
gem 'wdm', :require => false
|
2011-08-04 02:29:04 +04:00
|
|
|
end
|
|
|
|
|
2013-03-25 02:46:51 +04:00
|
|
|
gem 'guard-test'
|
|
|
|
end
|