From e0cf47e02775d5ca8dbaf2a86a190d8fe443ef2b Mon Sep 17 00:00:00 2001 From: Petr Korolev Date: Fri, 27 Mar 2015 16:04:35 +0200 Subject: [PATCH] coveralls integration --- .coveralls.yml | 1 + Gemfile | 1 + Gemfile.lock | 30 ++++++++++++++++++++++++++++++ spec/spec_helper.rb | 2 ++ 4 files changed, 34 insertions(+) create mode 100644 .coveralls.yml diff --git a/.coveralls.yml b/.coveralls.yml new file mode 100644 index 0000000..9160059 --- /dev/null +++ b/.coveralls.yml @@ -0,0 +1 @@ +service_name: travis-ci diff --git a/Gemfile b/Gemfile index 2df9bd4..6476398 100644 --- a/Gemfile +++ b/Gemfile @@ -8,4 +8,5 @@ gem 'colorize' group :test do gem 'rspec' gem 'rubocop' + gem 'coveralls', require: false end diff --git a/Gemfile.lock b/Gemfile.lock index 4204cec..e031310 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -6,9 +6,18 @@ GEM astrolabe (1.3.0) parser (>= 2.2.0.pre.3, < 3.0) colorize (0.7.5) + coveralls (0.7.12) + multi_json (~> 1.10) + rest-client (>= 1.6.8, < 2) + simplecov (~> 0.9.1) + term-ansicolor (~> 1.3) + thor (~> 0.19.1) descendants_tracker (0.0.4) thread_safe (~> 0.3, >= 0.3.1) diff-lcs (1.2.5) + docile (1.1.5) + domain_name (0.5.23) + unf (>= 0.0.5, < 1.0.0) faraday (0.9.1) multipart-post (>= 1.2, < 3) github_api (0.12.3) @@ -20,11 +29,15 @@ GEM nokogiri (~> 1.6.3) oauth2 hashie (3.4.0) + http-cookie (1.0.2) + domain_name (~> 0.5) jwt (1.4.1) + mime-types (2.4.3) mini_portile (0.6.2) multi_json (1.11.0) multi_xml (0.5.5) multipart-post (2.0.0) + netrc (0.10.3) nokogiri (1.6.6.2) mini_portile (~> 0.6.0) oauth2 (1.0.0) @@ -39,6 +52,10 @@ GEM rack (1.6.0) rainbow (2.0.0) rake (10.4.2) + rest-client (1.8.0) + http-cookie (>= 1.0.2, < 2.0) + mime-types (>= 1.16, < 3.0) + netrc (~> 0.7) rspec (3.2.0) rspec-core (~> 3.2.0) rspec-expectations (~> 3.2.0) @@ -59,13 +76,26 @@ GEM rainbow (>= 1.99.1, < 3.0) ruby-progressbar (~> 1.4) ruby-progressbar (1.7.5) + simplecov (0.9.2) + docile (~> 1.1.0) + multi_json (~> 1.0) + simplecov-html (~> 0.9.0) + simplecov-html (0.9.0) + term-ansicolor (1.3.0) + tins (~> 1.0) + thor (0.19.1) thread_safe (0.3.5) + tins (1.3.5) + unf (0.1.4) + unf_ext + unf_ext (0.0.6) PLATFORMS ruby DEPENDENCIES colorize + coveralls github_api rake rspec diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index a46c911..a5ab0c9 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -15,6 +15,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # +require 'coveralls' +Coveralls.wear! require 'github_changelog_generator'