forked from brianmario/mysql2
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
40 lines (33 loc) · 792 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
32
33
34
35
36
37
38
39
40
source 'https://rubygems.org'
gemspec
gem 'rake', if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.2")
'~> 13.0.1'
else
'< 13'
end
gem 'rake-compiler', '~> 1.1.0'
# For local debugging, irb is Gemified since Ruby 2.6
gem 'irb', require: false
group :test do
gem 'eventmachine' unless RUBY_PLATFORM =~ /mswin|mingw/
gem 'rspec', '~> 3.2'
# https://github.com/bbatsov/rubocop/pull/4789
gem 'rubocop', '~> 0.50.0'
end
group :benchmarks do
gem 'activerecord', '>= 3.0'
gem 'benchmark-ips'
gem 'do_mysql'
gem 'faker'
gem 'mysql'
gem 'sequel'
end
group :development do
gem 'pry'
gem 'rake-compiler-dock', '~> 0.7.0'
end
platforms :rbx do
gem 'rubysl-bigdecimal'
gem 'rubysl-drb'
gem 'rubysl-rake'
end