Minor updates to the module, bumping to v2.0.0 for the major sc change

This commit is contained in:
R. Tyler Croy 2014-03-07 09:06:45 -08:00
parent 2ac7ba6c29
commit 378b5cba18
5 changed files with 9 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
pkg
.rvmrc
Gemfile.lock
.ruby-*

View File

@ -1,4 +1,4 @@
source :gemcutter
source 'https://rubygems.org'
gem 'rake'
gem 'puppet'

View File

@ -1,5 +1,5 @@
name 'rtyler-sauceconnect'
version '1.0.0'
version '2.0.0'
source 'https://github.com/rtyler/puppet-sauceconnect'
author 'rtyler'
license 'Apache License, Version 2.0'

View File

@ -1,7 +1,5 @@
# sauceconnect
[![Build Status](https://buildhive.cloudbees.com/job/rtyler/job/puppet-sauceconnect/badge/icon)](https://buildhive.cloudbees.com/job/rtyler/job/puppet-sauceconnect/)
This is the sauceconnect module, it will manage running a Sauce Connect tunnel
daemon on a host for you.

View File

@ -1,9 +1,13 @@
require 'rake'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |t|
t.pattern = 'spec/*/*_spec.rb'
end
task :default => [:spec]
desc "Build a Puppet module"
task :build do
sh 'puppet module build'
end
task :default => [:spec, :build]