forked from locomotivecms/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
31 lines (25 loc) · 993 Bytes
/
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
source 'https://rubygems.org'
gemspec
group :development, :test do
gem 'puma', '~> 6.1.1'
gem 'rspec-rails', '~> 6.0.1'
gem 'capybara', '~> 3.38.0'
gem 'debug', '>= 1.0.0'
# gem 'custom_fields', path: '../custom_fields' # for Developers
# gem 'custom_fields', github: 'locomotivecms/custom_fields', ref: 'ab075b1'
# gem 'locomotivecms_common', path: '../common', require: false
# gem 'locomotivecms_common', github: 'locomotivecms/common', ref: '4d1bd56', require: false
# gem 'locomotivecms_steam', path: '../steam', require: false
# gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: 'e4be455', require: false
end
group :test do
gem 'selenium-webdriver', '~> 4.8.1'
gem 'webdrivers', '~> 5.2.0'
gem 'shoulda-matchers', '~> 5.3.0'
gem 'factory_bot_rails', '~> 6.2.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