-
Notifications
You must be signed in to change notification settings - Fork 118
/
Gemfile
52 lines (44 loc) · 1.13 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
source 'https://rubygems.org'
# Core gems
gem 'rails', '3.2.11'
group :development, :test do
gem 'sqlite3'
gem 'guard'
gem 'guard-rspec'
end
# Database adapters
gem 'pg', '0.12.2'
# Uncomment this is you want to use sqlite locally
# gem 'sqlite3'
# Auth/Cloudfuji gems
gem 'devise'
gem 'devise_cloudfuji_authenticatable'
gem 'cloudfuji'
# Server/transport gems
gem 'thin'
gem '_bushido-faye', '0.8.2'
# Helper gems
gem 'kaminari'
gem 'aws-sdk'
gem 'cloudfuji_paperclip'
gem 'remotipart'
gem 'jquery-rails'
# Making the world a better, more stable place
gem 'airbrake'
# 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'
gem 'bourbon'
gem 'execjs' # See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'eco'
gem 'uglifier', '>= 1.0.3'
end
# Test gems, obviously
group :test do
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'factory_girl_rails', '~> 3.0'
gem 'jasmine', :git => "https://github.com/pivotal/jasmine-gem.git", :branch => "1.2.rc1", :group => [:development, :test]
end