forked from darkty0x/arbitrum-token-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
101 lines (82 loc) · 1.91 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.3'
# Server
gem 'rails', '~> 5.2.3'
gem 'puma', '~> 3.11'
gem 'bootsnap', '>= 1.1.0', require: false
# Database and Model
gem 'pg'
gem 'aasm'
gem 'value_objects', git: 'https://github.com/GoldenOwlAsia/value_objects.git'
# Asset pipeline
gem 'sass-rails', '~> 5.0'
gem 'coffee-rails', '~> 4.2'
gem 'uglifier', '>= 1.3.0'
# View render
gem 'slim'
gem 'simple_form'
gem 'country_select'
gem 'kaminari'
# Pdf render
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
# Xlsx render
# gem 'axlsx', git: 'https://github.com/randym/axlsx.git'
# gem 'axlsx_rails'
# Mailer
gem 'premailer-rails'
# Front-end
gem 'turbolinks', '~> 5'
gem 'sprockets', '>= 3.0.0'
gem 'sprockets-es6'
gem 'punchbox', git: 'https://github.com/GoldenOwlAsia/punchbox.git'
gem 'bootstrap', '~> 4.3.1'
gem 'jquery-rails'
# File uploading
gem 'mini_magick'
gem 'carrierwave', '~> 1.0'
gem 'fog-aws'
# Authentication
gem 'devise'
# Background worker
# gem 'sidekiq-cron', '~> 1.1'
# gem 'whenever', require: false
gem 'sidekiq'
# Patterns
gem 'draper'
gem 'pundit'
# Performance
gem 'rack-mini-profiler', require: false
# 3rd services
gem 'sentry-raven'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'pry-rails'
gem 'dotenv-rails'
gem 'rspec-rails', '~> 3.8'
gem 'factory_bot_rails'
gem 'fuubar'
gem 'faker'
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 'rubocop-rails'
gem 'letter_opener'
gem 'annotate'
gem 'bullet'
end
group :test do
gem 'simplecov', require: false
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
gem 'chromedriver-helper'
gem 'shoulda-matchers'
gem 'rails-controller-testing'
gem 'webmock'
gem 'vcr'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]