forked from jonatack/kraken_ruby_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·51 lines (43 loc) · 1.58 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
46
47
48
49
50
51
# frozen_string_literal: true
#--
# Gemfile
#
# Kraken Exchange API client written in Ruby
# Copyright (C) 2016-2021 Jon Atack <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.)
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.)
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# The author may be contacted by email: [email protected]
#++
source 'https://rubygems.org'
gemspec
git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }
# Curl Ruby for HTTP - the only runtime dependency for this gem.
gem 'curb', '~> 0.9.11'
# Ruby Make
gem 'rake'
# Testing
gem 'minitest'
gem 'minitest-reporters'
# Minitest-focus allows you to focus on a single test without CLI arguments.
# The +focus+ class method enables running the next defined test only.
# Read more: https://github.com/seattlerb/minitest-focus
gem 'minitest-focus'
# Pretty Minitest Color Reporter.
# More info: https://github.com/danielpclark/color_pound_spec_reporter
gem 'color_pound_spec_reporter'
# Linter
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-minitest'