-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (36 loc) · 1.02 KB
/
Gemfile
File metadata and controls
45 lines (36 loc) · 1.02 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.0'
gem 'mysql2', group: :development
gem 'puma'
group :production do
gem 'rails_12factor'
gem 'pg'
end
gem 'uglifier', '>= 1.3.0'
gem 'less-rails'
gem 'therubyracer', require: 'v8'
gem 'twitter-bootstrap-rails'
gem 'simple_form'
gem 'authlogic'
gem 'kaminari'
gem 'aws-sdk'
gem 'paperclip'
gem "octokit", "~> 3.0"
gem 'redcarpet'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem "codeclimate-test-reporter", group: :test, require: nil
group :development, :test do
gem 'guard'
gem 'guard-rspec', require: false
gem 'rspec-rails'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :development do
gem 'better_errors', '0.8.0' # Better rails error pages
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
end