Решение на Четвърта задача от Любомир Папазов

Обратно към всички решения

Към профила на Любомир Папазов

Резултати

  • 1 точка от тестове
  • 0 бонус точки
  • 1 точка общо
  • 12 успешни тест(а)
  • 45 неуспешни тест(а)

Код

class Card
include Comparable
@@suits = { :clubs => 0, :diamonds => 1, :hearts => 2, :spades => 3 }
@@ranks = { :jack => 11, :queen => 12, :king => 13, :ace => 14 }
def rank_index(card)
case card
when Symbol
@@ranks[card]
else
card
end
end
def suit_index(card)
@@suits[card]
end
def initialize(rank, suit)
@rank = rank
@suit = suit
end
def <=>(other)
[suit_index(self.suit),
rank_index(self.rank)] <=> [suit_index(other.suit),
rank_index(other.rank)]
end
def rank
@rank
end
def suit
@suit
end
def to_s
case @rank
when Symbol
"#{@rank.id2name.capitalize} of #{@suit.id2name.capitalize}"
else
"#{@rank} of #{@suit.id2name.capitalize}"
end
end
end
class Deck
include Enumerable
@@suits = { :clubs => 0, :diamonds => 1, :hearts => 2, :spades => 3 }
def initialize(*cards_array)
if ! cards_array.empty?
@cards = cards_array.flatten
else
@cards = Array.new()
fill_deck
end
end
def draw_top_card
@cards.shift
end
def draw_bottom_card
@cards.pop
end
def top_card
@cards.first
end
def bottom_card
@cards.last
end
def shuffle
@cards.shuffle!
end
def sort
@cards.sort!.reverse!
end
def each
@cards.each do |card|
yield card.to_s
end
end
def to_s
result = String.new()
@cards.each do |card|
result += card.to_s + "\n"
end
result.rstrip
end
def size
@cards.count
end
def deal
end
end
class WarDeckHand < Deck
def allow_face_up?
@cards.count <= 3
end
def play_card
@cards.last.pop!
end
end
class WarDeck < Deck
@@ranks = { 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7,
8 => 8, 9 => 9, 10 => 10,
:jack => 11, :queen => 12, :king => 13, :ace => 14}
@@reverse_ranks = @@ranks.invert
@@reverse_suits = @@suits.invert
def fill_deck
(2..14).each do |rank|
(0..3).each do |suit|
@cards.push(Card.new(@@reverse_ranks[rank], @@reverse_suits[suit]))
end
end
end
def deal
WarDeckHand.new(@cards.pop(26).reverse)
end
end
class BeloteDeck < Deck
@@ranks = { 7 => 1, 8 => 2, 9 => 3,
:jack => 4, :queen => 5, :king => 6, 10 => 7, :ace => 8}
end
class SixtySixDeck
end

Лог от изпълнението

/datF.FFFF.....FFF.FFFFF..FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF

