rspec-formatter-webkit 2.2.1 → 2.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9155914385ca7c994b8642c646d11a6ef4b0cb2d
4
+ data.tar.gz: d7efe8a0785137f445c1830a50781a1f76992ff6
5
+ SHA512:
6
+ metadata.gz: 1ebc3b38c95c85777eb7cbd339063412a237755bcdf6b9d914736ae9d05dea8eb89f37340b72e8de37544475c086ec007b7ec212d236e44c3545eb61cb5c2fd1
7
+ data.tar.gz: 4356f157d4f461bbae5e4700ba1b02d944ca0c24000db9d14bf5edca01bee75203e5e4a908ceb6c3725c37195d8a701ebf84afc97649ffaa4d867313dd604450
checksums.yaml.gz.sig ADDED
Binary file
data/History.rdoc CHANGED
@@ -1,3 +1,10 @@
1
+ == v2.3.0 [2013-10-07] Michael Granger <ged@FaerieMUD.org>
2
+
3
+ Clean up the stylesheet (thanks to JasonM23)
4
+ - Monospace fonts consistency
5
+ - Updated textmate-rspec.css to use unicode in place of literals
6
+
7
+
1
8
  == v2.2.1 [2013-01-04] Michael Granger <ged@FaerieMUD.org>
2
9
 
3
10
  - Fix shared-group formatting for RSpec 2.12.2.
data/Rakefile CHANGED
@@ -10,6 +10,7 @@ require 'rake/clean'
10
10
 
11
11
  Hoe.plugin :mercurial
12
12
  Hoe.plugin :signing
13
+ Hoe.plugin :bundler
13
14
 
14
15
  Hoe.plugins.delete :rubyforge
15
16
 
@@ -19,10 +20,10 @@ hoespec = Hoe.spec 'rspec-formatter-webkit' do
19
20
  self.extra_rdoc_files = Rake::FileList[ '*.rdoc' ]
20
21
 
21
22
  self.developer 'Michael Granger', 'ged@FaerieMUD.org'
23
+ self.license 'Ruby'
22
24
 
23
- self.dependency 'rspec-core', '~> 2.12'
25
+ self.dependency 'hoe-bundler', '~> 1.2', :development
24
26
 
25
- self.spec_extras[:licenses] = ["BSD"]
26
27
  self.spec_extras[:post_install_message] = %{
27
28
 
28
29
  You can use this formatter from TextMate by setting the TM_RSPEC_OPTS
@@ -34,7 +35,7 @@ hoespec = Hoe.spec 'rspec-formatter-webkit' do
34
35
 
35
36
  }.gsub( /^\t+/m, '' )
36
37
 
37
- self.require_ruby_version( '>=1.8.7' )
38
+ self.require_ruby_version( '>=1.9.3' )
38
39
  self.hg_sign_tags = true if self.respond_to?( :hg_sign_tags )
39
40
  self.rdoc_locations << "deveiate:/usr/local/www/public/code/#{remote_rdoc_dir}"
40
41
  end
@@ -42,7 +43,7 @@ end
42
43
  ENV['VERSION'] ||= hoespec.spec.version.to_s
43
44
 
44
45
  # Ensure history is updated before checking in
45
- task 'hg:precheckin' => [ :check_history ]
46
+ task 'hg:precheckin' => [ :check_history, 'Gemfile' ]
46
47
 
47
48
  task :legacy_gem do
48
49
  Dir.chdir( 'legacy' ) do
@@ -52,3 +53,7 @@ end
52
53
  CLEAN.include( 'legacy/pkg' )
53
54
 
54
55
 
56
+ file 'Gemfile'
57
+ task 'Gemfile' => ['bundler:gemfile']
58
+
59
+
@@ -16,7 +16,7 @@ body {
16
16
  }
17
17
 
18
18
  pre, code {
19
- font: 0.8em Menlo, Monaco, mono;
19
+ font: 0.8em Menlo, Monaco, monospace;
20
20
  }
21
21
 
22
22
  #rspec-header {
@@ -189,7 +189,7 @@ dd.nested-group dl dt {
189
189
  font-size: 14px;
190
190
  }
191
191
  dd.nested-group dl dt:before {
192
- content: "";
192
+ content: "\2026";
193
193
  }
