growl-rspec 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/growl/rspec/formatter.rb +66 -62
- data/lib/growl/rspec/version.rb +1 -1
- metadata +21 -17
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7f053dd287da80cc527d2938c1a90df15106e21a
|
4
|
+
data.tar.gz: 016a6560828c551bc75acb777de05469d5d07061
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 964e88e0eb8281db877796f6378aa8805c5800162bf80e7ec5cddca6c1126abe5ffe653aa212aeaaf063d334184f85ed5035b10b3663e74eefe48c841f2eaf37
|
7
|
+
data.tar.gz: 6ed8cd71fad31b17a4c73c85391467168161bd957bbfddb9d7e6e2ba9fb4c6b0f180daaf2447391c41cc1add41d24a70d619af4ba459718d4309c9fea3bd9096
|
@@ -1,77 +1,81 @@
|
|
1
1
|
require 'rspec/core/formatters/base_text_formatter'
|
2
2
|
|
3
|
-
module Growl
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
3
|
+
module Growl
|
4
|
+
module RSpec
|
5
|
+
# The Growl::RSpec::Formatter depens on the growl gem
|
6
|
+
# (and therefore, growlnotify bin must be installed)
|
7
|
+
#
|
8
|
+
# Use it by putting this in your spec_helper.rb
|
9
|
+
# RSpec.configure do |config|
|
10
|
+
# config.formatter = 'Growl::RSpec::Formatter'
|
11
|
+
# end
|
12
|
+
#
|
13
|
+
# You can switch off granular growls about each spec failure via:
|
14
|
+
# Growl::RSpec::Formatter.config = {
|
15
|
+
# :growl_failures => false
|
16
|
+
# }
|
17
|
+
#
|
18
|
+
# You can configure additional growlnotify options like:
|
19
|
+
# Growl::RSpec::Formatter.growlnotify_config = {
|
20
|
+
# :host => 'your.growl.host'
|
21
|
+
# }
|
22
|
+
#
|
23
|
+
class Formatter < ::RSpec::Core::Formatters::BaseTextFormatter
|
23
24
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
25
|
+
# the formatters default config hash
|
26
|
+
DEFAULT_CONFIG = {
|
27
|
+
:growl_failures => true
|
28
|
+
}.freeze
|
28
29
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
30
|
+
# read the formatters config hash
|
31
|
+
def self.config
|
32
|
+
@@config ||= DEFAULT_CONFIG
|
33
|
+
end
|
33
34
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
35
|
+
# set the formatters config hash
|
36
|
+
def self.config=(c)
|
37
|
+
@@config = DEFAULT_CONFIG.dup.merge(c)
|
38
|
+
end
|
38
39
|
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
40
|
+
# set the config hash that is passed to growlnotify gem
|
41
|
+
def self.growlnotify_config=(o)
|
42
|
+
@@_growlnotify_config = o
|
43
|
+
end
|
43
44
|
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
45
|
+
# get the config hash that is passed to growlnotify gem
|
46
|
+
def self.growlnotify_config
|
47
|
+
@@_growlnotify_config ||= {}
|
48
|
+
end
|
48
49
|
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
if self.class.config[:growl_failures]
|
50
|
+
# hook when spec failed
|
51
|
+
def dump_failures
|
52
|
+
return if failed_examples.empty?
|
53
|
+
if self.class.config[:growl_failures]
|
54
54
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
55
|
+
msg = failed_examples.each_with_index.map do |example, idx|
|
56
|
+
["#{idx+1}. it #{example.description}",
|
57
|
+
example.metadata[:execution_result][:exception]]
|
58
|
+
end.flatten.join("\n\n")
|
59
59
|
|
60
|
-
|
61
|
-
|
62
|
-
|
60
|
+
::Growl.notify_warning msg, {
|
61
|
+
:title => "#{failed_examples.size} specs failed"
|
62
|
+
}.merge(self.class.growlnotify_config)
|
63
|
+
end
|
63
64
|
end
|
64
|
-
end
|
65
65
|
|
66
|
-
|
67
|
-
|
68
|
-
|
66
|
+
# hook when all specs ran
|
67
|
+
def dump_summary(duration, example_count, failure_count, pending_count)
|
68
|
+
msg = "#{example_count} specs in total (#{pending_count} pending). "\
|
69
|
+
"Consumed #{duration.round(1)}s"
|
69
70
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
71
|
+
title = if failure_count == 0
|
72
|
+
"All specs passed."
|
73
|
+
else
|
74
|
+
"#{failure_count} specs failed!"
|
75
|
+
end
|
76
|
+
|
77
|
+
::Growl.notify_info msg, { :title => title }.merge(self.class.growlnotify_config)
|
78
|
+
end
|
75
79
|
end
|
76
80
|
end
|
77
|
-
end
|
81
|
+
end
|
data/lib/growl/rspec/version.rb
CHANGED
metadata
CHANGED
@@ -1,38 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: growl-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.2
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- dpree
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-07-09 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rspec
|
16
|
-
requirement:
|
17
|
-
none: false
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
|
-
version_requirements:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
25
27
|
- !ruby/object:Gem::Dependency
|
26
28
|
name: growl
|
27
|
-
requirement:
|
28
|
-
none: false
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
29
30
|
requirements:
|
30
|
-
- -
|
31
|
+
- - '>='
|
31
32
|
- !ruby/object:Gem::Version
|
32
33
|
version: '0'
|
33
34
|
type: :runtime
|
34
35
|
prerelease: false
|
35
|
-
version_requirements:
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
36
41
|
description: Provides a new RSpec formatter that uses growlnotify
|
37
42
|
email:
|
38
43
|
- whiterabbit.init@gmail.com
|
@@ -52,26 +57,25 @@ files:
|
|
52
57
|
- lib/growl/rspec/version.rb
|
53
58
|
homepage: https://github.com/dpree/growl-rspec
|
54
59
|
licenses: []
|
60
|
+
metadata: {}
|
55
61
|
post_install_message:
|
56
62
|
rdoc_options: []
|
57
63
|
require_paths:
|
58
64
|
- lib
|
59
65
|
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
-
none: false
|
61
66
|
requirements:
|
62
|
-
- -
|
67
|
+
- - '>='
|
63
68
|
- !ruby/object:Gem::Version
|
64
69
|
version: '0'
|
65
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
-
none: false
|
67
71
|
requirements:
|
68
|
-
- -
|
72
|
+
- - '>='
|
69
73
|
- !ruby/object:Gem::Version
|
70
74
|
version: '0'
|
71
75
|
requirements: []
|
72
76
|
rubyforge_project: growl-rspec
|
73
|
-
rubygems_version:
|
77
|
+
rubygems_version: 2.0.3
|
74
78
|
signing_key:
|
75
|
-
specification_version:
|
79
|
+
specification_version: 4
|
76
80
|
summary: Publishing RSpec results via Growl
|
77
81
|
test_files: []
|