Skip to content

Commit

Permalink
Update Gemfile to what would be generated by Refinerycms
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Winsor committed Aug 15, 2011
1 parent 028489b commit 9363e8d
Showing 1 changed file with 33 additions and 4 deletions.
37 changes: 33 additions & 4 deletions Gemfile
Expand Up @@ -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
Expand Down

0 comments on commit 9363e8d

Please sign in to comment.