fix 0.6.0 → 0.6.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/README.md +27 -2
- data/VERSION.semver +1 -1
- data/fix.gemspec +1 -1
- data/lib/fix.rb +21 -14
- data/lib/fix/db.rb +7 -1
- data/lib/fix/expectation.rb +22 -3
- data/lib/fix/expectation_high.rb +0 -12
- data/lib/fix/expectation_low.rb +0 -12
- data/lib/fix/expectation_medium.rb +7 -13
- data/lib/fix/helper/let_reader_helper.rb +5 -1
- data/lib/fix/it.rb +0 -2
- data/lib/fix/its.rb +0 -2
- data/lib/fix/on.rb +0 -2
- data/lib/fix/subject.rb +4 -6
- data/lib/fix/test.rb +30 -12
- data/lib/fix/version.rb +1 -1
- data/spec/fix/bin/help_spec.rb +2 -1
- data/spec/fix/bin/hide_progress.rb +17 -0
- data/spec/fix/lib/may/error_spec.rb +1 -1
- data/spec/fix/lib/may/info_spec.rb +1 -1
- data/spec/fix/lib/must/error_spec.rb +1 -1
- data/spec/fix/lib/should/error_spec.rb +1 -1
- data/spec/support/coverage.rb +7 -1
- data/spec/support/examples/42/may/error/spec.rb +0 -4
- data/spec/support/examples/42/may/info/spec.rb +0 -4
- data/spec/support/examples/42/may/success/spec.rb +5 -1
- data/spec/support/examples/42/must/error/spec.rb +4 -0
- data/spec/support/examples/42/should/error/spec.rb +4 -0
- data/spec/support/examples/duck/success/spec.rb +47 -0
- data/spec/support/immutable.rb +12 -0
- metadata +8 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1c74dde05a82712b08d657679c40f2bee2637145
|
4
|
+
data.tar.gz: e3cc1b4cda3ef6197eccbcafb42af91fa9898b5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d01283957a2dedad6e1d1e5f090bb038267921d5bf75d9b0200e309c173c1d6057d45b6596239c30e4463b2a7f8755b0344a59fb24171355c9eced5c305b067
|
7
|
+
data.tar.gz: 2b3451fa7adce9a3c424c2974642cae18f9dd80b789a4ce640c7bca47ef78a94c9cc853a6034d0bd81d85cbd324261a5165cf687fda37b0b977e8d145990c8b7
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/README.md
CHANGED
@@ -43,7 +43,7 @@ $ gem install fix
|
|
43
43
|
|
44
44
|
### Minimalist
|
45
45
|
|
46
|
-
With
|
46
|
+
With 674 lignes of **simple code** built on top of [Spectus expectation library](https://github.com/fixrb/spectus), facilities such as benchmarking and mocking are not supported. Fix offers however a **consistent** syntax to **DRY** and focus your BDD.
|
47
47
|
|
48
48
|
### Resistant
|
49
49
|
|
@@ -51,7 +51,7 @@ While specs behave like **documents** which can be logic-less, their interpretat
|
|
51
51
|
|
52
52
|
### Complexity
|
53
53
|
|
54
|
-
Monkey-patching, magic tricks and friends are not included. Instead, animated by **authentic** and **
|
54
|
+
Monkey-patching, magic tricks and friends are not included. Instead, animated by **authentic** and **unmuted** Ruby objects, unambiguous, understandable and structured specs are encouraged.
|
55
55
|
|
56
56
|
### Objective
|
57
57
|
|
@@ -80,6 +80,31 @@ require 'fix'
|
|
80
80
|
|
81
81
|
extend Fix::DSL
|
82
82
|
|
83
|
+
require 'stringio'
|
84
|
+
module Spectus
|
85
|
+
module Matcher
|
86
|
+
# Provides the implementation for `capture_stdout` custom matcher.
|
87
|
+
class CaptureStdout
|
88
|
+
def initialize expected
|
89
|
+
@expected = expected
|
90
|
+
end
|
91
|
+
|
92
|
+
# @return [Boolean] Comparison between actual and expected values.
|
93
|
+
def matches?
|
94
|
+
begin
|
95
|
+
orig_std = $stdout
|
96
|
+
$stdout = StringIO.new
|
97
|
+
|
98
|
+
yield
|
99
|
+
$stdout.string.eql? @expected
|
100
|
+
ensure
|
101
|
+
$stdout = orig_std
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
83
108
|
subject @bird
|
84
109
|
|
85
110
|
on :swims do
|
data/VERSION.semver
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.1
|
data/fix.gemspec
CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.require_paths = ['lib']
|
15
15
|
spec.required_ruby_version = '>= 2.0.0'
|
16
16
|
|
17
|
-
spec.add_dependency 'spectus', '~> 1.
|
17
|
+
spec.add_dependency 'spectus', '~> 1.1.1'
|
18
18
|
|
19
19
|
spec.add_development_dependency 'bundler', '~> 1.7'
|
20
20
|
spec.add_development_dependency 'rake', '~> 10.0'
|
data/lib/fix.rb
CHANGED
@@ -12,10 +12,12 @@ module Fix
|
|
12
12
|
process_args args
|
13
13
|
file_paths = fetch_file_paths args
|
14
14
|
|
15
|
-
print
|
16
|
-
print ' --color'
|
17
|
-
print ' --debug'
|
18
|
-
print ' --
|
15
|
+
print '> fix'
|
16
|
+
print ' --color' if defined? COLOR
|
17
|
+
print ' --debug' if $DEBUG
|
18
|
+
print ' --hide_progress' if defined? HIDE_PROGRESS
|
19
|
+
print " --seed #{SEED}" if defined? SEED
|
20
|
+
print ' --warnings' if $VERBOSE
|
19
21
|
|
20
22
|
puts ' ' + file_paths.to_a.join(' ')
|
21
23
|
|
@@ -25,10 +27,11 @@ module Fix
|
|
25
27
|
|
26
28
|
def self.process_args args
|
27
29
|
options = {
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
30
|
+
color: false,
|
31
|
+
debug: false,
|
32
|
+
hide_progress: false,
|
33
|
+
seed: Random.new_seed,
|
34
|
+
warnings: false
|
32
35
|
}
|
33
36
|
|
34
37
|
opt_parser = OptionParser.new do |opts|
|
@@ -41,14 +44,18 @@ module Fix
|
|
41
44
|
options[:color] = (const_set :COLOR, true)
|
42
45
|
end
|
43
46
|
|
44
|
-
opts.on('--seed [INTEGER]', Integer, 'Order of the tests') do |seed|
|
45
|
-
options[:seed] = seed
|
46
|
-
end
|
47
|
-
|
48
47
|
opts.on('--debug', 'Enable ruby debug') do
|
49
48
|
options[:debug] = $DEBUG = true
|
50
49
|
end
|
51
50
|
|
51
|
+
opts.on('--hide_progress', 'Disable progress reporter in the output.') do
|
52
|
+
options[:hide_progress] = (const_set :HIDE_PROGRESS, true)
|
53
|
+
end
|
54
|
+
|
55
|
+
opts.on('--seed [INTEGER]', Integer, 'Order of the tests') do |seed|
|
56
|
+
options[:seed] = seed
|
57
|
+
end
|
58
|
+
|
52
59
|
opts.on('--warnings', 'Enable ruby warnings') do
|
53
60
|
options[:warnings] = $VERBOSE = true
|
54
61
|
end
|
@@ -69,7 +76,7 @@ module Fix
|
|
69
76
|
|
70
77
|
opt_parser.parse! args
|
71
78
|
const_set :SEED, options.fetch(:seed)
|
72
|
-
options
|
79
|
+
options
|
73
80
|
end
|
74
81
|
|
75
82
|
def self.fetch_file_paths args
|
@@ -91,6 +98,6 @@ module Fix
|
|
91
98
|
exit 1
|
92
99
|
end
|
93
100
|
|
94
|
-
absolute_paths
|
101
|
+
absolute_paths
|
95
102
|
end
|
96
103
|
end
|
data/lib/fix/db.rb
CHANGED
data/lib/fix/expectation.rb
CHANGED
@@ -15,8 +15,6 @@ module Fix
|
|
15
15
|
@args = args
|
16
16
|
@priority = DB.instance.random.rand
|
17
17
|
|
18
|
-
freeze
|
19
|
-
|
20
18
|
DB.instance.update(object => SortedSet[]) unless DB.instance.key? object
|
21
19
|
DB.instance.fetch(object).add self
|
22
20
|
end
|
@@ -25,6 +23,23 @@ module Fix
|
|
25
23
|
self.priority <=> other.priority
|
26
24
|
end
|
27
25
|
|
26
|
+
def evaluate front_object
|
27
|
+
Thread.new {
|
28
|
+
subject = Subject.new front_object, *@args
|
29
|
+
got = nil
|
30
|
+
|
31
|
+
report = begin
|
32
|
+
expect { got = subject.actual }.__send__ target, @definition
|
33
|
+
rescue => e
|
34
|
+
e
|
35
|
+
end
|
36
|
+
|
37
|
+
data = presenter report, got, subject
|
38
|
+
|
39
|
+
Hash[ data.to_a + meta(subject).to_a ].merge object: front_object
|
40
|
+
}.value
|
41
|
+
end
|
42
|
+
|
28
43
|
private
|
29
44
|
|
30
45
|
def exception result
|
@@ -55,7 +70,11 @@ module Fix
|
|
55
70
|
end
|
56
71
|
|
57
72
|
def target
|
58
|
-
negated?
|
73
|
+
if negated?
|
74
|
+
:not_to
|
75
|
+
else
|
76
|
+
:to
|
77
|
+
end
|
59
78
|
end
|
60
79
|
end
|
61
80
|
end
|
data/lib/fix/expectation_high.rb
CHANGED
@@ -2,18 +2,6 @@ require_relative 'expectation'
|
|
2
2
|
|
3
3
|
module Fix
|
4
4
|
class ExpectationHigh < Expectation
|
5
|
-
def evaluate front_object
|
6
|
-
subject = Subject.new front_object, *@args
|
7
|
-
got = nil
|
8
|
-
|
9
|
-
Thread.new {
|
10
|
-
report = expect { got = subject.actual }.public_send target, @definition
|
11
|
-
data = presenter report, got, subject
|
12
|
-
|
13
|
-
Hash[ data.to_a + meta(subject).to_a ].merge object: front_object
|
14
|
-
}.value
|
15
|
-
end
|
16
|
-
|
17
5
|
private
|
18
6
|
|
19
7
|
def pass result, _subject
|
data/lib/fix/expectation_low.rb
CHANGED
@@ -2,18 +2,6 @@ require_relative 'expectation_medium'
|
|
2
2
|
|
3
3
|
module Fix
|
4
4
|
class ExpectationLow < ExpectationMedium
|
5
|
-
def evaluate front_object
|
6
|
-
subject = Subject.new front_object, *@args
|
7
|
-
got = nil
|
8
|
-
|
9
|
-
Thread.new {
|
10
|
-
report = expect { got = subject.actual }.public_send target, @definition
|
11
|
-
data = presenter report, got, subject
|
12
|
-
|
13
|
-
Hash[ data.to_a + meta(subject).to_a ].merge object: front_object
|
14
|
-
}.value
|
15
|
-
end
|
16
|
-
|
17
5
|
private
|
18
6
|
|
19
7
|
def pass result, subject
|
@@ -2,22 +2,16 @@ require_relative 'expectation_high'
|
|
2
2
|
|
3
3
|
module Fix
|
4
4
|
class ExpectationMedium < ExpectationHigh
|
5
|
-
def evaluate front_object
|
6
|
-
subject = Subject.new front_object, *@args
|
7
|
-
got = nil
|
8
|
-
|
9
|
-
Thread.new {
|
10
|
-
report = expect { got = subject.actual }.public_send target, @definition
|
11
|
-
data = presenter report, got, subject
|
12
|
-
|
13
|
-
Hash[ data.to_a + meta(subject).to_a ].merge object: front_object
|
14
|
-
}.value
|
15
|
-
end
|
16
|
-
|
17
5
|
private
|
18
6
|
|
19
7
|
def pass result, _subject
|
20
|
-
super
|
8
|
+
if super
|
9
|
+
true
|
10
|
+
elsif exception(result).nil?
|
11
|
+
nil
|
12
|
+
else
|
13
|
+
false
|
14
|
+
end
|
21
15
|
end
|
22
16
|
|
23
17
|
def level
|
data/lib/fix/it.rb
CHANGED
data/lib/fix/its.rb
CHANGED
data/lib/fix/on.rb
CHANGED
data/lib/fix/subject.rb
CHANGED
@@ -9,23 +9,21 @@ module Fix
|
|
9
9
|
@last_arg = -1
|
10
10
|
|
11
11
|
begin
|
12
|
-
@cache_value = params.inject
|
12
|
+
@cache_value = params.inject input do |mem, param|
|
13
13
|
@implemented = mem.respond_to? param.first, false
|
14
14
|
@last_arg = @last_arg.next
|
15
15
|
|
16
|
-
mem.
|
16
|
+
mem.__send__(*param)
|
17
17
|
end
|
18
18
|
|
19
19
|
@last_arg = @last_arg.next
|
20
20
|
rescue => @error
|
21
21
|
end
|
22
|
-
|
23
|
-
freeze
|
24
22
|
end
|
25
23
|
|
26
24
|
def actual
|
27
25
|
if @error.nil?
|
28
|
-
@cache_value.
|
26
|
+
@cache_value.__send__(*challenge)
|
29
27
|
else
|
30
28
|
raise @error
|
31
29
|
end
|
@@ -40,7 +38,7 @@ module Fix
|
|
40
38
|
end
|
41
39
|
|
42
40
|
def implemented?
|
43
|
-
@
|
41
|
+
@error.nil? && @implemented && @cache_value.respond_to?(challenge.first, false)
|
44
42
|
end
|
45
43
|
end
|
46
44
|
end
|
data/lib/fix/test.rb
CHANGED
@@ -4,14 +4,20 @@ module Fix
|
|
4
4
|
class Test
|
5
5
|
attr_reader :total_time
|
6
6
|
|
7
|
-
def initialize io = $stdout, color: defined?(COLOR)
|
7
|
+
def initialize io = $stdout, color: defined?(COLOR), hide_progress: defined?(HIDE_PROGRESS)
|
8
8
|
@io = io
|
9
9
|
@color = color
|
10
10
|
|
11
11
|
start_time = Time.now
|
12
12
|
|
13
13
|
@results = DB.instance.flat_map do |object, expectations|
|
14
|
-
expectations.map
|
14
|
+
expectations.map do |expectation|
|
15
|
+
if hide_progress
|
16
|
+
expectation.evaluate object
|
17
|
+
else
|
18
|
+
log expectation.evaluate(object)
|
19
|
+
end
|
20
|
+
end
|
15
21
|
end
|
16
22
|
|
17
23
|
@total_time = Time.now - start_time
|
@@ -37,8 +43,6 @@ module Fix
|
|
37
43
|
@io.puts about "Ran #{@results.length} tests in #{@total_time} seconds"
|
38
44
|
@io.puts statistics
|
39
45
|
|
40
|
-
freeze
|
41
|
-
|
42
46
|
exit 1 if fail?
|
43
47
|
end
|
44
48
|
|
@@ -136,7 +140,11 @@ module Fix
|
|
136
140
|
private
|
137
141
|
|
138
142
|
def truncate string
|
139
|
-
string.length > 16
|
143
|
+
if string.length > 16
|
144
|
+
string[0..16].concat '[...]'
|
145
|
+
else
|
146
|
+
string
|
147
|
+
end
|
140
148
|
end
|
141
149
|
|
142
150
|
def returned_value result
|
@@ -150,19 +158,25 @@ module Fix
|
|
150
158
|
def expectation_level result
|
151
159
|
case result.fetch :level
|
152
160
|
when 1
|
153
|
-
result.fetch
|
161
|
+
if result.fetch :negated
|
162
|
+
'MUST_NOT'
|
163
|
+
else
|
164
|
+
'MUST'
|
165
|
+
end
|
154
166
|
when 2
|
155
|
-
result.fetch
|
167
|
+
if result.fetch :negated
|
168
|
+
'SHOULD_NOT'
|
169
|
+
else
|
170
|
+
'SHOULD'
|
171
|
+
end
|
156
172
|
when 3
|
157
173
|
'MAY'
|
158
174
|
end
|
159
175
|
end
|
160
176
|
|
161
177
|
def matcher_with_expected_if_given result
|
162
|
-
definition = Array result.fetch
|
163
|
-
|
164
|
-
definition.flatten(1)[0].to_s +
|
165
|
-
if definition.flatten(1).length > 1
|
178
|
+
definition = Array result.fetch :definition
|
179
|
+
definition.flatten(1)[0].to_s + if definition.flatten(1).length > 1
|
166
180
|
' ' + definition.flatten(1)[1].inspect
|
167
181
|
else
|
168
182
|
''
|
@@ -176,7 +190,11 @@ module Fix
|
|
176
190
|
end
|
177
191
|
|
178
192
|
def colorize state, string
|
179
|
-
@color
|
193
|
+
if @color
|
194
|
+
"\e[#{state}m#{string}\e[0m"
|
195
|
+
else
|
196
|
+
string
|
197
|
+
end
|
180
198
|
end
|
181
199
|
|
182
200
|
def about string
|
data/lib/fix/version.rb
CHANGED
data/spec/fix/bin/help_spec.rb
CHANGED
@@ -5,8 +5,9 @@ subject Proc.new { `#{BIN_PATH} --help` }
|
|
5
5
|
its :call do
|
6
6
|
MUST match: /Usage: fix <files or directories> \[options\]/
|
7
7
|
MUST match: / --color /
|
8
|
-
MUST match: / --seed /
|
9
8
|
MUST match: / --debug /
|
9
|
+
MUST match: / --hide_progress /
|
10
|
+
MUST match: / --seed /
|
10
11
|
MUST match: / --warnings /
|
11
12
|
MUST match: / --version /
|
12
13
|
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
subject Proc.new {
|
4
|
+
`#{BIN_PATH} #{Pathname.new(__FILE__).join '..', '..', '..', 'support', 'examples', 'duck', 'success', 'test.rb'}`
|
5
|
+
}
|
6
|
+
|
7
|
+
its :call do
|
8
|
+
MUST match: /^......$/
|
9
|
+
end
|
10
|
+
|
11
|
+
subject Proc.new {
|
12
|
+
`#{BIN_PATH} #{Pathname.new(__FILE__).join '..', '..', '..', 'support', 'examples', 'duck', 'success', 'test.rb'} --hide_progress`
|
13
|
+
}
|
14
|
+
|
15
|
+
its :call do
|
16
|
+
MUST_NOT match: /^......$/
|
17
|
+
end
|
data/spec/support/coverage.rb
CHANGED
@@ -1,6 +1,53 @@
|
|
1
1
|
@specs = ->(front_object) {
|
2
2
|
extend Fix::DSL
|
3
3
|
|
4
|
+
require 'stringio'
|
5
|
+
|
6
|
+
module Spectus
|
7
|
+
module Matcher
|
8
|
+
|
9
|
+
# Provides the implementation for `capture_stderr`.
|
10
|
+
class CaptureStderr
|
11
|
+
def initialize expected
|
12
|
+
@expected = expected
|
13
|
+
end
|
14
|
+
|
15
|
+
# @return [Boolean] Comparison between actual and expected values.
|
16
|
+
def matches?
|
17
|
+
begin
|
18
|
+
orig_std = $stderr
|
19
|
+
$stderr = StringIO.new
|
20
|
+
|
21
|
+
yield
|
22
|
+
$stderr.string.eql? @expected
|
23
|
+
ensure
|
24
|
+
$stderr = orig_std
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
# Provides the implementation for `capture_stdout`.
|
30
|
+
class CaptureStdout
|
31
|
+
def initialize expected
|
32
|
+
@expected = expected
|
33
|
+
end
|
34
|
+
|
35
|
+
# @return [Boolean] Comparison between actual and expected values.
|
36
|
+
def matches?
|
37
|
+
begin
|
38
|
+
orig_std = $stdout
|
39
|
+
$stdout = StringIO.new
|
40
|
+
|
41
|
+
yield
|
42
|
+
$stdout.string.eql? @expected
|
43
|
+
ensure
|
44
|
+
$stdout = orig_std
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
4
51
|
subject front_object
|
5
52
|
|
6
53
|
let(:word) { "Quaaa" }
|
@@ -0,0 +1,12 @@
|
|
1
|
+
class Object
|
2
|
+
alias_method :overridden_initialize, :initialize
|
3
|
+
|
4
|
+
def initialize
|
5
|
+
overridden_initialize
|
6
|
+
|
7
|
+
if !self.class.ancestors.include?(SimpleCov::Formatter::MultiFormatter) &&
|
8
|
+
!self.class.ancestors.include?(SimpleCov::Formatter::HTMLFormatter)
|
9
|
+
freeze
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cyril Wack
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
30
30
|
sQCgS9KCAyZ+aWNO1bUJcE3Bx1XXkMO3JEyVR1CoEcexg5Ci03/lAm7lL84DmlKR
|
31
31
|
3I7UWtomapPFbzC0J/5jzQ==
|
32
32
|
-----END CERTIFICATE-----
|
33
|
-
date: 2014-10-
|
33
|
+
date: 2014-10-19 00:00:00.000000000 Z
|
34
34
|
dependencies:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: spectus
|
@@ -38,14 +38,14 @@ dependencies:
|
|
38
38
|
requirements:
|
39
39
|
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 1.
|
41
|
+
version: 1.1.1
|
42
42
|
type: :runtime
|
43
43
|
prerelease: false
|
44
44
|
version_requirements: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 1.
|
48
|
+
version: 1.1.1
|
49
49
|
- !ruby/object:Gem::Dependency
|
50
50
|
name: bundler
|
51
51
|
requirement: !ruby/object:Gem::Requirement
|
@@ -144,6 +144,7 @@ files:
|
|
144
144
|
- spec/fix/bin/color_spec.rb
|
145
145
|
- spec/fix/bin/exit_status_spec.rb
|
146
146
|
- spec/fix/bin/help_spec.rb
|
147
|
+
- spec/fix/bin/hide_progress.rb
|
147
148
|
- spec/fix/bin/spec_helper.rb
|
148
149
|
- spec/fix/bin/version_spec.rb
|
149
150
|
- spec/fix/lib/may/error_spec.rb
|
@@ -187,6 +188,7 @@ files:
|
|
187
188
|
- spec/support/examples/duck/app.rb
|
188
189
|
- spec/support/examples/duck/success/spec.rb
|
189
190
|
- spec/support/examples/duck/success/test.rb
|
191
|
+
- spec/support/immutable.rb
|
190
192
|
homepage: http://fixrb.org/
|
191
193
|
licenses:
|
192
194
|
- MIT
|
@@ -215,6 +217,7 @@ test_files:
|
|
215
217
|
- spec/fix/bin/color_spec.rb
|
216
218
|
- spec/fix/bin/exit_status_spec.rb
|
217
219
|
- spec/fix/bin/help_spec.rb
|
220
|
+
- spec/fix/bin/hide_progress.rb
|
218
221
|
- spec/fix/bin/spec_helper.rb
|
219
222
|
- spec/fix/bin/version_spec.rb
|
220
223
|
- spec/fix/lib/may/error_spec.rb
|
@@ -258,4 +261,5 @@ test_files:
|
|
258
261
|
- spec/support/examples/duck/app.rb
|
259
262
|
- spec/support/examples/duck/success/spec.rb
|
260
263
|
- spec/support/examples/duck/success/test.rb
|
264
|
+
- spec/support/immutable.rb
|
261
265
|
has_rdoc:
|
metadata.gz.sig
CHANGED
Binary file
|