From 13cafc094712787bf0e5ad0b1dc0e4eb764920d9 Mon Sep 17 00:00:00 2001 From: Jamie Winsor Date: Sun, 14 Aug 2011 19:31:36 -0700 Subject: Syntax fixes for Ruby 1.8.7 --- Gemfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index e2c37f6..8e728e3 100644 --- a/Gemfile +++ b/Gemfile @@ -1,10 +1,7 @@ source "http://rubygems.org" -gemspec - -## Uncomment the following lines to develop against a local clone of refinery +## Uncomment the following lines to develop against edge refinery gem 'refinerycms', :git => 'git://github.com/resolve/refinerycms.git' -gem 'refinerycms-generators', :git => 'git://github.com/resolve/refinerycms-generators.git' gem 'seo_meta', :git => 'git://github.com/parndt/seo_meta.git' gem 'jquery-rails' @@ -21,3 +18,5 @@ group :assets do end gem 'arel', '2.1.4' # 2.1.5 is broken. see https://github.com/rails/arel/issues/72 + +gemspec -- cgit v1.2.3 From aed0b8f173534ccaf4f2f09b3e7b705fb0b08c7b Mon Sep 17 00:00:00 2001 From: Jamie Winsor Date: Sun, 14 Aug 2011 23:14:46 -0700 Subject: Move gemspec method to top of file http://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/ --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 8e728e3..cdcebf5 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,7 @@ source "http://rubygems.org" +gemspec + ## Uncomment the following lines to develop against edge refinery gem 'refinerycms', :git => 'git://github.com/resolve/refinerycms.git' gem 'seo_meta', :git => 'git://github.com/parndt/seo_meta.git' @@ -18,5 +20,3 @@ group :assets do end gem 'arel', '2.1.4' # 2.1.5 is broken. see https://github.com/rails/arel/issues/72 - -gemspec -- cgit v1.2.3