From ab6e0b0eb5ef31488dbd82a749fba50610b98167 Mon Sep 17 00:00:00 2001 From: Colin Surprenant Date: Thu, 25 Jul 2013 15:20:23 -0400 Subject: [PATCH] added coveralls --- Gemfile | 2 ++ Gemfile.lock | 17 +++++++++++++++++ spec/spec_helper.rb | 2 ++ 3 files changed, 21 insertions(+) diff --git a/Gemfile b/Gemfile index 503e3e5..ff2d597 100644 --- a/Gemfile +++ b/Gemfile @@ -2,6 +2,8 @@ source "https://rubygems.org" gemspec +gem 'coveralls', require: false + group :topology do gem "redis" end \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 6f40c1a..dfedd3c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -7,9 +7,20 @@ PATH GEM remote: https://rubygems.org/ specs: + colorize (0.5.8) + coveralls (0.6.7) + colorize + multi_json (~> 1.3) + rest-client + simplecov (>= 0.7) + thor diff-lcs (1.2.4) + mime-types (1.23) + multi_json (1.7.7) rake (10.0.4) redis (3.0.4) + rest-client (1.6.7) + mime-types (>= 1.16) rspec (2.13.0) rspec-core (~> 2.13.0) rspec-expectations (~> 2.13.0) @@ -18,11 +29,17 @@ GEM rspec-expectations (2.13.0) diff-lcs (>= 1.1.3, < 2.0) rspec-mocks (2.13.1) + simplecov (0.7.1) + multi_json (~> 1.0) + simplecov-html (~> 0.7.1) + simplecov-html (0.7.1) + thor (0.18.1) PLATFORMS java DEPENDENCIES + coveralls redis redstorm! rspec (~> 2.13) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index bd121ad..7b15b46 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -2,6 +2,8 @@ $:.unshift File.dirname(__FILE__) + '/../lib/' $:.unshift File.dirname(__FILE__) + '/../spec' require 'rspec' +require 'coveralls' +Coveralls.wear! # load Storm jars storm_jars = File.dirname(__FILE__) + '/../target/dependency/storm/default/*.jar'