-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
36 lines (26 loc) · 1.03 KB
/
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
31
32
33
34
35
36
source 'https://rubygems.org'
gem 'rails', '3.2.3'
gem 'sqlite3'
gem "devise"
#gem "asset_host_core", :git => "git://github.com/AssetHost/AssetHost.git"
gem "asset_host_core", :path => "/Users/eric/rails/AssetHost"
# We currently include several gems that should be in AssetHostCore, just
# because I currently don't understand how to specify custom paths and
# requirements there
gem 'rack-raw-upload'
gem 'formtastic', git: 'git://github.com/justinfrench/formtastic.git', branch:'2.1-stable'
gem 'formtastic-bootstrap', git:'git://github.com/cgunther/formtastic-bootstrap.git', branch:'bootstrap2-rails3-2-formtastic-2-1'
gem "mini_exiftool", :git => 'git://github.com/SCPR/mini_exiftool.git'
gem "will_paginate"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem "eco"
gem "less-rails-bootstrap"
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'uglifier'
end
gem 'jquery-rails'