diff --git a/Gemfile b/Gemfile index 86c9283..caecea2 100644 --- a/Gemfile +++ b/Gemfile @@ -2,4 +2,5 @@ source "https://rubygems.org" # gem "rails" +gem "rake" gem "rspec" \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 46823cb..83c8f89 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,6 +2,7 @@ GEM remote: https://rubygems.org/ specs: diff-lcs (1.2.1) + rake (10.0.4) rspec (2.13.0) rspec-core (~> 2.13.0) rspec-expectations (~> 2.13.0) @@ -15,4 +16,5 @@ PLATFORMS ruby DEPENDENCIES + rake rspec diff --git a/spec/example/example_spec.rb b/spec/example/example_spec.rb index bdfe49b..33e3430 100644 --- a/spec/example/example_spec.rb +++ b/spec/example/example_spec.rb @@ -3,5 +3,6 @@ describe 'example' do describe 'example1' do it { true.should be_true } + it { false.should be_true } end end