forked from spree/spree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common_spree_dependencies.rb
66 lines (58 loc) · 1.51 KB
/
common_spree_dependencies.rb
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
# By placing all of Spree's shared dependencies in this file and then loading
# it for each component's Gemfile, we can be sure that we're only testing just
# the one component of Spree.
source 'https://rubygems.org'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
%w[
actionmailer actionpack actionview activejob activemodel activerecord
activestorage activesupport railties
].each do |rails_gem|
gem rails_gem, ENV.fetch('RAILS_VERSION', '~> 7.0.0'), require: false
end
platforms :jruby do
gem 'jruby-openssl'
end
platforms :ruby do
if ENV['DB'] == 'mysql'
gem 'mysql2'
else
gem 'pg', '~> 1.1'
end
end
gem 'sprockets-rails', '>= 2.0.0'
group :test do
gem 'capybara', '~> 3.24'
gem 'capybara-screenshot', '~> 1.0'
gem 'capybara-select-2'
gem 'database_cleaner-active_record'
gem 'email_spec'
gem 'factory_bot_rails', '~> 6.0'
gem 'multi_json'
gem 'rspec-activemodel-mocks', '~> 1.0'
gem 'rspec-rails', '~> 4.0'
gem 'rspec-retry'
gem 'rspec_junit_formatter'
gem 'rswag-specs', github: 'rswag/rswag'
gem 'jsonapi-rspec'
gem 'simplecov', '0.17.1'
gem 'webmock', '~> 3.7'
gem 'timecop'
gem 'rails-controller-testing'
end
group :test, :development do
gem 'awesome_print'
gem 'brakeman'
gem 'gem-release'
gem 'i18n-tasks'
gem 'redis'
gem 'rubocop', '~> 1.0', require: false
gem 'rubocop-rspec', require: false
gem 'pry-byebug'
gem 'webdrivers', '~> 4.1'
gem 'puma'
gem 'ffaker'
end
group :development do
# gem 'github_fast_changelog'
gem 'solargraph'
end