-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
30 lines (24 loc) · 806 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
source 'https://rubygems.org'
ruby '1.9.3'
# Core application
gem 'rails', '3.2.13'
# Content management system (CMS)
gem 'excon'
gem 'locomotive_cms', '~> 2.0.1', :require => 'locomotive/engine'
# gem 'locomotive_cms', '~> 2.0.0.rc13', :git => "git://github.com/locomotivecms/engine.git"
# Heroku hosting specific requirement
# gem 'locomotive-heroku', '~> 0.0.2', :git => "git://github.com/Treize37/locomotive-heroku.git", :branch => "master"
gem 'locomotive-heroku', '~> 0.0.2', :require => 'locomotive/heroku'
# Assets management
group :assets do
gem 'sass-rails', '~> 3.2.4'
gem 'coffee-rails', '~> 3.2.2'
gem 'uglifier', '~> 1.2.4'
gem 'compass-rails', '~> 1.0.2'
end
group :development do
gem 'unicorn', :group => 'development'
end
group :production do
gem 'thin'
end