spec_upon_a_time 1.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 54a79563bd2b651b8a072b74be7307beb628eb37
4
+ data.tar.gz: 922c348940d1e6a0ca1bd32bf916b53b2faca0e0
5
+ SHA512:
6
+ metadata.gz: b62044638a8d6514e0685635d0c70665a859e415697f02cfdf45d98c2d4a1d6868209bfab0faf2f96b65cf8e960db5a806ccef4e74b3733576f855b484fde51e
7
+ data.tar.gz: 84c6ba524b6e48b062265bfe28f35d5374cd249af2ef6d6850e9fb75ea6c3052d6907d41c6b5297bda07f8d99092189e7b9df19a55b024ba6e56c6b7899f0ba3
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 TJ Taylor
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # SpecUponATime
2
+
3
+ A RSpec 3 style formatter that prints specs in documentation format with the
4
+ time it took to run each spec.
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'spec_upon_a_time'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install spec_upon_a_time
21
+
22
+ ## Usage
23
+
24
+ Run your specs with the formatter set:
25
+
26
+ $ bundle exec rspec --format SpecUponATime::Formatter
27
+
28
+ Or add it to your `.rspec` file:
29
+
30
+ --format SpecUponATime::Formatter
31
+
32
+ ## Contributing
33
+
34
+ 1. Fork it ( https://github.com/dugancathal/spec_upon_a_time/fork )
35
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
36
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
37
+ 4. Push to the branch (`git push origin my-new-feature`)
38
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,5 @@
1
+ require 'spec_upon_a_time/version'
2
+ require 'spec_upon_a_time/formatter'
3
+
4
+ module SpecUponATime
5
+ end
@@ -0,0 +1,36 @@
1
+ require 'rspec/core/formatters/documentation_formatter'
2
+
3
+ module SpecUponATime
4
+ class Formatter < RSpec::Core::Formatters::DocumentationFormatter
5
+ RSpec::Core::Formatters.register self, :example_group_started, :example_group_finished,
6
+ :example_passed, :example_pending, :example_failed
7
+ private
8
+
9
+ def passed_output(example)
10
+ codes.wrap("#{current_indentation}#{example.description.strip} " \
11
+ "(#{run_time_for(example)})", :success)
12
+ end
13
+
14
+ def pending_output(example, message)
15
+ codes.wrap("#{current_indentation}#{example.description.strip} " \
16
+ "(#{run_time_for(example)}) " \
17
+ "(PENDING: #{message})",
18
+ :pending)
19
+ end
20
+
21
+ def failure_output(example, _exception)
22
+ codes.wrap("#{current_indentation}#{example.description.strip} " \
23
+ "(#{run_time_for(example)}) " \
24
+ "(FAILED - #{next_failure_index})",
25
+ :failure)
26
+ end
27
+
28
+ def run_time_for(example)
29
+ example.execution_result.run_time
30
+ end
31
+
32
+ def codes
33
+ RSpec::Core::Formatters::ConsoleCodes
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,3 @@
1
+ module SpecUponATime
2
+ VERSION = '1.0.0'
3
+ end
@@ -0,0 +1,4 @@
1
+ require 'spec_upon_a_time'
2
+ require 'rspec'
3
+ RSpec.configure do |config|
4
+ end
@@ -0,0 +1,54 @@
1
+ require 'spec_helper'
2
+
3
+ require 'spec_upon_a_time/formatter'
4
+
5
+ module SpecUponATime
6
+ describe Formatter do
7
+ def example_notification(example)
8
+ ::RSpec::Core::Notifications::ExampleNotification.for(example)
9
+ end
10
+
11
+ def execution_result(values)
12
+ RSpec::Core::Example::ExecutionResult.new.tap do |er|
13
+ values.each { |name, value| er.__send__(:"#{name}=", value) }
14
+ end
15
+ end
16
+
17
+ def reporter
18
+ @reporter ||= setup_reporter
19
+ end
20
+
21
+ def setup_reporter(*streams)
22
+ config.add_formatter described_class, *streams
23
+ @formatter = config.formatters.first
24
+ @reporter = config.reporter
25
+ end
26
+
27
+ def output
28
+ @output ||= StringIO.new
29
+ end
30
+
31
+ def config
32
+ @configuration ||=
33
+ begin
34
+ config = RSpec::Core::Configuration.new
35
+ config.output_stream = output
36
+ config
37
+ end
38
+ end
39
+
40
+ %w(passed failed pending).each do |spec_type|
41
+ it "includes the execution time in #{spec_type} spec output" do
42
+ reporter.notify :start, ::RSpec::Core::Notifications::StartNotification.new(2)
43
+ reporter.notify :"example_#{spec_type}", example_notification(
44
+ double('example 1',
45
+ description: 'first example',
46
+ execution_result: execution_result(status: spec_type, run_time: '0.0001')
47
+ )
48
+ )
49
+
50
+ expect(output.string).to match(/first example \(0.0001\)/)
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'spec_upon_a_time/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "spec_upon_a_time"
8
+ spec.version = SpecUponATime::VERSION
9
+ spec.authors = ["TJ Taylor"]
10
+ spec.email = ["dugancathal@gmail.com"]
11
+ spec.summary = %q{An RSpec3 Formatter that prints the runtime for each spec}
12
+ spec.description = %q{Ever wanted to know how long a spec took BEFORE your whole suite is done? Well look no further.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_dependency "rspec", "~> 3.0"
24
+ end
metadata ADDED
@@ -0,0 +1,101 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spec_upon_a_time
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - TJ Taylor
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-12-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: Ever wanted to know how long a spec took BEFORE your whole suite is done?
56
+ Well look no further.
57
+ email:
58
+ - dugancathal@gmail.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - ".rspec"
65
+ - Gemfile
66
+ - LICENSE.txt
67
+ - README.md
68
+ - Rakefile
69
+ - lib/spec_upon_a_time.rb
70
+ - lib/spec_upon_a_time/formatter.rb
71
+ - lib/spec_upon_a_time/version.rb
72
+ - spec/spec_helper.rb
73
+ - spec/spec_upon_a_time_formatter_spec.rb
74
+ - spec_upon_a_time.gemspec
75
+ homepage: ''
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.2.2
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: An RSpec3 Formatter that prints the runtime for each spec
99
+ test_files:
100
+ - spec/spec_helper.rb
101
+ - spec/spec_upon_a_time_formatter_spec.rb