blinkspec 0.0.1
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 +7 -0
- data/.gitignore +5 -0
- data/.travis.yml +11 -0
- data/Gemfile +3 -0
- data/LICENSE +22 -0
- data/README.md +28 -0
- data/Rakefile +9 -0
- data/bin/blinkspec +37 -0
- data/blinkspec.gemspec +22 -0
- data/fixtures/blinkspec_fixture.json +1 -0
- data/fixtures/blinkspec_fixture_spec.rb +9 -0
- data/lib/blinkcolor.rb +24 -0
- data/lib/blinkspec.rb +98 -0
- data/spec/blinkspec_spec.rb +59 -0
- data/spec/spec_helper.rb +7 -0
- metadata +118 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3bdd4e2d26ff72dd8721bb07b871e7986d4a01bb
|
4
|
+
data.tar.gz: 4e54abe62716a9877234d481d12fc185c6159aa7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bc87914f380bda67bef4de81fe10fb3add153167fd90e3f4654baba37dd57303a9ce22b841525c2b244c6530cdb14673cba0e88c47d5efad7234a517959c3b5d
|
7
|
+
data.tar.gz: 43158c06f78f996c9939ec5d0fc4df4d8f0c624e35a15a592f04a013051ceba25cab30be40378be9110142666ca5c1168968ec1eefa4a5bf3a4996150c1c0430
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Lukas Nagl
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
22
|
+
|
data/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# blinkspec
|
2
|
+
|
3
|
+
[](https://travis-ci.org/j4zz/blinkspec)
|
4
|
+
|
5
|
+
`blinkspec` is a ruby gem that was created to utilize the [blink(1)](http://blink1.thingm.com/) USB RGB LED by ThingM when executing long-running [rspec](http://www.relishapp.com/rspec) tests.
|
6
|
+
|
7
|
+
With blinkspec, you can run your specs just like you’re used to, and your blink(1) will indicate that:
|
8
|
+
|
9
|
+
* Your specs are still running.
|
10
|
+
* `blinkspec` detected an error in your specs while running.
|
11
|
+
* Your specs have finished running and are either all green, have pending specs left or have failing specs left.
|
12
|
+
|
13
|
+
## Installation
|
14
|
+
|
15
|
+
`gem install blinkspec`
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
Just replace your use of `bundle exec rspec` with `blinkspec` and you’re good to go. All regular rspec arguments are supported except for format parameters.
|
20
|
+
|
21
|
+
```
|
22
|
+
blinkspec spec/
|
23
|
+
blinkspec spec/ --tag debug
|
24
|
+
```
|
25
|
+
|
26
|
+
# Contributing
|
27
|
+
|
28
|
+
Any pull request of any size is welcome! :)
|
data/Rakefile
ADDED
data/bin/blinkspec
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'blinkspec'
|
4
|
+
require 'pry'
|
5
|
+
|
6
|
+
# Allow String to be easily colorized
|
7
|
+
class String
|
8
|
+
def colorize(color_code)
|
9
|
+
"\e[#{color_code}m#{self}\e[0m"
|
10
|
+
end
|
11
|
+
|
12
|
+
def red
|
13
|
+
colorize(31)
|
14
|
+
end
|
15
|
+
|
16
|
+
def green
|
17
|
+
colorize(32)
|
18
|
+
end
|
19
|
+
|
20
|
+
def yellow
|
21
|
+
colorize(33)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
blinkspec = BlinkSpec::BlinkSpecRunner.new
|
26
|
+
success, pending, failed = blinkspec.run_specs(ARGV.join(' '))
|
27
|
+
exit 1 if success.nil?
|
28
|
+
|
29
|
+
puts "Success: #{success.to_s.green} Pending: #{pending.to_s.yellow} Failed: #{failed.to_s.red}"
|
30
|
+
|
31
|
+
if failed > 0
|
32
|
+
system("blink1-tool --glimmer --rgb=#{BlinkSpec::BlinkColor.fail}")
|
33
|
+
elsif pending > 0
|
34
|
+
system("blink1-tool --glimmer --rgb=#{BlinkSpec::BlinkColor.pending}")
|
35
|
+
else
|
36
|
+
system("blink1-tool --glimmer --rgb=#{BlinkSpec::BlinkColor.success}")
|
37
|
+
end
|
data/blinkspec.gemspec
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = "blinkspec"
|
3
|
+
s.version = "0.0.1"
|
4
|
+
s.date = "2015-07-27"
|
5
|
+
s.summary = "Run your specs with blink(1) feedback."
|
6
|
+
s.description = "Run your specs with beautiful output and blink(1) signals"
|
7
|
+
s.authors = ["Lukas Nagl"]
|
8
|
+
s.email = "lukas.nagl@innovaptor.com"
|
9
|
+
s.homepage = "https://github.com/j4zz/blinkspec"
|
10
|
+
s.license = "MIT"
|
11
|
+
# Done with descriptive fields.
|
12
|
+
s.rubyforge_project = "blinkspec"
|
13
|
+
s.files = ["bin/blinkspec"]
|
14
|
+
s.files = `git ls-files`.split("\n")
|
15
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
16
|
+
s.executables << "blinkspec"
|
17
|
+
s.require_paths = ["lib"]
|
18
|
+
s.add_development_dependency 'rspec', '~> 3.0'
|
19
|
+
s.add_development_dependency 'pry', '~> 0.10'
|
20
|
+
s.add_development_dependency 'rake', '~> 10.3'
|
21
|
+
s.add_development_dependency 'bundler'
|
22
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
{"messages":["Run options: include {:dbg=>true}"],"examples":[{"description":"failure","full_description":"BlinkSpec::BlinkSpecRunner blinkspec fixtures failure","status":"failed","file_path":"./spec/blinkspec_spec.rb","line_number":5,"run_time":0.001606,"exception":{"class":"RSpec::Expectations::ExpectationNotMetError","message":"\nexpected: false\n got: true\n\n(compared using ==)\n","backtrace":["/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-expectations-3.2.1/lib/rspec/expectations/fail_with.rb:29:in `fail_with'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-expectations-3.2.1/lib/rspec/expectations/handler.rb:38:in `handle_failure'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-expectations-3.2.1/lib/rspec/expectations/handler.rb:50:in `block in handle_matcher'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-expectations-3.2.1/lib/rspec/expectations/handler.rb:27:in `with_matcher'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-expectations-3.2.1/lib/rspec/expectations/handler.rb:48:in `handle_matcher'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-expectations-3.2.1/lib/rspec/expectations/expectation_target.rb:54:in `to'","/Users/lukas/Innovaptor/workspaces/blinkspec/spec/blinkspec_spec.rb:6:in `block (3 levels) in <top (required)>'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example.rb:177:in `instance_exec'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example.rb:177:in `block in run'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example.rb:385:in `block in with_around_and_singleton_context_hooks'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example.rb:343:in `block in with_around_example_hooks'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/hooks.rb:474:in `block in run'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/hooks.rb:612:in `run_around_example_hooks_for'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/hooks.rb:474:in `run'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example.rb:343:in `with_around_example_hooks'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example.rb:385:in `with_around_and_singleton_context_hooks'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example.rb:174:in `run'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example_group.rb:549:in `block in run_examples'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example_group.rb:545:in `map'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example_group.rb:545:in `run_examples'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example_group.rb:512:in `run'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example_group.rb:513:in `block in run'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example_group.rb:513:in `map'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/example_group.rb:513:in `run'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/runner.rb:110:in `block (3 levels) in run_specs'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/runner.rb:110:in `map'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/runner.rb:110:in `block (2 levels) in run_specs'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/configuration.rb:1526:in `with_suite_hooks'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/runner.rb:109:in `block in run_specs'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/reporter.rb:62:in `report'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/runner.rb:108:in `run_specs'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/runner.rb:86:in `run'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/runner.rb:70:in `run'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/lib/rspec/core/runner.rb:38:in `invoke'","/Users/lukas/.rvm/gems/ruby-2.1.5/gems/rspec-core-3.2.3/exe/rspec:4:in `<top (required)>'","/Users/lukas/.rvm/gems/ruby-2.1.5/bin/rspec:23:in `load'","/Users/lukas/.rvm/gems/ruby-2.1.5/bin/rspec:23:in `<main>'","/Users/lukas/.rvm/gems/ruby-2.1.5/bin/ruby_executable_hooks:15:in `eval'","/Users/lukas/.rvm/gems/ruby-2.1.5/bin/ruby_executable_hooks:15:in `<main>'"]}},{"description":"pending","full_description":"BlinkSpec::BlinkSpecRunner blinkspec fixtures pending","status":"pending","file_path":"./spec/blinkspec_spec.rb","line_number":9,"run_time":0.000147},{"description":"success","full_description":"BlinkSpec::BlinkSpecRunner blinkspec fixtures success","status":"passed","file_path":"./spec/blinkspec_spec.rb","line_number":14,"run_time":7.0e-05}],"summary":{"duration":0.003018,"example_count":3,"failure_count":1,"pending_count":1},"summary_line":"3 examples, 1 failure, 1 pending"}%
|
data/lib/blinkcolor.rb
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
module BlinkSpec
|
2
|
+
# Wrap color definitions
|
3
|
+
class BlinkColor
|
4
|
+
def self.fail
|
5
|
+
'255,0,0'
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.success
|
9
|
+
'0,255,0'
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.pending
|
13
|
+
'255,255,0'
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.running
|
17
|
+
'255,255,255'
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.error
|
21
|
+
'0,0,255'
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
data/lib/blinkspec.rb
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
require 'json'
|
2
|
+
require 'fileutils'
|
3
|
+
require 'pry'
|
4
|
+
require_relative 'blinkcolor'
|
5
|
+
|
6
|
+
# Run rspec with support of a blink(1)
|
7
|
+
module BlinkSpec
|
8
|
+
class BlinkSpecRunner
|
9
|
+
attr_accessor :spec_output_file
|
10
|
+
|
11
|
+
def initialize
|
12
|
+
@spec_output_file = 'blinkspec.json'
|
13
|
+
end
|
14
|
+
|
15
|
+
# Run rspec and indicate progress with blink(1).
|
16
|
+
#
|
17
|
+
# * *Args* :
|
18
|
+
# - +args+ -> rspec specific arguments that should be used separated by whitespace
|
19
|
+
# * *Returns* :
|
20
|
+
# - the number of successful, pending and failed results in that order
|
21
|
+
def run_specs(args)
|
22
|
+
begin
|
23
|
+
# indicate that the specs are running
|
24
|
+
blink("--glimmer --rgb=#{BlinkColor.running}")
|
25
|
+
|
26
|
+
run_rspec_subprocess(args)
|
27
|
+
rescue SystemExit, Interrupt
|
28
|
+
# catch keyboard interrupt to remove generated file and cleanly exit
|
29
|
+
blink("--blink 1 --rgb=#{BlinkColor.error}")
|
30
|
+
return nil,nil,nil
|
31
|
+
end
|
32
|
+
|
33
|
+
# handle rspec execution errors
|
34
|
+
exit_code = $?.exitstatus
|
35
|
+
unless [0, 1].include? exit_code
|
36
|
+
blink("--blink 1 --rgb=#{BlinkColor.error}")
|
37
|
+
puts "Rspec could not be executed correctly. Exit Code: #{exit_code}"
|
38
|
+
return nil,nil,nil
|
39
|
+
end
|
40
|
+
|
41
|
+
results
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
# Run rspec and listen for errors.
|
47
|
+
#
|
48
|
+
# * *Args* :
|
49
|
+
# - +args+ -> rspec specific arguments that should be used separated by whitespace
|
50
|
+
# * *Returns* :
|
51
|
+
# - the number of successful, pending and failed results in that order
|
52
|
+
def run_rspec_subprocess(args)
|
53
|
+
IO.popen("bundle exec rspec #{args} --format documentation --format j --out #{@spec_output_file}").each do |f|
|
54
|
+
# listen to running specs and look for errors to report them early
|
55
|
+
line = f.chomp
|
56
|
+
if line.include? 'FAILED'
|
57
|
+
# show an error with blink(1)
|
58
|
+
blink("--blink 1 --rgb=#{BlinkColor.fail}")
|
59
|
+
end
|
60
|
+
puts line
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
# Run a blink1 command.
|
65
|
+
#
|
66
|
+
# * *Args* :
|
67
|
+
# - +args+ -> arguments passed to blink-1
|
68
|
+
#
|
69
|
+
# * *Returns* :
|
70
|
+
# - true in case of 0 exit status
|
71
|
+
def blink(args)
|
72
|
+
system("blink1-tool #{args}")
|
73
|
+
end
|
74
|
+
|
75
|
+
# Get a summary of the results of the previous rspec run.
|
76
|
+
#
|
77
|
+
# * *Returns* :
|
78
|
+
# - the number of successful, pending and failed results in that order
|
79
|
+
def results
|
80
|
+
# read execution resuls
|
81
|
+
file = File.open(@spec_output_file, 'r')
|
82
|
+
specresults = file.read
|
83
|
+
file.close
|
84
|
+
|
85
|
+
# fetch example results
|
86
|
+
# and cut eventual stdout output after json
|
87
|
+
specresults = specresults[0..(specresults.rindex("\}"))]
|
88
|
+
jsonresults = JSON.parse(specresults, symbolize_names: true)
|
89
|
+
|
90
|
+
# get summary
|
91
|
+
example_count = jsonresults[:summary][:example_count] || 0
|
92
|
+
pending_count = jsonresults[:summary][:pending_count] || 0
|
93
|
+
failure_count = jsonresults[:summary][:failure_count] || 0
|
94
|
+
success_count = example_count - pending_count - failure_count
|
95
|
+
return success_count, pending_count, failure_count
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe BlinkSpec::BlinkSpecRunner do
|
4
|
+
context 'when spec files are given' do
|
5
|
+
let(:runner) { BlinkSpec::BlinkSpecRunner.new }
|
6
|
+
|
7
|
+
it 'should call rspec with arguments' do
|
8
|
+
expect(runner).to receive(:blink).with(/--rgb=#{BlinkSpec::BlinkColor.running}/)
|
9
|
+
expect(runner).to receive(:run_rspec_subprocess).with('fixtures/blinkspec_fixture_spec.rb --color')
|
10
|
+
expect(runner).to receive(:results)
|
11
|
+
runner.run_specs('fixtures/blinkspec_fixture_spec.rb --color')
|
12
|
+
end
|
13
|
+
|
14
|
+
it 'should detect errors immediately during running' do
|
15
|
+
expect(runner).to receive(:blink).with(/--rgb=#{BlinkSpec::BlinkColor.fail}/)
|
16
|
+
runner.send(:run_rspec_subprocess, 'fixtures/blinkspec_fixture_spec.rb --tag fixture_fail')
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
context 'errors' do
|
21
|
+
let(:runner) { BlinkSpec::BlinkSpecRunner.new }
|
22
|
+
|
23
|
+
it 'should handle an error if exit code is not a success exit code' do
|
24
|
+
expect(runner).to receive(:blink).with(/--rgb=#{BlinkSpec::BlinkColor.running}/)
|
25
|
+
expect(runner).to receive(:blink).with(/--rgb=#{BlinkSpec::BlinkColor.error}/)
|
26
|
+
allow(runner).to receive(:run_rspec_subprocess) { system("exit 42") }
|
27
|
+
success, pending, failure = runner.run_specs('fixtures/blinkspec_fixture_spec.rb')
|
28
|
+
expect(success).to eq(nil)
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'should handle keyboard interrupts' do
|
32
|
+
expect(runner).to receive(:blink).with(/--rgb=#{BlinkSpec::BlinkColor.running}/)
|
33
|
+
expect(runner).to receive(:blink).with(/--rgb=#{BlinkSpec::BlinkColor.error}/)
|
34
|
+
allow(runner).to receive(:run_rspec_subprocess).and_raise(Interrupt)
|
35
|
+
success, pending, failure = runner.run_specs('fixtures/blinkspec_fixture_spec.rb')
|
36
|
+
expect(success).to eq(nil)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
context 'when spec results are given' do
|
41
|
+
let(:runner) do
|
42
|
+
runner = BlinkSpec::BlinkSpecRunner.new
|
43
|
+
runner.instance_variable_set(:@spec_output_file, 'fixtures/blinkspec_fixture.json')
|
44
|
+
runner
|
45
|
+
end
|
46
|
+
it 'should provide the success specs number' do
|
47
|
+
success, _pending, _error = runner.send(:results)
|
48
|
+
expect(success).to eq(1)
|
49
|
+
end
|
50
|
+
it 'should provide the pending specs number' do
|
51
|
+
_success, pending, _error = runner.send(:results)
|
52
|
+
expect(pending).to eq(1)
|
53
|
+
end
|
54
|
+
it 'should provide the failed specs number' do
|
55
|
+
_success, _pending, error = runner.send(:results)
|
56
|
+
expect(error).to eq(1)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,118 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: blinkspec
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Lukas Nagl
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-07-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rspec
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: pry
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.10'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.10'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.3'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.3'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bundler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Run your specs with beautiful output and blink(1) signals
|
70
|
+
email: lukas.nagl@innovaptor.com
|
71
|
+
executables:
|
72
|
+
- blinkspec
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".travis.yml"
|
78
|
+
- Gemfile
|
79
|
+
- LICENSE
|
80
|
+
- README.md
|
81
|
+
- Rakefile
|
82
|
+
- bin/blinkspec
|
83
|
+
- blinkspec.gemspec
|
84
|
+
- fixtures/blinkspec_fixture.json
|
85
|
+
- fixtures/blinkspec_fixture_spec.rb
|
86
|
+
- lib/blinkcolor.rb
|
87
|
+
- lib/blinkspec.rb
|
88
|
+
- spec/.DS_Store
|
89
|
+
- spec/blinkspec_spec.rb
|
90
|
+
- spec/spec_helper.rb
|
91
|
+
homepage: https://github.com/j4zz/blinkspec
|
92
|
+
licenses:
|
93
|
+
- MIT
|
94
|
+
metadata: {}
|
95
|
+
post_install_message:
|
96
|
+
rdoc_options: []
|
97
|
+
require_paths:
|
98
|
+
- lib
|
99
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
109
|
+
requirements: []
|
110
|
+
rubyforge_project: blinkspec
|
111
|
+
rubygems_version: 2.4.7
|
112
|
+
signing_key:
|
113
|
+
specification_version: 4
|
114
|
+
summary: Run your specs with blink(1) feedback.
|
115
|
+
test_files:
|
116
|
+
- spec/blinkspec_spec.rb
|
117
|
+
- spec/spec_helper.rb
|
118
|
+
has_rdoc:
|