diff --git a/Gemfile b/Gemfile index ab4ea4c..f9235f8 100644 --- a/Gemfile +++ b/Gemfile @@ -20,4 +20,5 @@ end group :test do gem 'rspec' gem 'simplecov' + gem 'coveralls', require: false end \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 1022ed5..149cc27 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,6 +11,13 @@ GEM myrrha (~> 1.2.1) quickl (~> 0.4.1) coderay (1.0.8) + colorize (0.5.8) + coveralls (0.6.7) + colorize + multi_json (~> 1.3) + rest-client + simplecov (>= 0.7) + thor diff-lcs (1.1.3) gnuplot (2.3.6) hashr (0.0.22) @@ -18,6 +25,7 @@ GEM json (1.7.6) json (1.7.6-java) method_source (0.8.1) + mime-types (1.23) multi_json (1.5.0) myrrha (1.2.2) perftools.rb (2.0.0) @@ -33,6 +41,8 @@ GEM quickl (0.4.3) rake (10.0.2) redcarpet (2.2.2) + rest-client (1.6.7) + mime-types (>= 1.16) rspec (2.12.0) rspec-core (~> 2.12.0) rspec-expectations (~> 2.12.0) @@ -47,6 +57,7 @@ GEM simplecov-html (0.7.1) slop (3.3.3) spoon (0.0.1) + thor (0.18.1) travis-lint (1.7.0) hashr (~> 0.0.22) viiite (0.2.0) @@ -60,6 +71,7 @@ PLATFORMS ruby DEPENDENCIES + coveralls cql-rb! perftools.rb pry diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 1adaec0..8689acb 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -5,6 +5,9 @@ require 'bundler/setup' unless ENV['COVERAGE'] == 'no' + require 'coveralls' + Coveralls.wear! + require 'simplecov' SimpleCov.start do add_group 'Source', 'lib'