spec/spec_helper.rb in amq-protocol-1.3.0 vs spec/spec_helper.rb in amq-protocol-1.4.0

- old
+ new

@@ -18,18 +18,18 @@ require "amq/protocol" puts "Running on #{RUBY_VERSION}" -module RubyVersionsSUpport +module RubyVersionsSupport def one_point_eight? RUBY_VERSION =~ /^1.8/ end end # RubyVersionsSUpport RSpec.configure do |config| config.include AMQ::Protocol - config.include(RubyVersionsSUpport) - config.extend(RubyVersionsSUpport) + config.include(RubyVersionsSupport) + config.extend(RubyVersionsSupport) end