diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2013-01-25 21:53:05 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2013-01-25 21:53:05 +0100 |
commit | f087c23c8600fe197d3a59f4a0cd839754459b37 (patch) | |
tree | 5577105a38545b143efec0bdb8c134bea04005c8 /Gemfile | |
download | hmnoweb-f087c23c8600fe197d3a59f4a0cd839754459b37.tar.gz hmnoweb-f087c23c8600fe197d3a59f4a0cd839754459b37.tar.bz2 hmnoweb-f087c23c8600fe197d3a59f4a0cd839754459b37.zip |
Initial commit.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 54 |
1 files changed, 54 insertions, 0 deletions
@@ -0,0 +1,54 @@ +source 'https://rubygems.org' + +gem 'rails', '3.2.11' + +# Bundle edge Rails instead: +# gem 'rails', :git => 'git://github.com/rails/rails.git' + +group :development, :test do + gem 'sqlite3' +end + +group :production do + gem 'mysql2' +end + +# Gems used only for assets and not required +# in production environments by default. +group :assets do + gem 'sass-rails', '~> 3.2.3' + gem 'coffee-rails', '~> 3.2.1' + + # See https://github.com/sstephenson/execjs#readme for more supported runtimes + # gem 'therubyracer', :platforms => :ruby + + gem 'uglifier', '>= 1.0.3' +end + +gem 'jquery-rails', '~> 2.0.0' + +# To use ActiveModel has_secure_password +# gem 'bcrypt-ruby', '~> 3.0.0' + +# To use Jbuilder templates for JSON +# gem 'jbuilder' + +# Use unicorn as the app server +# gem 'unicorn' + +# Deploy with Capistrano +gem 'capistrano' +gem 'rvm-capistrano' + +# To use debugger +# gem 'debugger' + +# Refinery CMS +gem 'refinerycms', '~> 2.0.0' + +# Specify additional Refinery CMS Extensions here (all optional): +gem 'refinerycms-i18n', '~> 2.0.0' +# gem 'refinerycms-blog', '~> 2.0.0' +# gem 'refinerycms-inquiries', '~> 2.0.0' +# gem 'refinerycms-search', '~> 2.0.0' +# gem 'refinerycms-page-images', '~> 2.0.0' |