Skip to content

Commit

Permalink
Merge branch 'wip-master' into wip-solution
Browse files Browse the repository at this point in the history
  • Loading branch information
gj committed Sep 6, 2017
2 parents 7b3dc81 + a33ad02 commit 5f231ce
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
coverage/
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ gem 'rake'
gem 'rspec'
gem 'pry'
gem 'require_all'
gem 'simplecov'
10 changes: 9 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
GEM
remote: https://rubygems.org/
specs:
coderay (1.1.1)
coderay (1.1.2)
diff-lcs (1.3)
docile (1.1.5)
json (2.1.0)
method_source (0.8.2)
pry (0.10.4)
coderay (~> 1.1.0)
Expand All @@ -23,6 +25,11 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0)
rspec-support (3.6.0)
simplecov (0.15.0)
docile (~> 1.1.0)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
slop (3.6.0)

PLATFORMS
Expand All @@ -33,6 +40,7 @@ DEPENDENCIES
rake
require_all
rspec
simplecov

BUNDLED WITH
1.15.4
5 changes: 5 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
require 'simplecov'
SimpleCov.start do
add_filter "/spec"
end

RSpec.configure do |config|
config.order = :default
end
Expand Down

0 comments on commit 5f231ce

Please sign in to comment.