From: Hleb Valoshka <375gnu@gmail.com>
Date: Wed, 29 Jul 2015 12:00:16 +0300
Subject: Update to RSpec3 syntax

---
 spec/buff/ruby_engine_spec.rb | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/spec/buff/ruby_engine_spec.rb b/spec/buff/ruby_engine_spec.rb
index 1eba640..01f710a 100644
--- a/spec/buff/ruby_engine_spec.rb
+++ b/spec/buff/ruby_engine_spec.rb
@@ -7,13 +7,13 @@ describe Buff::RubyEngine do
     context "when the ruby engine is jruby" do
       before { stub_const("RUBY_ENGINE", "jruby") }
 
-      it { expect(subject).to be_true }
+      it { expect(subject).to be_truthy }
     end
 
     context "when the ruby engine is not jruby" do
       before { stub_const("RUBY_ENGINE", "ruby") }
 
-      it { expect(subject).to be_false }
+      it { expect(subject).to be_falsey }
     end
   end
 
@@ -23,13 +23,13 @@ describe Buff::RubyEngine do
     context "when the ruby engine is mri" do
       before { stub_const("RUBY_ENGINE", "ruby") }
 
-      it { expect(subject).to be_true }
+      it { expect(subject).to be_truthy }
     end
 
     context "when the ruby engine is not mri" do
       before { stub_const("RUBY_ENGINE", "jruby") }
 
-      it { expect(subject).to be_false }
+      it { expect(subject).to be_falsey }
     end
   end
 
@@ -39,13 +39,13 @@ describe Buff::RubyEngine do
     context "when the ruby engine is rubinius" do
       before { stub_const("RUBY_ENGINE", "rbx") }
 
-      it { expect(subject).to be_true }
+      it { expect(subject).to be_truthy }
     end
 
     context "when the ruby engine is not rubinius" do
       before { stub_const("RUBY_ENGINE", "mri") }
 
-      it { expect(subject).to be_false }
+      it { expect(subject).to be_falsey }
     end
   end
 end
