Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
GEM
remote: http://rubygems.org/
specs:
coderay (1.1.0)
diff-lcs (1.2.5)
method_source (0.8.2)
pry (0.10.1)
coderay (~> 1.1.0)
method_source (~> 0.8.1)
slop (~> 3.4)
rspec (3.1.0)
rspec-core (~> 3.1.0)
rspec-expectations (~> 3.1.0)
Expand All @@ -20,11 +14,12 @@ GEM
rspec-mocks (3.1.3)
rspec-support (~> 3.1.0)
rspec-support (3.1.2)
slop (3.6.0)

PLATFORMS
ruby

DEPENDENCIES
pry
rspec

BUNDLED WITH
1.17.2
4 changes: 2 additions & 2 deletions spec/refresher_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
context "guess the collection" do

it "Yes, it is a Object, but which class" do
expect([].is_a? _fill_in_object_).to be true
expect(Array.new.instance_of? _FILL_ME_IN_).to be true
expect([].is_a? Array).to be true
expect(Array.new.instance_of? Array).to be true
end

it "Yes, it is a Object, but which class" do
Expand Down