-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
50 lines (44 loc) · 997 Bytes
/
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
ruby '2.2.3'
source 'https://rubygems.org'
gem 'rails', '4.2.4'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'autoprefixer-rails'
gem 'charlatan'
gem 'devise'
gem 'kaminari'
gem 'nprogress-rails'
gem 'octokit'
gem 'omniauth-github'
gem 'puma'
gem 'rails_12factor', group: :production
gem 'rdiscount'
gem 'simple_form', '~> 3.2'
gem 'zeroclipboard-rails'
group :test do
gem 'simplecov', require: false
gem 'webmock'
end
group :development do
gem 'annotate'
gem 'better_errors'
gem 'binding_of_caller'
gem 'spring'
gem 'web-console', '~> 2.0'
end
group :development, :test do
gem 'awesome_print', require: 'ap'
gem 'byebug'
gem 'capybara'
gem 'dotenv-rails'
gem 'factory_girl_rails'
gem 'rspec-rails'
end