forked from elovation/elovation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
51 lines (41 loc) · 947 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
51
source 'https://rubygems.org'
ruby '2.4.0'
gem 'rails', '~> 5.1'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'jquery-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'chartkick'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# This is necessary for running on linux
gem 'therubyracer', platforms: :ruby
gem 'dynamic_form'
gem 'elo'
gem 'trueskill', github: 'saulabs/trueskill', require: 'saulabs/trueskill'
group :production do
gem 'unicorn'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'listen'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'faker'
gem 'pry'
gem 'pry-byebug'
gem 'pry-coolline'
gem 'pry-rails'
gem 'pry-stack_explorer'
gem 'spring'
gem 'spring-commands-rspec'
end
group :test do
gem 'mocha'
gem 'rspec-rails', '~> 3.5'
gem 'timecop'
gem 'codeclimate-test-reporter', require: nil
gem 'rails-controller-testing'
end