blink1-formatter 0.0.1 → 0.0.2
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.
- data/README.rdoc +16 -0
- data/blink1-formatter.gemspec +1 -0
- data/lib/blink1_formatter/version.rb +1 -1
- metadata +17 -1
data/README.rdoc
CHANGED
@@ -0,0 +1,16 @@
|
|
1
|
+
= blink(1) RSpec Formatter
|
2
|
+
|
3
|
+
This enables indicating RSpec 2 status with blink(1).
|
4
|
+
|
5
|
+
rspec --format progress --format Blink1Formatter
|
6
|
+
|
7
|
+
Make sure using text based formatter. If not specified, you cannot check the status with the terminal.
|
8
|
+
|
9
|
+
Or add to `.rspec` file
|
10
|
+
|
11
|
+
--format progress
|
12
|
+
--format Blink1Formatter
|
13
|
+
|
14
|
+
== Author
|
15
|
+
|
16
|
+
- {Atsushi Nagase}[http://ngs.io/]
|
data/blink1-formatter.gemspec
CHANGED
@@ -16,6 +16,7 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.add_development_dependency 'bundler', '~> 1.0'
|
17
17
|
s.add_development_dependency 'rspec', '~> 2.11'
|
18
18
|
# s.add_development_dependency 'guard-rspec', '~> 1.2'
|
19
|
+
s.add_dependency 'rb-blink1', '~> 0.02'
|
19
20
|
|
20
21
|
s.files = `git ls-files`.split("\n").reject{|f| f =~ /^\..+$/}
|
21
22
|
s.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blink1-formatter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -43,6 +43,22 @@ dependencies:
|
|
43
43
|
- - ~>
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: '2.11'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rb-blink1
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0.02'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.02'
|
46
62
|
description: Indicates RSpec status with blink(1)
|
47
63
|
email:
|
48
64
|
- a@ngs.io
|