-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
48 lines (34 loc) · 1.06 KB
/
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
41
42
43
44
45
source 'https://rubygems.org'
gemspec
group :development, :test do
# for bundler, management, etc etc
gem "bundler", "~> 2.2"
gem "rake", "~> 13.0"
gem "rspec", "~> 3.10"
gem 'pry'
gem "pry-doc"
# For testing
gem "sequel", "~> 5.4"
gem "nebulous_stomp", "~> 3"
platforms :ruby do
gem "sqlite3", "~> 1.4"
gem "tiny_tds", "~> 2.1"
gem "pg"
end
platforms :jruby do
gem "jruby-lint"
gem "jeremyevans-postgres-pr"
gem 'jdbc-mssqlserver'
# Note that this gem is part of a larger project, for Activerecord, and their version history
# makes no sense at all. See the RubyGems site to make sense of that. Note: there are
# alternative gems. But this is by the jRuby team; so that's a powerful reason to tolerate BS.
# If you want to go back to the previous version we used you'll have to pin it here; Bundler
# can't figure out their version history, either.
gem 'jdbc-postgres', '42.2.14'
end
# Development tools
platforms :ruby do
gem "rdoc"
gem "ripper-tags"
end
end