Skip to content
This repository has been archived by the owner on Jun 5, 2020. It is now read-only.

Commit

Permalink
Add coveralls gem and config
Browse files Browse the repository at this point in the history
  • Loading branch information
JPrevost committed Jul 10, 2014
1 parent 53b786f commit baef7aa
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
7 changes: 4 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ gem 'rails', '4.1.1'
gem 'nokogiri'
gem 'newrelic_rpm'
gem 'bootstrap-sass', '~> 3.1.1'
gem 'coveralls', require: false

group :development do
gem 'sqlite3'
Expand All @@ -20,8 +21,8 @@ end

group :test do
gem 'capybara'
gem "vcr"
gem "webmock"
gem 'vcr'
gem 'webmock'
end

# Gems used only for assets and not required
Expand All @@ -32,7 +33,7 @@ gem 'uglifier'
gem 'jquery-rails'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# gem 'bcrypt'

# To use Jbuilder templates for JSON
# gem 'jbuilder'
Expand Down
20 changes: 20 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,17 @@ GEM
rack-test (>= 0.5.4)
xpath (~> 2.0)
columnize (0.8.9)
coveralls (0.7.0)
multi_json (~> 1.3)
rest-client
simplecov (>= 0.7)
term-ansicolor
thor
crack (0.4.2)
safe_yaml (~> 1.0.0)
debugger-linecache (1.2.0)
diff-lcs (1.2.5)
docile (1.1.5)
erubis (2.7.0)
execjs (2.0.2)
hike (1.2.3)
Expand All @@ -71,6 +78,7 @@ GEM
mini_portile (0.6.0)
minitest (5.3.4)
multi_json (1.10.1)
netrc (0.7.7)
newrelic_rpm (3.8.1.221)
nokogiri (1.6.2.1)
mini_portile (= 0.6.0)
Expand Down Expand Up @@ -100,6 +108,9 @@ GEM
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (10.3.2)
rest-client (1.7.1)
mime-types (>= 1.16, < 3.0)
netrc (~> 0.7)
rspec-core (2.14.8)
rspec-expectations (2.14.5)
diff-lcs (>= 1.1.3, < 2.0)
Expand All @@ -114,6 +125,11 @@ GEM
rspec-mocks (~> 2.14.0)
safe_yaml (1.0.3)
sass (3.3.7)
simplecov (0.8.2)
docile (~> 1.1.0)
multi_json
simplecov-html (~> 0.8.0)
simplecov-html (0.8.0)
sprockets (2.12.1)
hike (~> 1.2)
multi_json (~> 1.0)
Expand All @@ -124,9 +140,12 @@ GEM
activesupport (>= 3.0)
sprockets (~> 2.8)
sqlite3 (1.3.9)
term-ansicolor (1.3.0)
tins (~> 1.0)
thor (0.19.1)
thread_safe (0.3.3)
tilt (1.4.1)
tins (1.3.0)
treetop (1.4.15)
polyglot
polyglot (>= 0.3.1)
Expand All @@ -149,6 +168,7 @@ DEPENDENCIES
bootstrap-sass (~> 3.1.1)
byebug
capybara
coveralls
jquery-rails
newrelic_rpm
nokogiri
Expand Down
3 changes: 2 additions & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
require File.expand_path("../../config/environment", __FILE__)
require 'rspec/rails'
require 'rspec/autorun'

require 'capybara'
require 'coveralls'
Coveralls.wear!

# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Expand Down

0 comments on commit baef7aa

Please sign in to comment.