-
Notifications
You must be signed in to change notification settings - Fork 559
Expand file tree
/
Copy pathGemfile
More file actions
50 lines (42 loc) · 1.2 KB
/
Copy pathGemfile
File metadata and controls
50 lines (42 loc) · 1.2 KB
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
source 'https://rubygems.org'
gemspec
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.2")
gem 'rake', '~> 13.0'
else
gem 'rake', '< 13'
end
gem 'rake-compiler', '~> 1.2.0'
# For local debugging, irb is Gemified since Ruby 2.6
gem 'irb', require: false
group :test do
unless RUBY_PLATFORM =~ /mswin|mingw/
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('4.0')
# Ruby 4.0 removed Data_Wrap_Struct, breaking eventmachine 1.2.7's
# fastfilereader ext; use git master until a fix is released.
gem 'eventmachine', github: 'eventmachine/eventmachine'
else
gem 'eventmachine'
end
end
gem 'rspec', '~> 3.2'
gem 'rubocop'
end
group :benchmarks, optional: true do
gem 'activerecord', '>= 3.0'
gem 'benchmark-ips'
gem 'do_mysql'
gem 'faker'
# The installation of the mysql latest version 2.9.1 fails on Ruby >= 2.4.
gem 'mysql' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.4')
gem 'sequel'
end
group :development do
gem 'pry'
gem 'rake-compiler-dock', '~> 0.7.0'
end
# On MRI Ruby >= 3.0, rubysl-rake causes the conflict on GitHub Actions.
# platforms :rbx do
# gem 'rubysl-bigdecimal'
# gem 'rubysl-drb'
# gem 'rubysl-rake'
# end