From: Zoran Date: Thu, 19 May 2016 16:47:58 +0000 (-0700) Subject: update bin/console and spec_helper to account for reworked gem namespacing X-Git-Tag: v2.2.1~3^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5d2cc73ab82893318a315d91a188e5e5a0d4e689;p=thirdparty%2Ffoundation%2Ffoundation-emails.git update bin/console and spec_helper to account for reworked gem namespacing --- 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"