194
194
  dd.nested-group section.example-group {
195
195
  margin: 0;
@@ -274,7 +274,7 @@ div.log-messages {
274
274
  margin: 0;
275
275
  padding: 0;
276
276
  background-color: #999;
277
- font: 0.8em "Vera Sans Mono", "Andale Mono", Monaco, mono;
277
+ font: 0.8em Menlo, Monaco, monospace;
278
278
  }
279
279
  div.log-message {
280
280
  background: #eee;
@@ -300,12 +300,12 @@ div.log-message .log-name {
300
300
  font-size: 1.2em;
301
301
  color: #1e51b2;
302
302
  }
303
- div.log-message .log-name:before { content: "«"; }
304
- div.log-message .log-name:after { content: "»"; }
303
+ div.log-message .log-name:before { content: "\00AB"; }
304
+ div.log-message .log-name:after { content: "\00BB"; }
305
305
 
306
306
  div.log-message .log-message-text {
307
307
  padding-left: 4px;
308
- font-family: Monaco, "Andale Mono", "Vera Sans Mono", mono;
308
+ font-family: Menlo, Monaco, monospace;
309
309
  }
310
310
 
311
311
 
@@ -14,7 +14,7 @@ class RSpec::Core::Formatters::WebKit < RSpec::Core::Formatters::BaseTextFormatt
14
14
  include ERB::Util
15
15
 
16
16
  # Version constant
17
- VERSION = '2.2.1'
17
+ VERSION = '2.3.0'
18
18
 
19
19
  # Look up the datadir falling back to a relative path (mostly for prerelease testing)
20
20
  DATADIR = begin
@@ -90,7 +90,7 @@ class RSpec::Core::Formatters::WebKit < RSpec::Core::Formatters::BaseTextFormatt
90
90
  super
91
91
  nesting_depth = example_group.ancestors.length
92
92
 
93
- # Close the previous example groups if this one isn't a
93
+ # Close the previous example groups if this one isn't a
94
94
  # descendent of the previous one
95
95
  if @previous_nesting_depth.nonzero? && @previous_nesting_depth >= nesting_depth
96
96
  ( @previous_nesting_depth - nesting_depth + 1 ).times do
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,138 +1,110 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: rspec-formatter-webkit
3
- version: !ruby/object:Gem::Version
4
- hash: 5
5
- prerelease:
6
- segments:
7
- - 2
8
- - 2
9
- - 1
10
- version: 2.2.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.3.0
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - Michael Granger
14
8
  autorequire:
15
9
  bindir: bin
16
- cert_chain:
10
+ cert_chain:
17
11
  - |
18
12
  -----BEGIN CERTIFICATE-----
19
- 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
- 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
- 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
- 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
- DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALy//BFxC1f/cPSnwtJBWoFiFrir
24
- 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
- vDn7Uvhb2muFVqq6+vobeTkILBEO6pionWDG8jSbo3qKm1RjKJDwg9p4wNKhPuu8
26
- KGue/BFb67KflqyApPmPeb3Vdd9clspzqeFqp7cUBMEpFS6LWxy4Gk+qvFFJBJLB
27
- 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
- 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
- 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
- +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
- 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
- HIa9EgfFGSUEgvcIvaYqiN4jTUtidfEFw+Ltjs8AP9gWgSIYS6Gr38V0WGFFNzIH
33
- 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
- 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
- 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
31
+ /YSusaiDXHKU2O3Akc3htA==
36
32
  -----END CERTIFICATE-----
37
-
38
- date: 2013-01-04 00:00:00 Z
39
- dependencies:
40
- - !ruby/object:Gem::Dependency
41
- name: rspec-core
42
- prerelease: false
43
- requirement: &id001 !ruby/object:Gem::Requirement
44
- none: false
45
- requirements:
46
- - - ~>
47
- - !ruby/object:Gem::Version
48
- hash: 27
49
- segments:
50
- - 2
51
- - 12
52
- version: "2.12"
53
- type: :runtime
54
- version_requirements: *id001
55
- - !ruby/object:Gem::Dependency
33
+ date: 2013-10-07 00:00:00.000000000 Z
34
+ dependencies:
35
+ - !ruby/object:Gem::Dependency
56
36
  name: hoe-mercurial
57
- prerelease: false
58
- requirement: &id002 !ruby/object:Gem::Requirement
59
- none: false
60
- requirements:
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
61
39
  - - ~>
62
- - !ruby/object:Gem::Version
63
- hash: 7
64
- segments:
65
- - 1
66
- - 4
67
- - 0
40
+ - !ruby/object:Gem::Version
68
41
  version: 1.4.0
69
42
  type: :development
70
- version_requirements: *id002
71
- - !ruby/object:Gem::Dependency
72
- name: hoe-highline
73
43
  prerelease: false
74
- requirement: &id003 !ruby/object:Gem::Requirement
75
- none: false
76
- requirements:
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
77
46
  - - ~>
78
- - !ruby/object:Gem::Version
79
- hash: 29
80
- segments:
81
- - 0
82
- - 0
83
- - 1
84
- version: 0.0.1
85
- type: :development
86
- version_requirements: *id003
87
- - !ruby/object:Gem::Dependency
47
+ - !ruby/object:Gem::Version
48
+ version: 1.4.0
49
+ - !ruby/object:Gem::Dependency
88
50
  name: rdoc
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ~>
54
+ - !ruby/object:Gem::Version
55
+ version: '4.0'
56
+ type: :development
89
57
  prerelease: false
90
- requirement: &id004 !ruby/object:Gem::Requirement
91
- none: false
92
- requirements:
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
93
60
  - - ~>
94
- - !ruby/object:Gem::Version
95
- hash: 19
96
- segments:
97
- - 3
98
- - 10
99
- version: "3.10"
61
+ - !ruby/object:Gem::Version
62
+ version: '4.0'
63
+ - !ruby/object:Gem::Dependency
64
+ name: hoe-bundler
65
+ requirement: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: '1.2'
100
70
  type: :development
101
- version_requirements: *id004
102
- - !ruby/object:Gem::Dependency
103
- name: hoe
104
71
  prerelease: false
105
- requirement: &id005 !ruby/object:Gem::Requirement
106
- none: false
107
- requirements:
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ requirements:
108
74
  - - ~>
109
- - !ruby/object:Gem::Version
110
- hash: 7
111
- segments:
112
- - 3
113
- - 0
114
- version: "3.0"
75
+ - !ruby/object:Gem::Version
76
+ version: '1.2'
77
+ - !ruby/object:Gem::Dependency
78
+ name: hoe
79
+ requirement: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ~>
82
+ - !ruby/object:Gem::Version
83
+ version: '3.7'
115
84
  type: :development
116
- version_requirements: *id005
85
+ prerelease: false
86
+ version_requirements: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ~>
89
+ - !ruby/object:Gem::Version
90
+ version: '3.7'
117
91
  description: |-
118
92
  This is a formatter for RSpec 2 that takes advantage of features in
119
93
  WebKit[http://webkit.org/] to make the output from RSpec in Textmate more
120
94
  fun.
121
-
95
+
122
96
  Test output looks like this:
123
-
97
+
124
98
  http://deveiate.org/images/tmrspec-example.png
125
- email:
99
+ email:
126
100
  - ged@FaerieMUD.org
127
101
  executables: []
128
-
129
102
  extensions: []
130
-
131
- extra_rdoc_files:
103
+ extra_rdoc_files:
132
104
  - History.rdoc
133
105
  - Manifest.txt
134
106
  - README.rdoc
135
- files:
107
+ files:
136
108
  - ChangeLog
137
109
  - History.rdoc
138
110
  - LICENSE
@@ -183,49 +155,32 @@ files:
183
155
  - lib/rspec/core/formatters/web_kit.rb
184
156
  - lib/rspec/core/formatters/webkit.rb
185
157
  homepage: http://deveiate.org/webkit-rspec-formatter.html
186
- licenses:
187
- - BSD
188
- post_install_message: |+
189
-
190
-
191
- You can use this formatter from TextMate by setting the TM_RSPEC_OPTS
192
- shell variable (in the 'Advanced' preference pane) to:
193
-
194
- --format RSpec::Core::Formatters::WebKit
195
-
196
- Have fun!
197
-
198
- rdoc_options:
158
+ licenses:
159
+ - Ruby
160
+ metadata: {}
161
+ post_install_message: "\n\nYou can use this formatter from TextMate by setting the
162
+ TM_RSPEC_OPTS \nshell variable (in the 'Advanced' preference pane) to:\n\n --format
163
+ RSpec::Core::Formatters::WebKit\n\nHave fun!\n\n"
164
+ rdoc_options:
199
165
  - --main
200
166
  - README.rdoc
201
- require_paths:
167
+ require_paths:
202
168
  - lib
203
- required_ruby_version: !ruby/object:Gem::Requirement
204
- none: false
205
- requirements:
206
- - - ">="
207
- - !ruby/object:Gem::Version
208
- hash: 57
209
- segments:
210
- - 1
211
- - 8
212
- - 7
213
- version: 1.8.7
214
- required_rubygems_version: !ruby/object:Gem::Requirement
215
- none: false
216
- requirements:
217
- - - ">="
218
- - !ruby/object:Gem::Version
219
- hash: 3
220
- segments:
221
- - 0
222
- version: "0"
169
+ required_ruby_version: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - '>='
172
+ - !ruby/object:Gem::Version
173
+ version: 1.9.3
174
+ required_rubygems_version: !ruby/object:Gem::Requirement
175
+ requirements:
176
+ - - '>='
177
+ - !ruby/object:Gem::Version
178
+ version: '0'
223
179
  requirements: []
224
-
225
180
  rubyforge_project: rspec-formatter-webkit
226
- rubygems_version: 1.8.24
181
+ rubygems_version: 2.0.6
227
182
  signing_key:
228
- specification_version: 3
229
- summary: This is a formatter for RSpec 2 that takes advantage of features in WebKit[http://webkit.org/] to make the output from RSpec in Textmate more fun
183
+ specification_version: 4
184
+ summary: This is a formatter for RSpec 2 that takes advantage of features in WebKit[http://webkit.org/]
185
+ to make the output from RSpec in Textmate more fun
230
186
  test_files: []
231
-
metadata.gz.sig CHANGED
Binary file