-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
77 lines (61 loc) · 1.25 KB
/
Gemfile
File metadata and controls
77 lines (61 loc) · 1.25 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
source 'https://rubygems.org'
gem 'bundler'
gem 'rails', '3.2.13'
# Internals
gem 'state_machine'
# Utils
gem 'settingslogic'
gem 'fastercsv', '1.5.5'
gem 'mime-types', '1.21'
# Database
gem 'bson_ext', '~> 1.8.2'
gem 'bson', '~> 1.8.2'
gem 'mongo', '~> 1.8.2'
gem 'mongoid', '~> 2.6'
# Auth / invitations
gem 'devise', '~> 2.2.3'
gem 'devise-encryptable'
gem 'devise_invitable'
# Views
gem 'haml'
gem 'formtastic'
gem 'will_paginate'
gem 'liquid'
gem 'rails_autolink'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'execjs'
gem 'therubyracer'
end
group :production do
gem 'rack-ssl-enforcer'
gem 'rack-google-analytics'
end
group :development, :test do
gem 'rspec-rails'
end
group :development do
gem 'letter_opener'
end
group :tools do
gem 'capistrano', '2.15.4'
gem 'ffaker'
gem 'powder'
# Guard
gem 'ruby_gntp'
gem 'guard-pow'
gem 'guard-spork'
gem 'guard-rspec'
gem 'guard-livereload'
end
group :test do
gem 'spork', '~> 0.9.0'
gem 'shoulda-matchers'
gem 'capybara'
gem 'database_cleaner'
gem 'factory_girl_rails', '~> 1.7', :require => false # loaded in spec_helper Spork.each_run
end