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 +4 -4
- data/.rspec +2 -0
- data/Gemfile +2 -1
- data/Gemfile.lock +10 -0
- data/lib/test_rail_integration/cli.rb +1 -1
- data/lib/test_rail_integration/version.rb +1 -1
- data/spec/spec_helper.rb +9 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 34e5aab95105471b707cb4eb7118f50387709f8c
|
|
4
|
+
data.tar.gz: c3178b167f25a87c33a28576c9cb40f1a47cbc36
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eac5d9cb35222047cf84f31371ea2feade18ad9a8e0144f55af865418acc188e27a22ab3b75e1f384042c871d729a55f5c0bfd1020f1889bd4c84faf3ad4247a
|
|
7
|
+
data.tar.gz: 84458e08a4e1dfe8cc7284e737ee67c37143eeb6f3d6fde9bd6e89653da5c7f821b42e96aac3520562cb0d702314e2fafa0912cefa519d14196ed1488f0b4b3b
|
data/.rspec
ADDED
data/Gemfile
CHANGED
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
|
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
|