forked from milindl/leaderboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
44 lines (36 loc) · 776 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
source "https://rubygems.org"
gem "rails"
gem "puma"
gem "bcrypt"
gem "sass-rails"
gem "uglifier"
gem "coffee-rails"
gem "jquery-rails"
gem "turbolinks"
gem "jbuilder"
gem "will_paginate"
group :development, :test do
gem "byebug" , platform: :mri
gem "rubocop", "~> 0.49.1", require: false
gem "rubocop-rails"
gem "sqlite3"
gem "webmock"
end
group :development do
gem "web-console"
gem "listen"
gem "spring"
gem "spring-watcher-listen"
end
group :test do
gem "rails-controller-testing"
gem "minitest-reporters"
gem "test-unit"
gem "guard"
gem "guard-minitest"
end
group :production do
gem "pg"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]