-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
48 lines (39 loc) · 842 Bytes
/
Gemfile
File metadata and controls
48 lines (39 loc) · 842 Bytes
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
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
gem 'rake', require: false
case ENV.fetch('RAILS_VERSION', nil)
when '7.1'
gem 'activerecord-jdbc-adapter', '~> 71.0', platform: :jruby
gem 'activerecord-jdbcsqlite3-adapter', '~> 71.0', platform: :jruby
gem 'rails', '~> 7.1.0'
when '7.2'
gem 'rails', '~> 7.2.0'
when '8.0'
gem 'rails', '~> 8.0.0'
else
gem 'rails', github: 'rails/rails'
end
case RUBY_VERSION
when /2.7.\d+/
gem 'sqlite3', '~> 1.6.0', platform: :ruby
when /3.0.\d+/
gem 'sqlite3', '~> 1.7.0', platform: :ruby
else
gem 'sqlite3', platform: :ruby
end
group :development do
gem 'byebug', platforms: :ruby
gem 'rubocop'
end
group :test do
gem 'rspec-rails'
gem 'webmock'
end
group :docs do
gem 'yard'
gem 'yard-sitemap', '~> 1.0'
end
group :release do
gem 'octokit'
end