mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-01-26 05:28:40 -05:00
This unpins Faraday and webmock, and updates specs so that the Faraday changes (primarily including auth in the header rather than in the URL) is reflected.
16 lines
261 B
Ruby
16 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gemspec
|
|
|
|
gem 'rake', require: false
|
|
|
|
group :test do
|
|
gem 'coveralls', '~> 0.8.23'
|
|
gem 'pry'
|
|
gem 'rb-readline'
|
|
gem 'rspec', '~> 3.10.0'
|
|
gem 'rubocop', '~> 1.6'
|
|
gem 'webmock', '~> 3.13'
|
|
end
|