-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathGemfile
More file actions
22 lines (16 loc) · 614 Bytes
/
Gemfile
File metadata and controls
22 lines (16 loc) · 614 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
#### IMPORTANT #######################################################
# Gemfile is for local development ONLY; Gemfile is NOT loaded in CI #
####################################################### IMPORTANT ####
source "https://rubygems.org"
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
# Specify your gem's dependencies in ranked-model.gemspec
gemspec
gem "net-http", "~> 0.4", ">= 0.4.1"
gem "uri", "~> 0.13", ">= 0.13.1"
gem "logger", "~> 1.6", ">= 1.6.1"
gem "rexml", "~> 3.3", ">= 3.3.7"
platform :mri do
# Debugging
gem "byebug", ">= 11"
end