aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorJamie Winsor <jamie@enmasse.com>2011-08-15 00:37:43 -0700
committerJamie Winsor <jamie@enmasse.com>2011-08-15 00:37:43 -0700
commit9363e8d8c516c48861a9a630660e982a2585d2c8 (patch)
treebb75baf9add828ff5bcc243fe17a55edb56c6dfa /Gemfile
parent028489bf152885929e074628e152ff5a58d2ff9b (diff)
downloadrefinerycms-blog-9363e8d8c516c48861a9a630660e982a2585d2c8.tar.gz
refinerycms-blog-9363e8d8c516c48861a9a630660e982a2585d2c8.tar.bz2
refinerycms-blog-9363e8d8c516c48861a9a630660e982a2585d2c8.zip
Update Gemfile to what would be generated by Refinerycms
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile37
1 files changed, 33 insertions, 4 deletions
diff --git a/Gemfile b/Gemfile
index aa83e3f..7605ced 100644
--- a/Gemfile
+++ b/Gemfile
@@ -3,16 +3,45 @@ source "http://rubygems.org"
gemspec
## Uncomment the following lines to develop against edge refinery
-# gem 'refinerycms', :git => 'git://github.com/resolve/refinerycms.git'
-gem 'refinerycms', :path => '~/Code/refinerycms'
+gem 'refinerycms', :git => 'git://github.com/resolve/refinerycms.git'
gem 'seo_meta', :git => 'git://github.com/parndt/seo_meta.git'
gem 'jquery-rails'
group :development, :test do
gem 'refinerycms-testing', '~> 2.0.0'
- gem 'spork', '0.9.0.rc9', :platforms => :ruby
- gem 'guard-spork', :platforms => :ruby
+
+ 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