mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-01-26 05:28:40 -05:00
This adds Dependabot to keep things updated and Coveralls so we can see how code coverage changes over time. Coveralls / SimpleCov are configured so that both the SimpleCov html report and the Coveralls report are generated. This facilitates easily seeing coverage locally in addtion to via CI.
16 lines
263 B
Ruby
16 lines
263 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.5.0'
|
|
gem 'rubocop', '~> 0.52'
|
|
gem 'webmock', '1.21.0'
|
|
end
|