This repository was archived by the owner on Feb 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
65 lines (57 loc) · 1.38 KB
/
Gemfile
File metadata and controls
65 lines (57 loc) · 1.38 KB
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# ruby '2.5.3'
# gem 'rails', '6.0.2.1'
group :production do
gem 'pg'
end
gem "actionview", ">= 6.0.2.2"
gem 'newrelic_rpm'
gem 'mini_racer'
gem 'material_icons'
gem 'awesome_print'
gem 'fastercsv' # Only required on Ruby 1.8 and below
gem "puma", ">= 3.12.4"
gem 'loofah'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '5.0.0'
gem 'jbuilder', '~> 2.5'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'barnes'
gem 'rails_admin', '~> 2.0', git: 'https://github.com/sferik/rails_admin.git'
gem 'async-await'
gem 'async'
gem 'responders'
gem 'jquery'
gem "font-awesome-rails"
gem 'font-awesome-sass'
gem 'rails-bootstrap'
gem 'bootstrap'
gem 'jquery-rails'
gem "rack-cors", ">= 0.4.1"
gem 'devise'
gem 'faraday'
gem 'pry'
gem 'honeybadger', '~> 4.0'
gem "nokogiri", ">= 1.10.8"
gem 'httparty'
gem 'audiojs-rails'
gem 'guard-rspec', '~> 4.6.5'
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails'
gem 'binding_of_caller'
gem 'spring-commands-rspec'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
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'
end
group :test do
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]