-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
58 lines (51 loc) · 2.37 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.5.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'active_model_serializers', '~> 0.10.0.rc5'
gem 'annotate'
gem 'authority', '3.1.0'
gem 'autoprefixer-rails', '~> 6.3', '>= 6.3.7'
gem 'bootstrap-generators', '~> 3.3', '>= 3.3.4'
gem 'bootstrap-select-rails', '~> 1.6', '>= 1.6.3'
gem 'bundler', '~> 1.11', '>= 1.11.2'
gem 'carrierwave', '~> 1.0'
gem 'coderay'
gem 'coffee-rails', '~> 4.2' # Use CoffeeScript for .coffee assets and views
gem 'devise'
gem 'faker', '~> 1.6', '>= 1.6.3'
gem 'faraday', '~> 0.15.4'
gem 'haml', '~> 5.0.0.beta.2'
# gem 'haml2erb', '~> 0.2.1'
gem 'jbuilder', '~> 2.5' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jquery-rails' # Use jquery as the JavaScript library
gem 'pg', '~> 0.19.0'
gem 'prettify', '~> 0.1.0', git: 'https://github.com/rajgng/prettify.git'
gem 'puma', '~> 3.12' # Use Puma as the app server
gem 'rails', '~> 5.2', '>= 5.2.2'
gem 'record_tag_helper', '~> 1.0'
gem 'redcarpet', '~> 3.3', '>= 3.3.4'
gem 'rolify', '5.1.0'
gem 'rspec-rails', '~> 3.5', '>= 3.5.1'
gem 'sass-rails', '~> 5.0' # Use SCSS for stylesheets
gem 'turbolinks', '~> 5' # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby] # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'uglifier', '>= 1.3.0' # Use Uglifier as compressor for JavaScript assets
gem 'virtus'
group :development, :test do
gem 'byebug', platform: :mri # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'dotenv-rails' # Load env vars from .env
end
group :development do
gem 'listen', '~> 3.0.5'
gem 'rubocop'
gem 'spring' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console' # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
end
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development