20 lines
455 B
Ruby
20 lines
455 B
Ruby
source "http://rubygems.org"
|
|
|
|
# Specify your gem's dependencies in guard-rails.gemspec
|
|
gemspec
|
|
gem 'rake', '0.8.7'
|
|
gem 'fakefs', :require => nil
|
|
gem 'guard', :git => 'https://github.com/guard/guard.git'
|
|
gem 'guard-rspec'
|
|
|
|
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
|
|
|