From 5d2cc73ab82893318a315d91a188e5e5a0d4e689 Mon Sep 17 00:00:00 2001 From: Zoran Date: Thu, 19 May 2016 09:47:58 -0700 Subject: [PATCH] update bin/console and spec_helper to account for reworked gem namespacing --- gem/bin/console | 2 +- gem/spec/spec_helper.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gem/bin/console b/gem/bin/console index 3ea580e8..6b228b7e 100755 --- a/gem/bin/console +++ b/gem/bin/console @@ -1,7 +1,7 @@ #!/usr/bin/env ruby require "bundler/setup" -require "foundation/emails" +require "foundation_emails" require "irb" IRB.start diff --git a/gem/spec/spec_helper.rb b/gem/spec/spec_helper.rb index 631ded5f..8b474d2b 100644 --- a/gem/spec/spec_helper.rb +++ b/gem/spec/spec_helper.rb @@ -1,2 +1,2 @@ -$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) -require 'foundation/emails' +$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__) +require "foundation_emails" -- 2.47.2