Failures:

  1) WarDeck behaves like a deck implements Enumerable
     Failure/Error: expect(small_deck.to_a).to eq [ace_of_spades, nine_of_clubs]
       
       expected: [#<Card:0x007fb4db18c6c0 @rank=:ace, @suit=:spades>, #<Card:0x007fb4db18c5f8 @rank=9, @suit=:clubs>]
            got: ["Ace of Spades", "9 of Clubs"]
       
       (compared using ==)
       
       Diff:
       @@ -1,3 +1,2 @@
       -[#<Card:0x007fb4db18c6c0 @rank=:ace, @suit=:spades>,
       - #<Card:0x007fb4db18c5f8 @rank=9, @suit=:clubs>]
       +["Ace of Spades", "9 of Clubs"]
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:140
     # /tmp/d20151112-27349-dpjnxa/spec.rb:11:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  2) WarDeck behaves like a deck fills the deck if no initialize parameters are given
     Failure/Error: expect(deck.to_a).to match_array all_available_cards
       expected collection contained:  [#<Card:0x007fb4daf60ec8 @rank=2, @suit=:clubs>, #<Card:0x007fb4daf60d60 @rank=3, @suit=:clubs>, #<Card:0x007fb4daf60d38 @rank=4, @suit=:clubs>, #<Card:0x007fb4daf60d10 @rank=5, @suit=:clubs>, #<Card:0x007fb4daf60c20 @rank=6, @suit=:clubs>, #<Card:0x007fb4daf60ab8 @rank=7, @suit=:clubs>, #<Card:0x007fb4daf609f0 @rank=8, @suit=:clubs>, #<Card:0x007fb4daf608d8 @rank=9, @suit=:clubs>, #<Card:0x007fb4daf608b0 @rank=10, @suit=:clubs>, #<Card:0x007fb4daf60888 @rank=:jack, @suit=:clubs>, #<Card:0x007fb4daf60860 @rank=:queen, @suit=:clubs>, #<Card:0x007fb4daf60838 @rank=:king, @suit=:clubs>, #<Card:0x007fb4daf606d0 @rank=:ace, @suit=:clubs>, #<Card:0x007fb4daf60518 @rank=2, @suit=:diamonds>, #<Card:0x007fb4daf60400 @rank=3, @suit=:diamonds>, #<Card:0x007fb4daf601a8 @rank=4, @suit=:diamonds>, #<Card:0x007fb4daf615d0 @rank=5, @suit=:diamonds>, #<Card:0x007fb4daf60108 @rank=6, @suit=:diamonds>, #<Card:0x007fb4daf60658 @rank=7, @suit=:diamonds>, #<Card:0x007fb4daf635b0 @rank=8, @suit=:diamonds>, #<Card:0x007fb4daf63808 @rank=9, @suit=:diamonds>, #<Card:0x007fb4daf5fc58 @rank=10, @suit=:diamonds>, #<Card:0x007fb4daf5f8c0 @rank=:jack, @suit=:diamonds>, #<Card:0x007fb4daf5f820 @rank=:queen, @suit=:diamonds>, #<Card:0x007fb4daf5f618 @rank=:king, @suit=:diamonds>, #<Card:0x007fb4daf5f5f0 @rank=:ace, @suit=:diamonds>, #<Card:0x007fb4daf5f5c8 @rank=2, @suit=:hearts>, #<Card:0x007fb4daf5f4d8 @rank=3, @suit=:hearts>, #<Card:0x007fb4daf5f398 @rank=4, @suit=:hearts>, #<Card:0x007fb4daf5f2f8 @rank=5, @suit=:hearts>, #<Card:0x007fb4daf5f258 @rank=6, @suit=:hearts>, #<Card:0x007fb4daf5f208 @rank=7, @suit=:hearts>, #<Card:0x007fb4daf5f1e0 @rank=8, @suit=:hearts>, #<Card:0x007fb4daf5f1b8 @rank=9, @suit=:hearts>, #<Card:0x007fb4daf5f168 @rank=10, @suit=:hearts>, #<Card:0x007fb4daf5efb0 @rank=:jack, @suit=:hearts>, #<Card:0x007fb4daf5ee98 @rank=:queen, @suit=:hearts>, #<Card:0x007fb4daf5ec68 @rank=:king, @suit=:hearts>, #<Card:0x007fb4daf5ec18 @rank=:ace, @suit=:hearts>, #<Card:0x007fb4daf5ebf0 @rank=2, @suit=:spades>, #<Card:0x007fb4daf5e808 @rank=3, @suit=:spades>, #<Card:0x007fb4daf5e650 @rank=4, @suit=:spades>, #<Card:0x007fb4daf5e600 @rank=5, @suit=:spades>, #<Card:0x007fb4daf5e2e0 @rank=6, @suit=:spades>, #<Card:0x007fb4daf5e2b8 @rank=7, @suit=:spades>, #<Card:0x007fb4daf5e038 @rank=8, @suit=:spades>, #<Card:0x007fb4daf5dfc0 @rank=9, @suit=:spades>, #<Card:0x007fb4daf5dea8 @rank=10, @suit=:spades>, #<Card:0x007fb4daf5de80 @rank=:jack, @suit=:spades>, #<Card:0x007fb4daf5de58 @rank=:queen, @suit=:spades>, #<Card:0x007fb4daf5dcf0 @rank=:king, @suit=:spades>, #<Card:0x007fb4daf5db60 @rank=:ace, @suit=:spades>]
       actual collection contained:    ["10 of Clubs", "10 of Diamonds", "10 of Hearts", "10 of Spades", "2 of Clubs", "2 of Diamonds", "2 of Hearts", "2 of Spades", "3 of Clubs", "3 of Diamonds", "3 of Hearts", "3 of Spades", "4 of Clubs", "4 of Diamonds", "4 of Hearts", "4 of Spades", "5 of Clubs", "5 of Diamonds", "5 of Hearts", "5 of Spades", "6 of Clubs", "6 of Diamonds", "6 of Hearts", "6 of Spades", "7 of Clubs", "7 of Diamonds", "7 of Hearts", "7 of Spades", "8 of Clubs", "8 of Diamonds", "8 of Hearts", "8 of Spades", "9 of Clubs", "9 of Diamonds", "9 of Hearts", "9 of Spades", "Ace of Clubs", "Ace of Diamonds", "Ace of Hearts", "Ace of Spades", "Jack of Clubs", "Jack of Diamonds", "Jack of Hearts", "Jack of Spades", "King of Clubs", "King of Diamonds", "King of Hearts", "King of Spades", "Queen of Clubs", "Queen of Diamonds", "Queen of Hearts", "Queen of Spades"]
       the missing elements were:      [#<Card:0x007fb4daf60ec8 @rank=2, @suit=:clubs>, #<Card:0x007fb4daf60d60 @rank=3, @suit=:clubs>, #<Card:0x007fb4daf60d38 @rank=4, @suit=:clubs>, #<Card:0x007fb4daf60d10 @rank=5, @suit=:clubs>, #<Card:0x007fb4daf60c20 @rank=6, @suit=:clubs>, #<Card:0x007fb4daf60ab8 @rank=7, @suit=:clubs>, #<Card:0x007fb4daf609f0 @rank=8, @suit=:clubs>, #<Card:0x007fb4daf608d8 @rank=9, @suit=:clubs>, #<Card:0x007fb4daf608b0 @rank=10, @suit=:clubs>, #<Card:0x007fb4daf60888 @rank=:jack, @suit=:clubs>, #<Card:0x007fb4daf60860 @rank=:queen, @suit=:clubs>, #<Card:0x007fb4daf60838 @rank=:king, @suit=:clubs>, #<Card:0x007fb4daf606d0 @rank=:ace, @suit=:clubs>, #<Card:0x007fb4daf60518 @rank=2, @suit=:diamonds>, #<Card:0x007fb4daf60400 @rank=3, @suit=:diamonds>, #<Card:0x007fb4daf601a8 @rank=4, @suit=:diamonds>, #<Card:0x007fb4daf615d0 @rank=5, @suit=:diamonds>, #<Card:0x007fb4daf60108 @rank=6, @suit=:diamonds>, #<Card:0x007fb4daf60658 @rank=7, @suit=:diamonds>, #<Card:0x007fb4daf635b0 @rank=8, @suit=:diamonds>, #<Card:0x007fb4daf63808 @rank=9, @suit=:diamonds>, #<Card:0x007fb4daf5fc58 @rank=10, @suit=:diamonds>, #<Card:0x007fb4daf5f8c0 @rank=:jack, @suit=:diamonds>, #<Card:0x007fb4daf5f820 @rank=:queen, @suit=:diamonds>, #<Card:0x007fb4daf5f618 @rank=:king, @suit=:diamonds>, #<Card:0x007fb4daf5f5f0 @rank=:ace, @suit=:diamonds>, #<Card:0x007fb4daf5f5c8 @rank=2, @suit=:hearts>, #<Card:0x007fb4daf5f4d8 @rank=3, @suit=:hearts>, #<Card:0x007fb4daf5f398 @rank=4, @suit=:hearts>, #<Card:0x007fb4daf5f2f8 @rank=5, @suit=:hearts>, #<Card:0x007fb4daf5f258 @rank=6, @suit=:hearts>, #<Card:0x007fb4daf5f208 @rank=7, @suit=:hearts>, #<Card:0x007fb4daf5f1e0 @rank=8, @suit=:hearts>, #<Card:0x007fb4daf5f1b8 @rank=9, @suit=:hearts>, #<Card:0x007fb4daf5f168 @rank=10, @suit=:hearts>, #<Card:0x007fb4daf5efb0 @rank=:jack, @suit=:hearts>, #<Card:0x007fb4daf5ee98 @rank=:queen, @suit=:hearts>, #<Card:0x007fb4daf5ec68 @rank=:king, @suit=:hearts>, #<Card:0x007fb4daf5ec18 @rank=:ace, @suit=:hearts>, #<Card:0x007fb4daf5ebf0 @rank=2, @suit=:spades>, #<Card:0x007fb4daf5e808 @rank=3, @suit=:spades>, #<Card:0x007fb4daf5e650 @rank=4, @suit=:spades>, #<Card:0x007fb4daf5e600 @rank=5, @suit=:spades>, #<Card:0x007fb4daf5e2e0 @rank=6, @suit=:spades>, #<Card:0x007fb4daf5e2b8 @rank=7, @suit=:spades>, #<Card:0x007fb4daf5e038 @rank=8, @suit=:spades>, #<Card:0x007fb4daf5dfc0 @rank=9, @suit=:spades>, #<Card:0x007fb4daf5dea8 @rank=10, @suit=:spades>, #<Card:0x007fb4daf5de80 @rank=:jack, @suit=:spades>, #<Card:0x007fb4daf5de58 @rank=:queen, @suit=:spades>, #<Card:0x007fb4daf5dcf0 @rank=:king, @suit=:spades>, #<Card:0x007fb4daf5db60 @rank=:ace, @suit=:spades>]
       the extra elements were:        ["10 of Clubs", "10 of Diamonds", "10 of Hearts", "10 of Spades", "2 of Clubs", "2 of Diamonds", "2 of Hearts", "2 of Spades", "3 of Clubs", "3 of Diamonds", "3 of Hearts", "3 of Spades", "4 of Clubs", "4 of Diamonds", "4 of Hearts", "4 of Spades", "5 of Clubs", "5 of Diamonds", "5 of Hearts", "5 of Spades", "6 of Clubs", "6 of Diamonds", "6 of Hearts", "6 of Spades", "7 of Clubs", "7 of Diamonds", "7 of Hearts", "7 of Spades", "8 of Clubs", "8 of Diamonds", "8 of Hearts", "8 of Spades", "9 of Clubs", "9 of Diamonds", "9 of Hearts", "9 of Spades", "Ace of Clubs", "Ace of Diamonds", "Ace of Hearts", "Ace of Spades", "Jack of Clubs", "Jack of Diamonds", "Jack of Hearts", "Jack of Spades", "King of Clubs", "King of Diamonds", "King of Hearts", "King of Spades", "Queen of Clubs", "Queen of Diamonds", "Queen of Hearts", "Queen of Spades"]
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:140
     # /tmp/d20151112-27349-dpjnxa/spec.rb:18:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  3) WarDeck behaves like a deck #draw_top_card pops the top-most card
     Failure/Error: expect(small_deck.to_a).to eq [nine_of_clubs]
       
       expected: [#<Card:0x007fb4db768918 @rank=9, @suit=:clubs>]
            got: ["9 of Clubs"]
       
       (compared using ==)
       
       Diff:
       @@ -1,2 +1,2 @@
       -[#<Card:0x007fb4db768918 @rank=9, @suit=:clubs>]
       +["9 of Clubs"]
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:140
     # /tmp/d20151112-27349-dpjnxa/spec.rb:30:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  4) WarDeck behaves like a deck #draw_bottom_card pops the bottom-most card
     Failure/Error: expect(small_deck.to_a).to eq [ace_of_spades]
       
       expected: [#<Card:0x007fb4db77ef10 @rank=:ace, @suit=:spades>]
            got: ["Ace of Spades"]
       
       (compared using ==)
       
       Diff:
       @@ -1,2 +1,2 @@
       -[#<Card:0x007fb4db77ef10 @rank=:ace, @suit=:spades>]
       +["Ace of Spades"]
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:140
     # /tmp/d20151112-27349-dpjnxa/spec.rb:37:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  5) WarDeck behaves like a deck #top peeks at the top-most card
     Failure/Error: expect(small_deck.to_a).to eq [ace_of_spades, nine_of_clubs]
       
       expected: [#<Card:0x007fb4db7b0ec0 @rank=:ace, @suit=:spades>, #<Card:0x007fb4db7b0cb8 @rank=9, @suit=:clubs>]
            got: ["Ace of Spades", "9 of Clubs"]
       
       (compared using ==)
       
       Diff:
       @@ -1,3 +1,2 @@
       -[#<Card:0x007fb4db7b0ec0 @rank=:ace, @suit=:spades>,
       - #<Card:0x007fb4db7b0cb8 @rank=9, @suit=:clubs>]
       +["Ace of Spades", "9 of Clubs"]
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:140
     # /tmp/d20151112-27349-dpjnxa/spec.rb:44:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  6) WarDeck behaves like a deck #bottom peeks at the bottom-most card
     Failure/Error: expect(small_deck.to_a).to eq [ace_of_spades, nine_of_clubs]
       
       expected: [#<Card:0x007fb4db7ffb38 @rank=:ace, @suit=:spades>, #<Card:0x007fb4db7ffb10 @rank=9, @suit=:clubs>]
            got: ["Ace of Spades", "9 of Clubs"]
       
       (compared using ==)
       
       Diff:
       @@ -1,3 +1,2 @@
       -[#<Card:0x007fb4db7ffb38 @rank=:ace, @suit=:spades>,
       - #<Card:0x007fb4db7ffb10 @rank=9, @suit=:clubs>]
       +["Ace of Spades", "9 of Clubs"]
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:140
     # /tmp/d20151112-27349-dpjnxa/spec.rb:51:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  7) WarDeck hand #allow_face_up? returns true if the cards are less than or equal to 3
     Failure/Error: 23.times { hand.play_card }
     NoMethodError:
       undefined method `pop!' for #<Card:0x007fb4dbb9f2e8 @rank=8, @suit=:hearts>
     # /tmp/d20151112-27349-dpjnxa/solution.rb:115:in `play_card'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:176:in `block (5 levels) in <top (required)>'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:176:in `times'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:176:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  8) BeloteDeck behaves like a deck implements Enumerable
     Failure/Error: expect(small_deck.to_a).to eq [ace_of_spades, nine_of_clubs]
       
       expected: [#<Card:0x007fb4dbb81ae0 @rank=:ace, @suit=:spades>, #<Card:0x007fb4dbb81ab8 @rank=9, @suit=:clubs>]
            got: ["Ace of Spades", "9 of Clubs"]
       
       (compared using ==)
       
       Diff:
       @@ -1,3 +1,2 @@
       -[#<Card:0x007fb4dbb81ae0 @rank=:ace, @suit=:spades>,
       - #<Card:0x007fb4dbb81ab8 @rank=9, @suit=:clubs>]
       +["Ace of Spades", "9 of Clubs"]
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:191
     # /tmp/d20151112-27349-dpjnxa/spec.rb:11:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  9) BeloteDeck behaves like a deck fills the deck if no initialize parameters are given
     Failure/Error: deck = deck_class.new
     NameError:
       undefined local variable or method `fill_deck' for #<BeloteDeck:0x007fb4dbba41d0 @cards=[]>
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:191
     # /tmp/d20151112-27349-dpjnxa/solution.rb:59:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:15:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:15:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  10) BeloteDeck behaves like a deck #draw_top_card pops the top-most card
     Failure/Error: expect(small_deck.to_a).to eq [nine_of_clubs]
       
       expected: [#<Card:0x007fb4dbbce958 @rank=9, @suit=:clubs>]
            got: ["9 of Clubs"]
       
       (compared using ==)
       
       Diff:
       @@ -1,2 +1,2 @@
       -[#<Card:0x007fb4dbbce958 @rank=9, @suit=:clubs>]
       +["9 of Clubs"]
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:191
     # /tmp/d20151112-27349-dpjnxa/spec.rb:30:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  11) BeloteDeck behaves like a deck #draw_bottom_card pops the bottom-most card
     Failure/Error: expect(small_deck.to_a).to eq [ace_of_spades]
       
       expected: [#<Card:0x007fb4dbbef9a0 @rank=:ace, @suit=:spades>]
            got: ["Ace of Spades"]
       
       (compared using ==)
       
       Diff:
       @@ -1,2 +1,2 @@
       -[#<Card:0x007fb4dbbef9a0 @rank=:ace, @suit=:spades>]
       +["Ace of Spades"]
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:191
     # /tmp/d20151112-27349-dpjnxa/spec.rb:37:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  12) BeloteDeck behaves like a deck #top peeks at the top-most card
     Failure/Error: expect(small_deck.to_a).to eq [ace_of_spades, nine_of_clubs]
       
       expected: [#<Card:0x007fb4dbc0a638 @rank=:ace, @suit=:spades>, #<Card:0x007fb4dbc0a610 @rank=9, @suit=:clubs>]
            got: ["Ace of Spades", "9 of Clubs"]
       
       (compared using ==)
       
       Diff:
       @@ -1,3 +1,2 @@
       -[#<Card:0x007fb4dbc0a638 @rank=:ace, @suit=:spades>,
       - #<Card:0x007fb4dbc0a610 @rank=9, @suit=:clubs>]
       +["Ace of Spades", "9 of Clubs"]
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:191
     # /tmp/d20151112-27349-dpjnxa/spec.rb:44:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  13) BeloteDeck behaves like a deck #bottom peeks at the bottom-most card
     Failure/Error: expect(small_deck.to_a).to eq [ace_of_spades, nine_of_clubs]
       
       expected: [#<Card:0x007fb4dbc52078 @rank=:ace, @suit=:spades>, #<Card:0x007fb4dbc51fb0 @rank=9, @suit=:clubs>]
            got: ["Ace of Spades", "9 of Clubs"]
       
       (compared using ==)
       
       Diff:
       @@ -1,3 +1,2 @@
       -[#<Card:0x007fb4dbc52078 @rank=:ace, @suit=:spades>,
       - #<Card:0x007fb4dbc51fb0 @rank=9, @suit=:clubs>]
       +["Ace of Spades", "9 of Clubs"]
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:191
     # /tmp/d20151112-27349-dpjnxa/spec.rb:51:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  14) BeloteDeck behaves like a deck #shuffle does not remove cards from the deck
     Failure/Error: deck = deck_class.new
     NameError:
       undefined local variable or method `fill_deck' for #<BeloteDeck:0x007fb4dbc61730 @cards=[]>
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:191
     # /tmp/d20151112-27349-dpjnxa/solution.rb:59:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:57:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:57:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  15) BeloteDeck hand #deal deals 8 cards
     Failure/Error: hand = BeloteDeck.new.deal
     NameError:
       undefined local variable or method `fill_deck' for #<BeloteDeck:0x007fb4dbc7f3c0 @cards=[]>
     # /tmp/d20151112-27349-dpjnxa/solution.rb:59:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:213:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:213:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  16) BeloteDeck hand #highest_of_suit returns the strongest card of the specified suit
     Failure/Error: expect(hand.highest_of_suit(:clubs)).to eq Card.new(:ace, :clubs)
     NoMethodError:
       undefined method `highest_of_suit' for nil:NilClass
     # /tmp/d20151112-27349-dpjnxa/spec.rb:232:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  17) BeloteDeck hand #belote? returns true if there is a king and a queen of the same suit
     Failure/Error: expect(hand.belote?).to be true
     NoMethodError:
       undefined method `belote?' for nil:NilClass
     # /tmp/d20151112-27349-dpjnxa/spec.rb:251:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  18) BeloteDeck hand #belote? returns false when there is no king and queen of the same suit
     Failure/Error: expect(hand.belote?).to be false
     NoMethodError:
       undefined method `belote?' for nil:NilClass
     # /tmp/d20151112-27349-dpjnxa/spec.rb:266:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  19) BeloteDeck hand #tierce? with tierce returns true for cards with names
     Failure/Error: expect(hand.tierce?).to be true
     NoMethodError:
       undefined method `tierce?' for nil:NilClass
     # /tmp/d20151112-27349-dpjnxa/spec.rb:284:in `block (5 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  20) BeloteDeck hand #tierce? with tierce returns true for cards with numbers
     Failure/Error: expect(hand.tierce?).to be true
     NoMethodError:
       undefined method `tierce?' for nil:NilClass
     # /tmp/d20151112-27349-dpjnxa/spec.rb:299:in `block (5 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  21) BeloteDeck hand #tierce? without tierce does not confuse cards with different suits
     Failure/Error: expect(hand.tierce?).to be false
     NoMethodError:
       undefined method `tierce?' for nil:NilClass
     # /tmp/d20151112-27349-dpjnxa/spec.rb:316:in `block (5 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  22) BeloteDeck hand #quarte? detects four cards with increasing ranks
     Failure/Error: expect(hand.quarte?).to be true
     NoMethodError:
       undefined method `quarte?' for nil:NilClass
     # /tmp/d20151112-27349-dpjnxa/spec.rb:334:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  23) BeloteDeck hand #quarte? does not return true if there is no quarte
     Failure/Error: expect(hand.quarte?).to be false
     NoMethodError:
       undefined method `quarte?' for nil:NilClass
     # /tmp/d20151112-27349-dpjnxa/spec.rb:349:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  24) BeloteDeck hand #quint? detects five cards with increasing ranks
     Failure/Error: expect(hand.quint?).to be true
     NoMethodError:
       undefined method `quint?' for nil:NilClass
     # /tmp/d20151112-27349-dpjnxa/spec.rb:366:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  25) BeloteDeck hand #quint? does not return true if there is no quint
     Failure/Error: expect(hand.quint?).to be false
     NoMethodError:
       undefined method `quint?' for nil:NilClass
     # /tmp/d20151112-27349-dpjnxa/spec.rb:381:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  26) BeloteDeck hand #carre_of_jacks? behaves like carre-checking method returns true when there is a carre
     Failure/Error: expect(hand.public_send(method)).to be true
     NoMethodError:
       undefined method `carre_of_jacks?' for nil:NilClass
     Shared Example Group: "carre-checking method" called from /tmp/d20151112-27349-dpjnxa/spec.rb:386
     # /tmp/d20151112-27349-dpjnxa/spec.rb:86:in `public_send'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:86:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  27) BeloteDeck hand #carre_of_jacks? behaves like carre-checking method returns false when there is no carre
     Failure/Error: expect(hand.public_send(method)).to be false
     NoMethodError:
       undefined method `carre_of_jacks?' for nil:NilClass
     Shared Example Group: "carre-checking method" called from /tmp/d20151112-27349-dpjnxa/spec.rb:386
     # /tmp/d20151112-27349-dpjnxa/spec.rb:101:in `public_send'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:101:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  28) BeloteDeck hand #carre_of_nines? behaves like carre-checking method returns true when there is a carre
     Failure/Error: expect(hand.public_send(method)).to be true
     NoMethodError:
       undefined method `carre_of_nines?' for nil:NilClass
     Shared Example Group: "carre-checking method" called from /tmp/d20151112-27349-dpjnxa/spec.rb:390
     # /tmp/d20151112-27349-dpjnxa/spec.rb:86:in `public_send'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:86:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  29) BeloteDeck hand #carre_of_nines? behaves like carre-checking method returns false when there is no carre
     Failure/Error: expect(hand.public_send(method)).to be false
     NoMethodError:
       undefined method `carre_of_nines?' for nil:NilClass
     Shared Example Group: "carre-checking method" called from /tmp/d20151112-27349-dpjnxa/spec.rb:390
     # /tmp/d20151112-27349-dpjnxa/spec.rb:101:in `public_send'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:101:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  30) BeloteDeck hand #carre_of_aces? behaves like carre-checking method returns true when there is a carre
     Failure/Error: expect(hand.public_send(method)).to be true
     NoMethodError:
       undefined method `carre_of_aces?' for nil:NilClass
     Shared Example Group: "carre-checking method" called from /tmp/d20151112-27349-dpjnxa/spec.rb:394
     # /tmp/d20151112-27349-dpjnxa/spec.rb:86:in `public_send'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:86:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  31) BeloteDeck hand #carre_of_aces? behaves like carre-checking method returns false when there is no carre
     Failure/Error: expect(hand.public_send(method)).to be false
     NoMethodError:
       undefined method `carre_of_aces?' for nil:NilClass
     Shared Example Group: "carre-checking method" called from /tmp/d20151112-27349-dpjnxa/spec.rb:394
     # /tmp/d20151112-27349-dpjnxa/spec.rb:101:in `public_send'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:101:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  32) SixtySixDeck behaves like a deck implements Enumerable
     Failure/Error: expect(deck_class).to include(Enumerable)
       expected SixtySixDeck to include Enumerable
       Diff:
       @@ -1,2 +1,2 @@
       -[Enumerable]
       +SixtySixDeck
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:400
     # /tmp/d20151112-27349-dpjnxa/spec.rb:9:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  33) SixtySixDeck behaves like a deck fills the deck if no initialize parameters are given
     Failure/Error: expect(deck.to_a).to match_array all_available_cards
     NoMethodError:
       undefined method `to_a' for #<SixtySixDeck:0x007fb4dbdeb8d0>
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:400
     # /tmp/d20151112-27349-dpjnxa/spec.rb:18:in `block (2 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  34) SixtySixDeck behaves like a deck #size returns the size of the deck
     Failure/Error: let(:small_deck) { deck_class.new([ace_of_spades, nine_of_clubs]) }
     ArgumentError:
       wrong number of arguments (1 for 0)
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:400
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `block (2 levels) in <top (required)>'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:23:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  35) SixtySixDeck behaves like a deck #draw_top_card pops the top-most card
     Failure/Error: let(:small_deck) { deck_class.new([ace_of_spades, nine_of_clubs]) }
     ArgumentError:
       wrong number of arguments (1 for 0)
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:400
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `block (2 levels) in <top (required)>'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:29:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  36) SixtySixDeck behaves like a deck #draw_bottom_card pops the bottom-most card
     Failure/Error: let(:small_deck) { deck_class.new([ace_of_spades, nine_of_clubs]) }
     ArgumentError:
       wrong number of arguments (1 for 0)
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:400
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `block (2 levels) in <top (required)>'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:36:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  37) SixtySixDeck behaves like a deck #top peeks at the top-most card
     Failure/Error: let(:small_deck) { deck_class.new([ace_of_spades, nine_of_clubs]) }
     ArgumentError:
       wrong number of arguments (1 for 0)
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:400
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `block (2 levels) in <top (required)>'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:43:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  38) SixtySixDeck behaves like a deck #bottom peeks at the bottom-most card
     Failure/Error: let(:small_deck) { deck_class.new([ace_of_spades, nine_of_clubs]) }
     ArgumentError:
       wrong number of arguments (1 for 0)
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:400
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `block (2 levels) in <top (required)>'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:50:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  39) SixtySixDeck behaves like a deck #shuffle does not remove cards from the deck
     Failure/Error: initial_size = deck.size
     NoMethodError:
       undefined method `size' for #<SixtySixDeck:0x007fb4dbe23820>
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:400
     # /tmp/d20151112-27349-dpjnxa/spec.rb:59:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  40) SixtySixDeck behaves like a deck #to_s returns the names of the cards, each on its own line
     Failure/Error: let(:small_deck) { deck_class.new([ace_of_spades, nine_of_clubs]) }
     ArgumentError:
       wrong number of arguments (1 for 0)
     Shared Example Group: "a deck" called from /tmp/d20151112-27349-dpjnxa/spec.rb:400
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:6:in `block (2 levels) in <top (required)>'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:68:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  41) SixtySixDeck #sort sorts the cards in the defined order
     Failure/Error: deck = SixtySixDeck.new(cards)
     ArgumentError:
       wrong number of arguments (1 for 0)
     # /tmp/d20151112-27349-dpjnxa/spec.rb:413:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:413:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:413:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  42) SixtySixDeck hand #deal deals 6 cards
     Failure/Error: hand = SixtySixDeck.new.deal
     NoMethodError:
       undefined method `deal' for #<SixtySixDeck:0x007fb4dbe17548>
     # /tmp/d20151112-27349-dpjnxa/spec.rb:422:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  43) SixtySixDeck hand #twenty? returns true for king and queen not of the trump suit
     Failure/Error: hand = SixtySixDeck.new([
     ArgumentError:
       wrong number of arguments (1 for 0)
     # /tmp/d20151112-27349-dpjnxa/spec.rb:430:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:430:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:430:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  44) SixtySixDeck hand #twenty? returns false for king and queen of the trump suit
     Failure/Error: hand = SixtySixDeck.new([
     ArgumentError:
       wrong number of arguments (1 for 0)
     # /tmp/d20151112-27349-dpjnxa/spec.rb:443:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:443:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:443:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  45) SixtySixDeck hand #twenty? returns false for hands without a king and queen of the same suit
     Failure/Error: hand = SixtySixDeck.new([
     ArgumentError:
       wrong number of arguments (1 for 0)
     # /tmp/d20151112-27349-dpjnxa/spec.rb:456:in `initialize'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:456:in `new'
     # /tmp/d20151112-27349-dpjnxa/spec.rb:456:in `block (4 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

Finished in 0.17104 seconds
57 examples, 45 failures

Failed examples:

rspec /tmp/d20151112-27349-dpjnxa/spec.rb:8 # WarDeck behaves like a deck implements Enumerable
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:14 # WarDeck behaves like a deck fills the deck if no initialize parameters are given
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:28 # WarDeck behaves like a deck #draw_top_card pops the top-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:35 # WarDeck behaves like a deck #draw_bottom_card pops the bottom-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:42 # WarDeck behaves like a deck #top peeks at the top-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:49 # WarDeck behaves like a deck #bottom peeks at the bottom-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:175 # WarDeck hand #allow_face_up? returns true if the cards are less than or equal to 3
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:8 # BeloteDeck behaves like a deck implements Enumerable
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:14 # BeloteDeck behaves like a deck fills the deck if no initialize parameters are given
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:28 # BeloteDeck behaves like a deck #draw_top_card pops the top-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:35 # BeloteDeck behaves like a deck #draw_bottom_card pops the bottom-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:42 # BeloteDeck behaves like a deck #top peeks at the top-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:49 # BeloteDeck behaves like a deck #bottom peeks at the bottom-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:56 # BeloteDeck behaves like a deck #shuffle does not remove cards from the deck
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:212 # BeloteDeck hand #deal deals 8 cards
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:220 # BeloteDeck hand #highest_of_suit returns the strongest card of the specified suit
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:239 # BeloteDeck hand #belote? returns true if there is a king and a queen of the same suit
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:254 # BeloteDeck hand #belote? returns false when there is no king and queen of the same suit
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:272 # BeloteDeck hand #tierce? with tierce returns true for cards with names
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:287 # BeloteDeck hand #tierce? with tierce returns true for cards with numbers
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:304 # BeloteDeck hand #tierce? without tierce does not confuse cards with different suits
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:322 # BeloteDeck hand #quarte? detects four cards with increasing ranks
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:337 # BeloteDeck hand #quarte? does not return true if there is no quarte
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:354 # BeloteDeck hand #quint? detects five cards with increasing ranks
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:369 # BeloteDeck hand #quint? does not return true if there is no quint
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:74 # BeloteDeck hand #carre_of_jacks? behaves like carre-checking method returns true when there is a carre
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:89 # BeloteDeck hand #carre_of_jacks? behaves like carre-checking method returns false when there is no carre
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:74 # BeloteDeck hand #carre_of_nines? behaves like carre-checking method returns true when there is a carre
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:89 # BeloteDeck hand #carre_of_nines? behaves like carre-checking method returns false when there is no carre
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:74 # BeloteDeck hand #carre_of_aces? behaves like carre-checking method returns true when there is a carre
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:89 # BeloteDeck hand #carre_of_aces? behaves like carre-checking method returns false when there is no carre
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:8 # SixtySixDeck behaves like a deck implements Enumerable
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:14 # SixtySixDeck behaves like a deck fills the deck if no initialize parameters are given
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:22 # SixtySixDeck behaves like a deck #size returns the size of the deck
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:28 # SixtySixDeck behaves like a deck #draw_top_card pops the top-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:35 # SixtySixDeck behaves like a deck #draw_bottom_card pops the bottom-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:42 # SixtySixDeck behaves like a deck #top peeks at the top-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:49 # SixtySixDeck behaves like a deck #bottom peeks at the bottom-most card
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:56 # SixtySixDeck behaves like a deck #shuffle does not remove cards from the deck
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:67 # SixtySixDeck behaves like a deck #to_s returns the names of the cards, each on its own line
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:405 # SixtySixDeck #sort sorts the cards in the defined order
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:421 # SixtySixDeck hand #deal deals 6 cards
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:429 # SixtySixDeck hand #twenty? returns true for king and queen not of the trump suit
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:442 # SixtySixDeck hand #twenty? returns false for king and queen of the trump suit
rspec /tmp/d20151112-27349-dpjnxa/spec.rb:455 # SixtySixDeck hand #twenty? returns false for hands without a king and queen of the same suit
/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Comparable#== will no more rescue exceptions of #<=> in the next release.
/data/rails/evans-2015/shared/bundle/ruby/2.2.0/gems/rspec-expectations-2.99.2/lib/rspec/matchers/built_in/match_array.rb:42: warning: Return nil in #<=> if the comparison is inappropriate or avoid such comparison.

История (3 версии и 1 коментар)

Любомир обнови решението на 11.11.2015 00:54 (преди около 9 години)

+class Card
+ include Comparable
+ @@suits = { :clubs => 0, :diamonds => 1, :hearts => 2, :spades => 3 }
+ @@ranks = { :jack => 11, :queen => 12, :king => 13, :ace => 14 }
+
+
+ def rank_index(card)
+ case card
+ when Symbol
+ @@ranks[card]
+ else
+ card
+ end
+ end
+
+ def suit_index(card)
+ @@suits[card]
+ end
+
+ def initialize(rank, suit)
+ @rank = rank
+ @suit = suit
+ end
+
+ def <=>(other)
+ [rank_index(self.rank),
+ suit_index(self.suit)] <=> [rank_index(other.rank),
+ suit_index(other.suit)]
+ end
+
+ def rank
+ @rank
+ end
+
+ def suit
+ @suit
+ end
+
+ def to_s
+ case @rank
+ when Symbol
+ "#{@rank.id2name.capitalize} of #{@suit.id2name.capitalize}"
+ else
+ "#{@rank} of #{@suit.id2name.capitalize}"
+ end
+ end
+end
+
+class Deck
+ include Enumerable
+ @@suits = { :clubs => 0, :diamonds => 1, :hearts => 2, :spades => 3 }
+ @@ranks = { 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7,
+ 8 => 8, 9 => 9, 10 => 10,
+ :jack => 11, :queen => 12, :king => 13, :ace => 14}
+ @@reverse_ranks = @@ranks.invert
+ @@reverse_suits = @@suits.invert
+
+ def initialize(*cards_array)
+ @cards = Array.new(cards_array)
+ if ! cards_array.empty?
+ else
+ p "Vlizam vav variant2"
+ fill_deck
+ end
+ end
+
+ def fill_deck
+ (2..14).each do |rank|
+ (0..3).each do |suit|
+ @cards.push(Card.new(@@reverse_ranks[rank], @@reverse_suits[suit]))
+ end
+ end
+ end
+
+ def draw_top_card
+ @cards.shift
+ end
+
+ def draw_bottom_card
+ @cards.pop
+ end
+
+ def top_card
+ @cards.first
+ end
+
+ def bottom_card
+ @cards.last
+ end
+
+ def shuffle
+ @cards.shuffle!
+ end
+
+ def sort
+ @cards.sort!.reverse!
+ end
+
+ def each
+ @cards.each do |card|
+ yield card.to_s
+ end
+ end
+
+ def to_s
+ result = String.new()
+ @cards.each do |card|
+ result += card.to_s + "\n"
+ end
+ result.rstrip
+ end
+
+ def size
+ @cards.count
+ end
+
+ def deal
+ end
+end
+
+class WarDeckHand < Deck
+ def allow_face_up?
+ @cards.count <= 3
+ end
+end
+
+class WarDeck < Deck
+ def deal
+ WarDeckHand.new(@cards.pop(2).reverse)
+ end
+end
+
+class BeloteDeck
+end
+
+class SixtySixDeck
+end

Любомир обнови решението на 11.11.2015 00:59 (преди около 9 години)

class Card
include Comparable
@@suits = { :clubs => 0, :diamonds => 1, :hearts => 2, :spades => 3 }
@@ranks = { :jack => 11, :queen => 12, :king => 13, :ace => 14 }
def rank_index(card)
case card
when Symbol
@@ranks[card]
else
card
end
end
def suit_index(card)
@@suits[card]
end
def initialize(rank, suit)
@rank = rank
@suit = suit
end
def <=>(other)
[rank_index(self.rank),
suit_index(self.suit)] <=> [rank_index(other.rank),
suit_index(other.suit)]
end
def rank
@rank
end
def suit
@suit
end
def to_s
case @rank
when Symbol
"#{@rank.id2name.capitalize} of #{@suit.id2name.capitalize}"
else
"#{@rank} of #{@suit.id2name.capitalize}"
end
end
end
class Deck
include Enumerable
@@suits = { :clubs => 0, :diamonds => 1, :hearts => 2, :spades => 3 }
@@ranks = { 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7,
8 => 8, 9 => 9, 10 => 10,
:jack => 11, :queen => 12, :king => 13, :ace => 14}
@@reverse_ranks = @@ranks.invert
@@reverse_suits = @@suits.invert
def initialize(*cards_array)
@cards = Array.new(cards_array)
if ! cards_array.empty?
else
- p "Vlizam vav variant2"
fill_deck
end
end
def fill_deck
(2..14).each do |rank|
(0..3).each do |suit|
@cards.push(Card.new(@@reverse_ranks[rank], @@reverse_suits[suit]))
end
end
end
def draw_top_card
@cards.shift
end
def draw_bottom_card
@cards.pop
end
def top_card
@cards.first
end
def bottom_card
@cards.last
end
def shuffle
@cards.shuffle!
end
def sort
- @cards.sort!.reverse!
+ @cards.sort!
end
def each
@cards.each do |card|
yield card.to_s
end
end
def to_s
result = String.new()
@cards.each do |card|
result += card.to_s + "\n"
end
result.rstrip
end
def size
@cards.count
end
def deal
end
end
class WarDeckHand < Deck
def allow_face_up?
@cards.count <= 3
end
end
class WarDeck < Deck
def deal
WarDeckHand.new(@cards.pop(2).reverse)
end
end
class BeloteDeck
end
class SixtySixDeck
end

Любомир обнови решението на 11.11.2015 13:10 (преди около 9 години)

class Card
include Comparable
@@suits = { :clubs => 0, :diamonds => 1, :hearts => 2, :spades => 3 }
@@ranks = { :jack => 11, :queen => 12, :king => 13, :ace => 14 }
def rank_index(card)
case card
when Symbol
@@ranks[card]
else
card
end
end
def suit_index(card)
@@suits[card]
end
def initialize(rank, suit)
@rank = rank
@suit = suit
end
def <=>(other)
- [rank_index(self.rank),
- suit_index(self.suit)] <=> [rank_index(other.rank),
- suit_index(other.suit)]
+ [suit_index(self.suit),
+ rank_index(self.rank)] <=> [suit_index(other.suit),
+ rank_index(other.rank)]
end
def rank
@rank
end
def suit
@suit
end
def to_s
case @rank
when Symbol
"#{@rank.id2name.capitalize} of #{@suit.id2name.capitalize}"
else
"#{@rank} of #{@suit.id2name.capitalize}"
end
end
end
class Deck
include Enumerable
+
@@suits = { :clubs => 0, :diamonds => 1, :hearts => 2, :spades => 3 }
- @@ranks = { 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7,
- 8 => 8, 9 => 9, 10 => 10,
- :jack => 11, :queen => 12, :king => 13, :ace => 14}
- @@reverse_ranks = @@ranks.invert
- @@reverse_suits = @@suits.invert
def initialize(*cards_array)
- @cards = Array.new(cards_array)
if ! cards_array.empty?
+ @cards = cards_array.flatten
else
+ @cards = Array.new()
fill_deck
end
end
- def fill_deck
- (2..14).each do |rank|
- (0..3).each do |suit|
- @cards.push(Card.new(@@reverse_ranks[rank], @@reverse_suits[suit]))
- end
- end
- end
-
def draw_top_card
@cards.shift
end
def draw_bottom_card
@cards.pop
end
def top_card
@cards.first
end
def bottom_card
@cards.last
end
def shuffle
@cards.shuffle!
end
def sort
- @cards.sort!
+ @cards.sort!.reverse!
end
def each
@cards.each do |card|
yield card.to_s
end
end
def to_s
result = String.new()
@cards.each do |card|
result += card.to_s + "\n"
end
result.rstrip
end
def size
@cards.count
end
def deal
end
end
class WarDeckHand < Deck
def allow_face_up?
@cards.count <= 3
end
+
+ def play_card
+ @cards.last.pop!
+ end
end
class WarDeck < Deck
+ @@ranks = { 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7,
+ 8 => 8, 9 => 9, 10 => 10,
+ :jack => 11, :queen => 12, :king => 13, :ace => 14}
+ @@reverse_ranks = @@ranks.invert
+ @@reverse_suits = @@suits.invert
+
+ def fill_deck
+ (2..14).each do |rank|
+ (0..3).each do |suit|
+ @cards.push(Card.new(@@reverse_ranks[rank], @@reverse_suits[suit]))
+ end
+ end
+ end
+
def deal
- WarDeckHand.new(@cards.pop(2).reverse)
+ WarDeckHand.new(@cards.pop(26).reverse)
end
end
-class BeloteDeck
+class BeloteDeck < Deck
+ @@ranks = { 7 => 1, 8 => 2, 9 => 3,
+ :jack => 4, :queen => 5, :king => 6, 10 => 7, :ace => 8}
end
class SixtySixDeck
end