rspec-formatter-webkit 2.5.0 → 2.6.0
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
- checksums.yaml.gz.sig +4 -3
- data/History.rdoc +5 -0
- data/Rakefile +3 -3
- data/lib/rspec/core/formatters/webkit.rb +5 -5
- data.tar.gz.sig +0 -0
- metadata +17 -17
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86a1fd12c87ae8b06be208717d6b6e92d82606f2
|
4
|
+
data.tar.gz: 4d9cbe72a88090b67939ef3115bfd78b7fa92995
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b752c435a1b130eed81a91ea780111e8466c847d52b55f2cc030cc459b0b7bfe7f920429cb3cc5b11c023fe1ec9d41acefeb0e66f9fcd2602711ef994ca19fa6
|
7
|
+
data.tar.gz: 46358a839b07aefbc95a271fc27c2478977da354c89d123e5dad57d782a44c696117c63c1afd54ad0ebc23e83af294bc7e41bb4430ff1718a80a6b68478d03cc
|
checksums.yaml.gz.sig
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
<��,p"���y�:���:�X����Xe^<�c3@�9��6@X�N�0NmPj��
|
2
|
+
}�W��{�"��z������������C�?���z��gҀ��/�$�g��:�`��Ͳ?�m5���
|
3
|
+
W��Y
|
4
|
+
C�+�l�נ�@9��J�ۨ00�R�( �L��C���-Oa��3M�Y:R�����j�k�=��%�f^X�8�O�#��w��Q� p�§�
|
data/History.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -24,7 +24,7 @@ hoespec = Hoe.spec 'rspec-formatter-webkit' do
|
|
24
24
|
self.developer 'Michael Granger', 'ged@FaerieMUD.org'
|
25
25
|
self.license 'Ruby'
|
26
26
|
|
27
|
-
self.dependency 'rspec-core', '~> 3.
|
27
|
+
self.dependency 'rspec-core', '~> 3.4'
|
28
28
|
self.dependency 'hoe-bundler', '~> 1.2', :development
|
29
29
|
|
30
30
|
self.spec_extras[:post_install_message] = %{
|
@@ -38,7 +38,7 @@ hoespec = Hoe.spec 'rspec-formatter-webkit' do
|
|
38
38
|
|
39
39
|
}.gsub( /^\t+/m, '' )
|
40
40
|
|
41
|
-
self.require_ruby_version( '>=2.
|
41
|
+
self.require_ruby_version( '>=2.2.0' )
|
42
42
|
self.hg_sign_tags = true if self.respond_to?( :hg_sign_tags )
|
43
43
|
self.rdoc_locations << "deveiate:/usr/local/www/public/code/#{remote_rdoc_dir}"
|
44
44
|
end
|
@@ -46,7 +46,7 @@ end
|
|
46
46
|
ENV['VERSION'] ||= hoespec.spec.version.to_s
|
47
47
|
|
48
48
|
# Ensure history is updated before checking in
|
49
|
-
task 'hg:precheckin' => [ :check_history, :gemspec ]
|
49
|
+
task 'hg:precheckin' => [ :check_history, :check_manifest, :gemspec ]
|
50
50
|
|
51
51
|
task :legacy_gem do
|
52
52
|
Dir.chdir( 'legacy' ) do
|
@@ -5,11 +5,11 @@ require 'erb'
|
|
5
5
|
require 'pathname'
|
6
6
|
require 'set'
|
7
7
|
|
8
|
-
gem 'rspec', '
|
8
|
+
gem 'rspec', '~> 3.4.0'
|
9
9
|
|
10
10
|
require 'rspec'
|
11
11
|
require 'rspec/core/formatters/base_text_formatter'
|
12
|
-
require 'rspec/core/formatters/
|
12
|
+
require 'rspec/core/formatters/html_snippet_extractor'
|
13
13
|
require 'rspec/core/pending'
|
14
14
|
|
15
15
|
# Work around a bug in the null colorizer.
|
@@ -25,7 +25,7 @@ class RSpec::Core::Formatters::WebKit < RSpec::Core::Formatters::BaseFormatter
|
|
25
25
|
include ERB::Util
|
26
26
|
|
27
27
|
# Version constant
|
28
|
-
VERSION = '2.
|
28
|
+
VERSION = '2.6.0'
|
29
29
|
|
30
30
|
# Look up the datadir falling back to a relative path (mostly for prerelease testing)
|
31
31
|
DATADIR = begin
|
@@ -85,7 +85,7 @@ class RSpec::Core::Formatters::WebKit < RSpec::Core::Formatters::BaseFormatter
|
|
85
85
|
super
|
86
86
|
@previous_nesting_depth = 0
|
87
87
|
@failcounter = 0
|
88
|
-
@snippet_extractor = RSpec::Core::Formatters::
|
88
|
+
@snippet_extractor = RSpec::Core::Formatters::HtmlSnippetExtractor.new
|
89
89
|
@example_templates = {
|
90
90
|
:passed => self.load_template(PASSED_EXAMPLE_TEMPLATE),
|
91
91
|
:failed => self.load_template(FAILED_EXAMPLE_TEMPLATE),
|
@@ -295,7 +295,7 @@ class RSpec::Core::Formatters::WebKit < RSpec::Core::Formatters::BaseFormatter
|
|
295
295
|
def extra_failure_content( exception )
|
296
296
|
return '' unless exception
|
297
297
|
|
298
|
-
backtrace = exception.backtrace.map do |line|
|
298
|
+
backtrace = ( exception.backtrace || [] ).map do |line|
|
299
299
|
RSpec.configuration.backtrace_formatter.backtrace_line( line )
|
300
300
|
end.compact
|
301
301
|
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-formatter-webkit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -12,7 +12,7 @@ cert_chain:
|
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
13
|
MIIDbDCCAlSgAwIBAgIBATANBgkqhkiG9w0BAQUFADA+MQwwCgYDVQQDDANnZWQx
|
14
14
|
GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
|
15
|
-
|
15
|
+
HhcNMTUwNDAxMjEyNDEzWhcNMTYwMzMxMjEyNDEzWjA+MQwwCgYDVQQDDANnZWQx
|
16
16
|
GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
|
17
17
|
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDb92mkyYwuGBg1oRxt2tkH
|
18
18
|
+Uo3LAsaL/APBfSLzy8o3+B3AUHKCjMUaVeBoZdWtMHB75X3VQlvXfZMyBxj59Vo
|
@@ -23,14 +23,14 @@ cert_chain:
|
|
23
23
|
AgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBSZ0hCV
|
24
24
|
qoHr122fGKelqffzEQBhszAcBgNVHREEFTATgRFnZWRARmFlcmllTVVELm9yZzAc
|
25
25
|
BgNVHRIEFTATgRFnZWRARmFlcmllTVVELm9yZzANBgkqhkiG9w0BAQUFAAOCAQEA
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
26
|
+
lUKo3NXePpuvN3QGsOLJ6QhNd4+Q9Rz75GipuMrCl296V8QFkd2gg9EG44Pqtk+9
|
27
|
+
Zac8TkKc9bCSR0snakp+cCPplVvZF0/gMzkSTUJkDBHlNV16z73CyWpbQQa+iLJ4
|
28
|
+
uisI6gF2ZXK919MYLn2bFJfb7OsCvVfyTPqq8afPY+rq9vlf9ZPwU49AlD8bPRic
|
29
|
+
0LX0gO5ykvETIOv+WgGcqp96ceNi9XVuJMh20uWuw6pmv/Ub2RqAf82jQSbpz09G
|
30
|
+
G8LHR7EjtPPmqCCunfyecJ6MmCNaiJCBxq2NYzyNmluPyHT8+0fuB5kccUVZm6CD
|
31
|
+
xn3DzOkDE6NYbk8gC9rTsA==
|
32
32
|
-----END CERTIFICATE-----
|
33
|
-
date: 2015-
|
33
|
+
date: 2015-11-16 00:00:00.000000000 Z
|
34
34
|
dependencies:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: rspec-core
|
@@ -38,14 +38,14 @@ dependencies:
|
|
38
38
|
requirements:
|
39
39
|
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: '3.
|
41
|
+
version: '3.4'
|
42
42
|
type: :runtime
|
43
43
|
prerelease: false
|
44
44
|
version_requirements: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: '3.
|
48
|
+
version: '3.4'
|
49
49
|
- !ruby/object:Gem::Dependency
|
50
50
|
name: hoe-mercurial
|
51
51
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,14 +66,14 @@ dependencies:
|
|
66
66
|
requirements:
|
67
67
|
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '0.
|
69
|
+
version: '0.7'
|
70
70
|
type: :development
|
71
71
|
prerelease: false
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - "~>"
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version: '0.
|
76
|
+
version: '0.7'
|
77
77
|
- !ruby/object:Gem::Dependency
|
78
78
|
name: hoe-highline
|
79
79
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,14 +122,14 @@ dependencies:
|
|
122
122
|
requirements:
|
123
123
|
- - "~>"
|
124
124
|
- !ruby/object:Gem::Version
|
125
|
-
version: '3.
|
125
|
+
version: '3.14'
|
126
126
|
type: :development
|
127
127
|
prerelease: false
|
128
128
|
version_requirements: !ruby/object:Gem::Requirement
|
129
129
|
requirements:
|
130
130
|
- - "~>"
|
131
131
|
- !ruby/object:Gem::Version
|
132
|
-
version: '3.
|
132
|
+
version: '3.14'
|
133
133
|
description: |-
|
134
134
|
This is a formatter for RSpec 2 that takes advantage of features in
|
135
135
|
WebKit[http://webkit.org/] to make the output from RSpec in Textmate more
|
@@ -217,7 +217,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
217
217
|
requirements:
|
218
218
|
- - ">="
|
219
219
|
- !ruby/object:Gem::Version
|
220
|
-
version: 2.
|
220
|
+
version: 2.2.0
|
221
221
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
222
222
|
requirements:
|
223
223
|
- - ">="
|
@@ -225,7 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
225
225
|
version: '0'
|
226
226
|
requirements: []
|
227
227
|
rubyforge_project:
|
228
|
-
rubygems_version: 2.4.5
|
228
|
+
rubygems_version: 2.4.5.1
|
229
229
|
signing_key:
|
230
230
|
specification_version: 4
|
231
231
|
summary: This is a formatter for RSpec 2 that takes advantage of features in WebKit[http://webkit.org/]
|
metadata.gz.sig
CHANGED
Binary file
|