-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
25 lines (17 loc) · 748 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gemspec
gem "rails", "~> 6.0.0"
# TODO: Remove when rspec-rails 4.0 released
gem "rspec-core", github: "rspec/rspec-core"
gem "rspec-expectations", github: "rspec/rspec-expectations"
gem "rspec-mocks", github: "rspec/rspec-mocks"
gem "rspec-rails", github: "rspec/rspec-rails", branch: "4-0-dev"
gem "rspec-support", github: "rspec/rspec-support"
gem "rubocop", "~> 0.66"
gem "rubocop-performance"
gem "bcrypt", "~> 3.1", require: false
gem "activerecord-jdbcsqlite3-adapter", platform: :jruby
gem "sqlite3", "~> 1.4", platform: %i[ruby mswin mingw x64_mingw]
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw]