diff options
author | Jamie Winsor <jamie@enmasse.com> | 2011-08-15 00:13:54 -0700 |
---|---|---|
committer | Jamie Winsor <jamie@enmasse.com> | 2011-08-15 00:13:54 -0700 |
commit | 028489bf152885929e074628e152ff5a58d2ff9b (patch) | |
tree | a736fb162b9b502ab4a180b16671e3312982ae50 /Gemfile | |
parent | eaaa351f3a3d4c447c96ff8f88bc6925dfe45b43 (diff) | |
download | refinerycms-blog-028489bf152885929e074628e152ff5a58d2ff9b.tar.gz refinerycms-blog-028489bf152885929e074628e152ff5a58d2ff9b.tar.bz2 refinerycms-blog-028489bf152885929e074628e152ff5a58d2ff9b.zip |
This will fix the build when runing rspec spec/. If you do not specify refinerycms-testing in the development group of the Gemfile it will not be properly loaded.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,12 +3,14 @@ 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', :git => 'git://github.com/resolve/refinerycms.git' +gem 'refinerycms', :path => '~/Code/refinerycms' 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 end |