aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2011-09-03 15:34:52 +1200
committerPhilip Arndt <parndt@gmail.com>2011-09-03 16:40:25 +1200
commit80ca7c1bf99befac70803309e542a4db54f1f198 (patch)
tree02fde3033603a0d1abfdd63f4ef198dad661464a /Gemfile
parent4439f6afda7c99a80983556689f1b45bd3f9494c (diff)
downloadrefinerycms-blog-80ca7c1bf99befac70803309e542a4db54f1f198.tar.gz
refinerycms-blog-80ca7c1bf99befac70803309e542a4db54f1f198.tar.bz2
refinerycms-blog-80ca7c1bf99befac70803309e542a4db54f1f198.zip
Config is deprecated, using RbConfig instread.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Gemfile b/Gemfile
index da90ac6..6442971 100644
--- a/Gemfile
+++ b/Gemfile
@@ -23,11 +23,11 @@ group :development, :test do
gem 'guard-spork'
unless ENV['TRAVIS']
- if Config::CONFIG['target_os'] =~ /darwin/i
+ if RbConfig::CONFIG['target_os'] =~ /darwin/i
gem 'rb-fsevent', '>= 0.3.9'
gem 'growl', '~> 1.0.3'
end
- if Config::CONFIG['target_os'] =~ /linux/i
+ if RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'rb-inotify', '>= 0.5.1'
gem 'libnotify', '~> 0.1.3'
end
@@ -36,10 +36,10 @@ group :development, :test do
platforms :jruby do
unless ENV['TRAVIS']
- if Config::CONFIG['target_os'] =~ /darwin/i
+ if RbConfig::CONFIG['target_os'] =~ /darwin/i
gem 'growl', '~> 1.0.3'
end
- if Config::CONFIG['target_os'] =~ /linux/i
+ if RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'rb-inotify', '>= 0.5.1'
gem 'libnotify', '~> 0.1.3'
end