Skip to content

Commit ce325ff

Browse files
committed
Tapout for nice test output
1 parent 113d4eb commit ce325ff

File tree

18 files changed

+246
-1
lines changed

18 files changed

+246
-1
lines changed

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ source "http://rubygems.org"
44
gemspec
55

66
gem 'appraisal'
7+
gem 'tapout'
8+
gem 'minitap'

Gemfile.lock

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ GEM
3333
minitest (~> 5.1)
3434
thread_safe (~> 0.1)
3535
tzinfo (~> 1.1)
36+
ansi (1.4.3)
3637
appraisal (1.0.2)
3738
bundler
3839
rake
@@ -49,7 +50,13 @@ GEM
4950
mail (2.6.3)
5051
mime-types (>= 1.16, < 3)
5152
mime-types (2.4.3)
53+
minitap (0.5.3)
54+
minitest (~> 5.0)
55+
minitest-reporter-api (>= 0.0.2)
56+
tapout (>= 0.3.0)
5257
minitest (5.4.3)
58+
minitest-reporter-api (0.0.5)
59+
minitest (~> 5.0)
5360
multi_json (1.10.1)
5461
rack (1.5.2)
5562
rack-test (0.6.2)
@@ -85,6 +92,9 @@ GEM
8592
activesupport (>= 3.0)
8693
sprockets (>= 2.8, < 4.0)
8794
sqlite3 (1.3.10)
95+
tapout (0.4.5)
96+
ansi
97+
json
8898
thor (0.19.1)
8999
thread_safe (0.3.4)
90100
tilt (1.4.1)
@@ -99,5 +109,7 @@ DEPENDENCIES
99109
acl9!
100110
appraisal
101111
codeclimate-test-reporter
112+
minitap
102113
sqlite3
114+
tapout
103115
yard

Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Rake::TestTask.new(:test) do |test|
1111
test.libs << 'lib' << 'test'
1212
test.pattern = 'test/**/*_test.rb'
1313
test.verbose = false
14+
test.options = "--tapy | tapout runtime"
1415
end
1516

1617
require 'yard'

bin/appraisal

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'appraisal' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('appraisal', 'appraisal')

bin/bundler

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'bundler' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('bundler', 'bundler')

bin/cc-tddium-post-worker

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'cc-tddium-post-worker' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('codeclimate-test-reporter', 'cc-tddium-post-worker')

bin/erubis

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'erubis' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('erubis', 'erubis')

bin/rackup

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'rackup' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('rack', 'rackup')

bin/rails

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'rails' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('railties', 'rails')

bin/rake

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'rake' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('rake', 'rake')

0 commit comments

Comments
 (0)