forked from sparklemotion/sqlite3-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
20 lines (14 loc) · 782 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- ruby -*-
# DO NOT EDIT THIS FILE. Instead, edit Rakefile, and run `rake bundler:gemfile`.
source "https://rubygems.org/"
gem "minitest", "~>5.11", :group => [:development, :test]
gem "rake-compiler", "~>1.0", :group => [:development, :test]
gem "rake-compiler-dock", "~>0.6.0", :group => [:development, :test]
gem "mini_portile2", "~>2.0", :group => [:development, :test]
gem "hoe-bundler", "~>1.0", :group => [:development, :test]
gem "hoe-gemspec", "~>1.0", :group => [:development, :test]
gem "rdoc", ">=4.0", "<6", :group => [:development, :test]
# hoe versions >= 3.19.0 are incompatible with Ruby 2.0 and earlier,
# but the gemspec does not indicate so...
gem "hoe", (RUBY_VERSION < "2.1" ? "3.18.1" : "~>3.20"), :group => [:development, :test]
# vim: syntax=ruby