diff --git a/.travis.yml b/.travis.yml index 285725e..17a61fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,4 +2,3 @@ language: ruby rvm: - 2.0.0 - 1.9.3 - - 1.8.7 diff --git a/Gemfile b/Gemfile index 8a90e4c..e92684c 100644 --- a/Gemfile +++ b/Gemfile @@ -15,7 +15,7 @@ group :development do gem "jeweler", ">= 1.6.2" gem "rcov", :platforms => :mri_18 gem "simplecov", :platforms => :mri_19 - gem "test-construct" + gem "test_construct" gem "capture-output", "~> 1.0.0" if RbConfig::CONFIG['host_os'] =~ /linux|freebsd|openbsd|sunos|solaris/ gem 'libnotify' diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 22fd155..e594897 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -3,11 +3,11 @@ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) require 'homesick' require 'rspec' require 'rspec/autorun' -require 'construct' +require 'test_construct' require 'tempfile' RSpec.configure do |config| - config.include Construct::Helpers + config.include TestConstruct::Helpers config.before { ENV['HOME'] = home.to_s }