aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2011-08-15 00:49:37 -0700
committerPhilip Arndt <parndt@gmail.com>2011-08-15 00:49:37 -0700
commit5e6f9bc270bd019d1a798b9ed7d7a110e7adff0d (patch)
treebb75baf9add828ff5bcc243fe17a55edb56c6dfa
parenteaaa351f3a3d4c447c96ff8f88bc6925dfe45b43 (diff)
parent9363e8d8c516c48861a9a630660e982a2585d2c8 (diff)
downloadrefinerycms-blog-5e6f9bc270bd019d1a798b9ed7d7a110e7adff0d.tar.gz
refinerycms-blog-5e6f9bc270bd019d1a798b9ed7d7a110e7adff0d.tar.bz2
refinerycms-blog-5e6f9bc270bd019d1a798b9ed7d7a110e7adff0d.zip
Merge pull request #115 from enmasse-entertainment/fix-testing-not-loaded
Fix testing not loaded
-rw-r--r--Gemfile35
1 files changed, 33 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index cdcebf5..7605ced 100644
--- a/Gemfile
+++ b/Gemfile
@@ -9,8 +9,39 @@ gem 'seo_meta', :git => 'git://github.com/parndt/seo_meta.git'
gem 'jquery-rails'
group :development, :test do
- gem 'spork', '0.9.0.rc9', :platforms => :ruby
- gem 'guard-spork', :platforms => :ruby
+ gem 'refinerycms-testing', '~> 2.0.0'
+
+ require 'rbconfig'
+
+ platforms :mswin, :mingw do
+ gem 'win32console'
+ gem 'rb-fchange', '~> 0.0.5'
+ gem 'rb-notifu', '~> 0.0.4'
+ end
+
+ platforms :ruby do
+ gem 'spork', '0.9.0.rc9'
+ gem 'guard-spork'
+
+ 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
+ end
+
+ platforms :jruby do
+ if Config::CONFIG['target_os'] =~ /darwin/i
+ 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
+ end
end
group :assets do