-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
55 lines (47 loc) · 976 Bytes
/
Gemfile
File metadata and controls
55 lines (47 loc) · 976 Bytes
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
source 'https://rubygems.org'
gem 'rails', '3.2.11'
gem 'pg'
gem 'thin'
gem 'haml'
gem 'haml-rails'
gem 'jquery-rails'
gem 'execjs'
gem 'omniauth'
gem 'omniauth-github'
gem 'zurb-foundation', '~> 3.2.2'
gem 'simplecov'
gem 'figaro'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'compass-rails'
gem 'sass-rails', '~> 3.2.6'
gem 'coffee-rails', '~> 3.2.1'
gem 'therubyracer', '~> 0.11.2', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
# Gems used in development
group :development do
gem 'quiet_assets'
gem 'annotate'
# debugging
gem 'pry'
# Better errors
gem 'better_errors'
gem 'binding_of_caller'
end
# Gems used for testing
group :test, :development do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'rb-fsevent'
gem 'faker'
# Auto testing
gem 'guard-rspec'
gem 'guard-spork'
gem 'ruby_gntp'
end
group :test do
gem 'capybara'
gem 'shoulda-matchers'
end