-
Notifications
You must be signed in to change notification settings - Fork 36
/
Gemfile
127 lines (95 loc) · 3.03 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
source 'https://rubygems.org'
ruby "3.0.6"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
# We have not investigated the cost of moving to rails 6, but expect it to make
# more breaking changes. Rails 5 is still supported.
gem 'rails', '~> 6.1.7.7'
# Rails currently limits all of the action*/active* gems
# activesupport limits tzinfo
# deployment support
# Sprockets is locked to ~> 3.7.0 because the extra work to update to 4.0.0 was
# dissuasive the last time we updated it. There are instructions to construct
# the necessary manifest file in sprockets' repo.
gem 'sprockets', '~> 3.7.0'
# Use SCSS for stylesheets
gem 'bourbon'
gem 'sassc-rails'
# Use timeout when waiting for CMR to be ready
gem 'timeout'
# Use Autoprefixer for prefixing styles
gem 'autoprefixer-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '2.3.1', group: :doc
# Use Unicorn as the app server
gem 'unicorn'
gem 'webrick', '~> 1.7'
gem 'faraday'
gem 'faraday_middleware'
gem 'bootstrap3-datetimepicker-rails'
gem 'breadcrumbs_on_rails'
gem 'builder'
gem 'carmen', '~>1.0.2' # countries and subdivisions
gem 'factory_bot_rails'
gem 'faker'
gem 'figaro'
gem 'font-awesome-rails'
gem 'jquery-ui-rails'
gem 'json-schema'
gem 'kaminari'
gem 'momentjs-rails' # js lib for dates
gem 'pundit'
gem 'nokogiri-diff', '~> 0.2.0' # for comparing xml documents
gem 'activerecord-import' # bulk insertion of data
gem 'activerecord-session_store', '>=2.1.0'
gem 'ruby-saml', '>= 1.7.0'
gem 'libxml-to-hash', git: 'https://github.com/johannesthoma/libxml-to-hash'
gem 'multi_xml'
gem 'whenever', require: false
gem 'aasm'
gem 'browser'
gem 'actionpack', '~> 6.1.7.8'
gem 'pg', '<1.3'
gem 'dotenv-rails'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
# gem 'spring'
# gem 'jshint'
gem 'rspec-rails'
gem 'sqlite3'
gem 'vcr'
gem 'rails-controller-testing' # https://www.ombulabs.com/blog/rails/upgrades/upgrade-rails-from-4-2-to-5-0.html
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
# Outdated because version 4.0 removed rails 5 support
gem 'web-console'
# better error handling
gem 'better_errors'
gem 'binding_of_caller'
# Keep that code clean, folks!
gem 'rubocop'
end
group :test do
gem 'capybara'
gem 'capybara-screenshot'
gem 'fuubar'
gem 'launchy'
gem 'rack_session_access'
gem 'rspec_junit_formatter'
gem 'selenium-webdriver'
gem 'simplecov', require: false
gem 'webdrivers'
end
gem "shakapacker", "= 6.5"
gem "react-rails", "= 2.6"
gem 'erb'