test_rail_integration 0.0.8 → 0.0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 13341bbacfa47b3faa6fc70d351428b9147107d8
4
- data.tar.gz: 7b0ab5e7c9b5b069bb7fe287f47b415593b42528
3
+ metadata.gz: 34e5aab95105471b707cb4eb7118f50387709f8c
4
+ data.tar.gz: c3178b167f25a87c33a28576c9cb40f1a47cbc36
5
5
  SHA512:
6
- metadata.gz: 83e20371b6c3cbba3a4ee7bf88ef3d086477b5c284ddb0e704fb0f393e4f13f2acbb86bf67620a39545ebfe72c87773cd28e558166d40f6aa8d387e55ba79de5
7
- data.tar.gz: c8ba5f06e1d6623b78794996cc95ed2881f8aa4e0bd9e6882345f1c3735d61dc2113cab92b6f72899c5fb94ea2e97d59c70f5e43a784d56b8d1606401c75ce6f
6
+ metadata.gz: eac5d9cb35222047cf84f31371ea2feade18ad9a8e0144f55af865418acc188e27a22ab3b75e1f384042c871d729a55f5c0bfd1020f1889bd4c84faf3ad4247a
7
+ data.tar.gz: 84458e08a4e1dfe8cc7284e737ee67c37143eeb6f3d6fde9bd6e89653da5c7f821b42e96aac3520562cb0d702314e2fafa0912cefa519d14196ed1488f0b4b3b
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/Gemfile CHANGED
@@ -2,4 +2,5 @@ source 'https://rubygems.org'
2
2
 
3
3
  gem 'thor'
4
4
  gem 'fileutils'
5
- gem 'rspec'
5
+ gem 'rspec'
6
+ gem 'simplecov-teamcity-summary'
data/Gemfile.lock CHANGED
@@ -2,8 +2,10 @@ GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
4
  diff-lcs (1.2.5)
5
+ docile (1.1.5)
5
6
  fileutils (0.7)
6
7
  rmagick (>= 2.13.1)
8
+ multi_json (1.11.0)
7
9
  rmagick (2.13.4)
8
10
  rspec (3.2.0)
9
11
  rspec-core (~> 3.2.0)
@@ -18,6 +20,13 @@ GEM
18
20
  diff-lcs (>= 1.2.0, < 2.0)
19
21
  rspec-support (~> 3.2.0)
20
22
  rspec-support (3.2.2)
23
+ simplecov (0.9.2)
24
+ docile (~> 1.1.0)
25
+ multi_json (~> 1.0)
26
+ simplecov-html (~> 0.9.0)
27
+ simplecov-html (0.9.0)
28
+ simplecov-teamcity-summary (0.1.1)
29
+ simplecov
21
30
  thor (0.19.1)
22
31
 
23
32
  PLATFORMS
@@ -26,4 +35,5 @@ PLATFORMS
26
35
  DEPENDENCIES
27
36
  fileutils
28
37
  rspec
38
+ simplecov-teamcity-summary
29
39
  thor
@@ -1,6 +1,6 @@
1
1
  require 'thor'
2
2
  require_relative 'generator/project'
3
- require_relative 'generator/project/check_test_run'
3
+ require_relative 'generator/project/check'
4
4
 
5
5
  class CLI < Thor
6
6
  include TestRail
@@ -1,3 +1,3 @@
1
1
  module TestRailIntegration
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.8.1"
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,12 @@
1
+ require 'simplecov'
2
+ require 'simplecov-teamcity-summary/formatter'
3
+
4
+ SimpleCov.start do
5
+ at_exit do
6
+ SimpleCov::Formatter::TeamcitySummaryFormatter.new.format(SimpleCov.result) if ENV['TEAMCITY_VERSION']
7
+ end
8
+ end
9
+
1
10
  # This file was generated by the `rspec --init` command. Conventionally, all
2
11
  # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
12
  # The generated `.rspec` file contains `--require spec_helper` which will cause
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test_rail_integration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kirikami
@@ -75,6 +75,7 @@ extensions: []
75
75
  extra_rdoc_files: []
76
76
  files:
77
77
  - ".gitignore"
78
+ - ".rspec"
78
79
  - Gemfile
79
80
  - Gemfile.lock
80
81
  - LICENSE.txt