mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-01-26 05:28:40 -05:00
Merge pull request #70 from puppetlabs/tools
Add Dependabot and Coveralls
This commit is contained in:
commit
2ff562cb40
6 changed files with 25 additions and 1 deletions
1
.coveralls.yml
Normal file
1
.coveralls.yml
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
service_name: travis-pro
|
||||||
7
.dependabot/config.yml
Normal file
7
.dependabot/config.yml
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
version: 1
|
||||||
|
|
||||||
|
update_configs:
|
||||||
|
- package_manager: 'ruby:bundler'
|
||||||
|
directory: '/'
|
||||||
|
update_schedule: 'daily'
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -22,6 +22,7 @@ build/
|
||||||
|
|
||||||
## Environment normalisation:
|
## Environment normalisation:
|
||||||
/.bundle/
|
/.bundle/
|
||||||
|
/vendor/
|
||||||
/lib/bundler/man/
|
/lib/bundler/man/
|
||||||
|
|
||||||
# for a library or gem, you might want to ignore these files since the code is
|
# for a library or gem, you might want to ignore these files since the code is
|
||||||
|
|
|
||||||
1
Gemfile
1
Gemfile
|
|
@ -7,6 +7,7 @@ gemspec
|
||||||
gem 'rake', :require => false
|
gem 'rake', :require => false
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
|
gem 'coveralls', '~> 0.8.23'
|
||||||
gem 'pry'
|
gem 'pry'
|
||||||
gem 'rb-readline'
|
gem 'rb-readline'
|
||||||
gem 'rspec', '~> 3.5.0'
|
gem 'rspec', '~> 3.5.0'
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
# vmfloaty
|
# vmfloaty
|
||||||
|
|
||||||
[](https://badge.fury.io/rb/vmfloaty) [](https://travis-ci.com/puppetlabs/vmfloaty)
|
[](https://badge.fury.io/rb/vmfloaty)
|
||||||
|
[](https://travis-ci.com/puppetlabs/vmfloaty)
|
||||||
|
[](https://coveralls.io/github/puppetlabs/vmfloaty?branch=master)
|
||||||
|
[](https://dependabot.com)
|
||||||
|
|
||||||
A CLI helper tool for [Puppet's vmpooler](https://github.com/puppetlabs/vmpooler) to help you stay afloat.
|
A CLI helper tool for [Puppet's vmpooler](https://github.com/puppetlabs/vmpooler) to help you stay afloat.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,16 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'simplecov'
|
||||||
|
require 'coveralls'
|
||||||
|
|
||||||
|
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
|
||||||
|
SimpleCov::Formatter::HTMLFormatter,
|
||||||
|
Coveralls::SimpleCov::Formatter
|
||||||
|
])
|
||||||
|
SimpleCov.start do
|
||||||
|
add_filter %r{^/spec/}
|
||||||
|
end
|
||||||
|
|
||||||
require 'vmfloaty'
|
require 'vmfloaty'
|
||||||
require 'webmock/rspec'
|
require 'webmock/rspec'
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue