aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2011-08-29 18:17:11 -0700
committerPhilip Arndt <parndt@gmail.com>2011-08-29 18:17:11 -0700
commit2f695519da998ddef91d44f2ec75759e9dadbb4a (patch)
tree3e3835563b6e9227b2bcdcb5172c87fb4ca051b0 /Gemfile
parent36affef45e8b402471040d2c7d099f8e3ff7f91d (diff)
parent9df6580d9cc91c403e16e36070cb9fde45cbb4c9 (diff)
downloadrefinerycms-blog-2f695519da998ddef91d44f2ec75759e9dadbb4a.tar.gz
refinerycms-blog-2f695519da998ddef91d44f2ec75759e9dadbb4a.tar.bz2
refinerycms-blog-2f695519da998ddef91d44f2ec75759e9dadbb4a.zip
Merge pull request #120 from enmasse-entertainment/revise-gemfile
Revise gemfile to support latest master branch of refinerycms
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile18
1 files changed, 9 insertions, 9 deletions
diff --git a/Gemfile b/Gemfile
index 4301b0a..2545218 100644
--- a/Gemfile
+++ b/Gemfile
@@ -3,14 +3,12 @@ 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'
+gem 'refinerycms', :git => 'git://github.com/resolve/refinerycms.git'
-gem 'jquery-rails'
+# Use edge Devise for now: https://github.com/resolve/refinerycms/commit/10ab4db773d9f94b374b0a4bfb2050cb70ff4353
+gem 'devise', :git => 'git://github.com/plataformatec/devise.git'
-group :development, :test do
- gem 'refinerycms-testing', '~> 2.0.0'
-
+group :development, :test do
require 'rbconfig'
platforms :mswin, :mingw do
@@ -44,10 +42,12 @@ group :development, :test do
end
end
+# Gems used only for assets and not required
+# in production environments by default.
group :assets do
- gem 'sass-rails', "~> 3.1.0.rc.5"
- gem 'coffee-rails', "~> 3.1.0.rc.5"
+ gem 'sass-rails'
+ gem 'coffee-rails'
gem 'uglifier'
end
-gem 'arel', '2.1.4' # 2.1.5 is broken. see https://github.com/rails/arel/issues/72
+gem 'jquery-rails'