-
Notifications
You must be signed in to change notification settings - Fork 86
/
Gemfile
91 lines (80 loc) · 1.59 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
source 'https://rubygems.org'
ruby '3.2.5'
rails_version = '7.1.3.4'
gem 'apitome'
gem 'aws-sdk-s3'
gem 'coderay', '~> 1.1'
gem 'coffee-rails'
gem 'dalli'
gem 'devise'
gem 'devise-encryptable'
gem 'dry-auto_inject'
gem 'dry-container'
gem 'dry-effects'
gem 'dry-monads'
gem 'dry-struct'
gem 'dry-validation'
gem 'haml-rails'
gem 'hbw', path: File.join(File.dirname(__FILE__), 'hbw')
gem 'hydra-keycloak-client'
gem 'i18n-js'
gem 'jbuilder'
gem 'jwt'
gem 'kaminari'
gem 'minipack'
gem 'modulejs-rails'
gem 'momentjs-rails', '>= 2.9.0'
gem 'pg', '1.5'
gem 'pry-rails'
gem 'rack', '~> 2.2.3'
%w[
actioncable
actionpack
actionview
activemodel
activerecord
activesupport
railties
].each { |gem| gem gem, rails_version }
gem 'redis', '~> 4'
gem 'simple_form'
gem 'sprockets', '~> 3.7'
gem 'sprockets-rails'
group :oracle do
gem 'ruby-oci8', '2.2.12'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'html2haml'
gem 'rails_layout'
gem 'ruby_parser'
gem 'spring-commands-rspec'
end
group :development, :test, :staging do
gem 'factory_bot_rails', '~> 4.8.2'
gem 'faker'
gem 'pry-byebug'
gem 'rspec_api_documentation', git: 'https://github.com/hydra-billing/rspec_api_documentation'
gem 'rspec_junit_formatter'
gem 'rspec-mocks'
gem 'rspec-rails'
gem 'rubocop'
gem 'spring'
gem 'translit'
end
group :development, :test do
gem 'puma'
end
group :production, :staging do
gem 'unicorn'
end
group :test do
gem 'capybara'
gem 'capybara-screenshot'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
gem 'simplecov'
gem 'temping'
end