Skip to content

Commit

Permalink
update development dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mordaroso committed Jul 2, 2012
1 parent d7975da commit aa69c3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Expand Up @@ -6,10 +6,10 @@ gemspec
gem 'rake'
require 'rbconfig'

if Config::CONFIG['target_os'] =~ /darwin/i
if RbConfig::CONFIG['target_os'] =~ /darwin/i
gem 'rb-fsevent', '>= 0.3.2'
gem 'growl', '~> 1.0.3'
elsif Config::CONFIG['target_os'] =~ /linux/i
elsif RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'rb-inotify', '>= 0.5.1'
gem 'libnotify', '~> 0.1.3'
end
4 changes: 2 additions & 2 deletions guard-passenger.gemspec
Expand Up @@ -19,8 +19,8 @@ Gem::Specification.new do |s|

s.add_development_dependency 'bundler', '~> 1.1.3'
s.add_development_dependency 'rspec', '~> 2.10.0'
s.add_development_dependency 'guard-rspec', '~> 0.7.3'
s.add_development_dependency 'guard-bundler', '~> 0.1.3'
s.add_development_dependency 'guard-rspec', '~> 1.1.0'
s.add_development_dependency 'guard-bundler', '~> 1.0.0'

s.files = Dir.glob('{lib}/**/*') + %w[LICENSE README.rdoc]
s.require_path = 'lib'
Expand Down

0 comments on commit aa69c3b

Please sign in to comment.