forked from exercism/v2-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
78 lines (67 loc) · 1.54 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.2'
gem 'puma', '~> 3.7'
gem 'mysql2'
gem 'dalli'
gem 'devise', '~> 4.3'
gem 'omniauth-github'
gem 'kaminari'
gem 'friendly_id', '~> 5.2'
gem 'mandate'
gem 'haml-rails'
gem 'jquery-rails'
gem 'coffee-rails', '~> 4.2'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'premailer-rails'
gem 'commonmarker', require: false
gem 'rugged'
gem 'sidekiq'
gem 'loofah'
gem 'lmdb'
gem 'octokit'
gem "bugsnag"
gem 'aws-sdk-s3'
gem 'image_processing', '~> 1.2'
gem 'rest-client'
gem 'rubyzip', require: false
gem 'bootsnap', '>= 1.1.0', require: false
group :production do
gem "skylight"
end
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara', '~> 3.0'
gem 'selenium-webdriver'
gem 'factory_bot_rails'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'capistrano', '~> 3.6'
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-rvm'
gem 'capistrano-yarn'
gem 'letter_opener'
gem 'bullet'
end
group :test do
gem 'simplecov', require: false
gem 'minitest', '~> 5.10', '!= 5.10.2'
gem 'minitest-stub-const'
gem 'mocha'
gem 'rails-controller-testing'
gem 'timecop'
gem 'chromedriver-helper'
gem 'webmock'
gem 'bullet'
end
group :development, :production do
gem 'capistrano-checks'
end