summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBranan Purvine-Riley <branan@puppetlabs.com>2012-05-29 17:53:27 -0700
committerBranan Purvine-Riley <branan@puppetlabs.com>2012-05-31 09:10:27 -0700
commitd9410f72e416da15eb1660d15ba2b4288ccc0873 (patch)
tree20a12bdc41216bcacb30033a79acfd757402dd74
parent2247df4f6e828d6791a46cb12d4e2df2e0b98dce (diff)
downloadpuppet-stdlib-d9410f72e416da15eb1660d15ba2b4288ccc0873.tar.gz
puppet-stdlib-d9410f72e416da15eb1660d15ba2b4288ccc0873.tar.bz2
Require the new puppetlabs_spec_helper gem name
-rw-r--r--.gemfile2
-rw-r--r--Rakefile2
-rw-r--r--spec/spec_helper.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/.gemfile b/.gemfile
index 7e4ae1d..9aad840 100644
--- a/.gemfile
+++ b/.gemfile
@@ -2,4 +2,4 @@ source :rubygems
puppetversion = ENV.key?('PUPPET_VERSION') ? "= #{ENV['PUPPET_VERSION']}" : ['>= 2.7']
gem 'puppet', puppetversion
-gem 'puppet_module_spec_helper', :git => 'git://github.com/branan/puppetlabs_spec_helper'
+gem 'puppetlabs_spec_helper', '>= 0.1.0'
diff --git a/Rakefile b/Rakefile
index 277c8e2..14f1c24 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,2 +1,2 @@
require 'rubygems'
-require 'puppet_module_spec_helper/rake_tasks'
+require 'puppetlabs_spec_helper/rake_tasks'
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 0fd4a26..3fdcbbc 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,4 +1,4 @@
-require 'puppet_module_spec_helper/puppet_spec_helper'
+require 'puppetlabs_spec_helper/puppet_spec_helper'
RSpec.configure do |config|