-
Notifications
You must be signed in to change notification settings - Fork 625
/
Gemfile
37 lines (30 loc) · 1.08 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
source 'https://rubygems.org'
gemspec
group :development do
gem 'debug', '~> 1.9.2'
gem 'web-console', '~> 4.2.1'
gem 'error_highlight', '>= 0.4.0'
end
group :development, :test do
gem 'puma', '~> 6.4.0'
gem 'rspec-rails', '~> 6.0.1'
gem 'capybara', '~> 3.40'
gem "rack", "3.1.8"
# gem 'custom_fields', path: '../custom_fields' # for Developers
gem 'custom_fields', github: 'locomotivecms/custom_fields', ref: '87bf1b389d'
# gem 'locomotivecms_common', path: '../common', require: false
# gem 'locomotivecms_common', github: 'locomotivecms/common', ref: '054505c', require: false
# gem 'locomotivecms_steam', path: '../steam', require: false
gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: 'ba10b57', require: false
end
group :test do
gem 'selenium-webdriver', '4.10'
gem 'webdrivers', '~> 5.3.1'
gem 'shoulda-matchers', '~> 5.3.0'
gem 'factory_bot_rails', '~> 6.4.0'
gem 'json_spec', '~> 1.1.5'
gem 'database_cleaner-mongoid', '~> 2.0.1'
gem 'rails-controller-testing'
gem 'email_spec', '~> 2.2.1'
gem 'simplecov', require: false
end