-
Notifications
You must be signed in to change notification settings - Fork 34
/
Gemfile
120 lines (97 loc) · 3.26 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# frozen_string_literal: true
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 'awesome_print'
gem 'aescrypt', '~> 2.0', '>= 2.0.2', github: 'Charcoal-SE/aescrypt'
gem 'audited', '~> 4.4'
gem 'aws-sdk-s3'
gem 'commonmarker'
gem 'devise', '~> 4.7', '>= 4.7.2'
gem 'htmlentities', '~> 4.3', '>= 4.3.4'
gem 'httparty'
gem 'jwt'
gem 'loofah', '~> 2.19.1'
gem 'mysql2'
gem 'octokit', '~> 4.0'
gem 'paperclip', '~> 6.0.0'
gem 'puma'
gem 'rack-cors', '~> 0.4', require: 'rack/cors'
gem 'redis', '~> 3.0'
gem 'rolify'
gem 'rotp', '~> 4.0'
gem 'rqrcode'
gem 'sensible_routes', '~> 0.1.2'
gem 'travis'
gem 'webpacker', '~> 2.0'
gem 'whenever', require: false
gem 'will_paginate'
gem 'will_paginate-bootstrap', github: 'Charcoal-SE/will_paginate-bootstrap'
gem 'flamegraph'
gem 'rack-mini-profiler', '~> 1.1'
gem 'stackprof'
gem 'chartkick'
gem 'groupdate', '~> 5.0.0', require: true
gem 'rubocop', '~> 0.48.1', require: false, group: :test
gem 'simplecov', require: false, group: :test
gem 'blazer', '2.2.1.charcoal', github: 'Charcoal-SE/blazer'
gem 'grape', '1.3.0'
# gem 'puma_worker_killer'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rack', '>= 2.0.6'
gem 'rails', '~> 5.2.0'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-faster-assets', github: 'Charcoal-SE/capistrano-faster-assets'
gem 'capistrano-locally', require: false
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'capistrano-rvm'
gem 'capistrano-secrets-yml'
gem 'capistrano-upload-config'
group :development do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 3.0'
# Spring speeds up development by keeping your application running
# in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Run `foreman start` to launch a local dev instance;
# runs both `rails s` and starts the webpack server
# https://chat.stackexchange.com/transcript/message/38020561#38020561
gem 'foreman'
# Export fixtures from local database
gem 'db_fixtures_dump'
# for the RailsPanel Chrome extension
# https://chrome.google.com/webstore/detail/railspanel/gjpfobpafnhjhbajcjgccbbdofdckggg
gem 'meta_request'
end
group :test do
gem 'rails-controller-testing'
gem 'webmock'
end
gem 'graphiql-rails'
gem 'graphql', '= 1.12.16'