-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
executable file
·52 lines (49 loc) · 1.28 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
source 'https://rubygems.org'
ruby '2.7.1'
gem 'rails'
gem 'webpacker', '~> 4.0'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'uglifier', '>= 1.3.0'
# gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder'
gem 'capybara'
gem 'poltergeist', '~> 1.18', '>= 1.18.1'
gem 'phantomjs', :require => 'phantomjs/poltergeist'
gem 'rufus-scheduler'
gem 'money-rails'
gem 'haml', git: 'https://github.com/haml/haml'
gem 'smart_listing'
# gem 'bootstrap-sass', '~> 3.3.6'
gem 'sass-rails'
gem 'faker'
gem 'activerecord-import'
gem 'erd' #generates entity relationship diagram
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'devise'
gem 'inherited_resources', github: 'activeadmin/inherited_resources'
gem 'activeadmin'
# gem 'font-awesome-rails', '~> 4.5'
gem 'materialize-sass', '~> 1.0.0'
gem 'font-awesome-sass'
gem 'material_icons'
gem 'bootsnap', '>= 1.4.2', require: false
group :development, :test do
gem 'byebug', platform: :mri
gem "simplecov"
gem "ruby-graphviz"
end
group :development do
gem 'web-console'
end
group :test do
gem 'minitest-reporters', '>= 1.1.9'
gem 'guard', '>= 2.13.0'
gem 'guard-minitest', '>= 2.4.4'
gem 'capybara-screenshot'
gem 'scrutinizer-ocular'
end
group :production do
end