require 'rbconfig'

source :rubygems

gemspec

gem 'rake'

gem 'rb-kqueue', '~> 0.2' if RbConfig::CONFIG['target_os'] =~ /freebsd/i
gem 'rb-fsevent', '~> 0.9.1' if RbConfig::CONFIG['target_os'] =~ /darwin(1.+)?$/i
gem 'rb-inotify', '~> 0.8.8', :github => 'mbj/rb-inotify' if RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'wdm',        '~> 0.0.3' if RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i

group :development do
  platform :ruby do
    gem 'coolline'
  end

  gem 'guard'
  gem 'guard-rspec'
  gem 'yard'
  gem 'redcarpet'
  gem 'pry'

  gem 'vagrant'
end

group :test do
  gem 'rspec'
end
