mspec 1.7.0 → 1.8.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 +4 -4
- data/.travis.yml +9 -7
- data/lib/mspec/commands/mspec.rb +0 -8
- data/lib/mspec/guards/platform.rb +4 -0
- data/lib/mspec/helpers/environment.rb +12 -22
- data/lib/mspec/helpers/io.rb +6 -1
- data/lib/mspec/helpers/mock_to_path.rb +1 -1
- data/lib/mspec/helpers/ruby_exe.rb +8 -3
- data/lib/mspec/runner/actions.rb +0 -1
- data/lib/mspec/utils/options.rb +0 -4
- data/lib/mspec/utils/script.rb +0 -1
- data/lib/mspec/version.rb +1 -1
- data/spec/commands/mkspec_spec.rb +31 -31
- data/spec/commands/mspec_ci_spec.rb +14 -14
- data/spec/commands/mspec_run_spec.rb +4 -4
- data/spec/commands/mspec_spec.rb +33 -56
- data/spec/commands/mspec_tag_spec.rb +26 -26
- data/spec/guards/background_spec.rb +1 -1
- data/spec/guards/block_device_spec.rb +1 -1
- data/spec/guards/bug_spec.rb +4 -4
- data/spec/guards/compliance_spec.rb +2 -2
- data/spec/guards/conflict_spec.rb +5 -5
- data/spec/guards/endian_spec.rb +8 -8
- data/spec/guards/extensions_spec.rb +1 -1
- data/spec/guards/feature_spec.rb +1 -1
- data/spec/guards/guard_spec.rb +20 -20
- data/spec/guards/noncompliance_spec.rb +1 -1
- data/spec/guards/platform_spec.rb +14 -14
- data/spec/guards/quarantine_spec.rb +1 -1
- data/spec/guards/runner_spec.rb +7 -7
- data/spec/guards/specified_spec.rb +7 -7
- data/spec/guards/superuser_spec.rb +3 -3
- data/spec/guards/support_spec.rb +1 -1
- data/spec/guards/tty_spec.rb +1 -1
- data/spec/guards/user_spec.rb +3 -3
- data/spec/guards/version_spec.rb +3 -3
- data/spec/helpers/ducktype_spec.rb +3 -3
- data/spec/helpers/environment_spec.rb +18 -10
- data/spec/helpers/flunk_spec.rb +2 -2
- data/spec/helpers/io_spec.rb +2 -2
- data/spec/helpers/ruby_exe_spec.rb +5 -9
- data/spec/matchers/have_singleton_method_spec.rb +1 -1
- data/spec/matchers/output_spec.rb +1 -1
- data/spec/mocks/mock_spec.rb +41 -41
- data/spec/mocks/proxy_spec.rb +1 -1
- data/spec/runner/actions/filter_spec.rb +1 -1
- data/spec/runner/actions/tag_spec.rb +17 -17
- data/spec/runner/actions/taglist_spec.rb +8 -8
- data/spec/runner/actions/tagpurge_spec.rb +11 -11
- data/spec/runner/actions/timer_spec.rb +4 -4
- data/spec/runner/context_spec.rb +32 -32
- data/spec/runner/example_spec.rb +1 -1
- data/spec/runner/filters/profile_spec.rb +2 -2
- data/spec/runner/filters/tag_spec.rb +6 -6
- data/spec/runner/formatters/describe_spec.rb +6 -6
- data/spec/runner/formatters/dotted_spec.rb +10 -10
- data/spec/runner/formatters/file_spec.rb +2 -2
- data/spec/runner/formatters/html_spec.rb +10 -10
- data/spec/runner/formatters/junit_spec.rb +11 -11
- data/spec/runner/formatters/method_spec.rb +3 -3
- data/spec/runner/formatters/specdoc_spec.rb +1 -1
- data/spec/runner/formatters/spinner_spec.rb +4 -4
- data/spec/runner/formatters/unit_spec.rb +7 -7
- data/spec/runner/formatters/yaml_spec.rb +10 -10
- data/spec/runner/mspec_spec.rb +25 -25
- data/spec/runner/shared_spec.rb +1 -1
- data/spec/utils/options_spec.rb +28 -50
- data/spec/utils/script_spec.rb +15 -24
- metadata +12 -16
- data/lib/mspec/runner/actions/gdb.rb +0 -17
- data/spec/runner/actions/gdb_spec.rb +0 -61
data/spec/runner/shared_spec.rb
CHANGED
@@ -11,7 +11,7 @@ describe Object, "#it_behaves_like" do
|
|
11
11
|
@state.instance_variable_set :@parsed, true
|
12
12
|
|
13
13
|
@shared = ContextState.new :shared_spec, :shared => true
|
14
|
-
MSpec.stub
|
14
|
+
MSpec.stub(:retrieve_shared).and_return(@shared)
|
15
15
|
end
|
16
16
|
|
17
17
|
it "creates @method set to the name of the aliased method" do
|
data/spec/utils/options_spec.rb
CHANGED
@@ -320,8 +320,8 @@ describe MSpecOptions, "#parse" do
|
|
320
320
|
|
321
321
|
it "raises MSpecOptions::ParseError if passed an unrecognized option" do
|
322
322
|
@opt.should_receive(:raise).with(MSpecOptions::ParseError, an_instance_of(String))
|
323
|
-
@opt.stub
|
324
|
-
@opt.stub
|
323
|
+
@opt.stub(:puts)
|
324
|
+
@opt.stub(:exit)
|
325
325
|
@opt.parse "-u"
|
326
326
|
end
|
327
327
|
end
|
@@ -538,7 +538,7 @@ describe "The -t, --target TARGET option" do
|
|
538
538
|
end
|
539
539
|
|
540
540
|
it "is enabled with #targets" do
|
541
|
-
@options.stub
|
541
|
+
@options.stub(:on)
|
542
542
|
@options.should_receive(:on).with("-t", "--target", "TARGET",
|
543
543
|
an_instance_of(String))
|
544
544
|
@options.targets
|
@@ -630,7 +630,7 @@ describe "The -T, --target-opt OPT option" do
|
|
630
630
|
end
|
631
631
|
|
632
632
|
it "is enabled with #targets" do
|
633
|
-
@options.stub
|
633
|
+
@options.stub(:on)
|
634
634
|
@options.should_receive(:on).with("-T", "--target-opt", "OPT",
|
635
635
|
an_instance_of(String))
|
636
636
|
@options.targets
|
@@ -652,7 +652,7 @@ describe "The -I, --include DIR option" do
|
|
652
652
|
end
|
653
653
|
|
654
654
|
it "is enabled with #targets" do
|
655
|
-
@options.stub
|
655
|
+
@options.stub(:on)
|
656
656
|
@options.should_receive(:on).with("-I", "--include", "DIR",
|
657
657
|
an_instance_of(String))
|
658
658
|
@options.targets
|
@@ -674,7 +674,7 @@ describe "The -r, --require LIBRARY option" do
|
|
674
674
|
end
|
675
675
|
|
676
676
|
it "is enabled with #targets" do
|
677
|
-
@options.stub
|
677
|
+
@options.stub(:on)
|
678
678
|
@options.should_receive(:on).with("-r", "--require", "LIBRARY",
|
679
679
|
an_instance_of(String))
|
680
680
|
@options.targets
|
@@ -696,7 +696,7 @@ describe "The -f, --format FORMAT option" do
|
|
696
696
|
end
|
697
697
|
|
698
698
|
it "is enabled with #formatters" do
|
699
|
-
@options.stub
|
699
|
+
@options.stub(:on)
|
700
700
|
@options.should_receive(:on).with("-f", "--format", "FORMAT",
|
701
701
|
an_instance_of(String))
|
702
702
|
@options.formatters
|
@@ -820,7 +820,7 @@ describe "The -o, --output FILE option" do
|
|
820
820
|
end
|
821
821
|
|
822
822
|
it "is enabled with #formatters" do
|
823
|
-
@options.stub
|
823
|
+
@options.stub(:on)
|
824
824
|
@options.should_receive(:on).with("-o", "--output", "FILE",
|
825
825
|
an_instance_of(String))
|
826
826
|
@options.formatters
|
@@ -842,7 +842,7 @@ describe "The -e, --example STR" do
|
|
842
842
|
end
|
843
843
|
|
844
844
|
it "is enabled with #filters" do
|
845
|
-
@options.stub
|
845
|
+
@options.stub(:on)
|
846
846
|
@options.should_receive(:on).with("-e", "--example", "STR",
|
847
847
|
an_instance_of(String))
|
848
848
|
@options.filters
|
@@ -864,7 +864,7 @@ describe "The -E, --exclude STR" do
|
|
864
864
|
end
|
865
865
|
|
866
866
|
it "is enabled with #filters" do
|
867
|
-
@options.stub
|
867
|
+
@options.stub(:on)
|
868
868
|
@options.should_receive(:on).with("-E", "--exclude", "STR",
|
869
869
|
an_instance_of(String))
|
870
870
|
@options.filters
|
@@ -886,7 +886,7 @@ describe "The -p, --pattern PATTERN" do
|
|
886
886
|
end
|
887
887
|
|
888
888
|
it "is enabled with #filters" do
|
889
|
-
@options.stub
|
889
|
+
@options.stub(:on)
|
890
890
|
@options.should_receive(:on).with("-p", "--pattern", "PATTERN",
|
891
891
|
an_instance_of(String))
|
892
892
|
@options.filters
|
@@ -908,7 +908,7 @@ describe "The -P, --excl-pattern PATTERN" do
|
|
908
908
|
end
|
909
909
|
|
910
910
|
it "is enabled with #filters" do
|
911
|
-
@options.stub
|
911
|
+
@options.stub(:on)
|
912
912
|
@options.should_receive(:on).with("-P", "--excl-pattern", "PATTERN",
|
913
913
|
an_instance_of(String))
|
914
914
|
@options.filters
|
@@ -930,7 +930,7 @@ describe "The -g, --tag TAG" do
|
|
930
930
|
end
|
931
931
|
|
932
932
|
it "is enabled with #filters" do
|
933
|
-
@options.stub
|
933
|
+
@options.stub(:on)
|
934
934
|
@options.should_receive(:on).with("-g", "--tag", "TAG",
|
935
935
|
an_instance_of(String))
|
936
936
|
@options.filters
|
@@ -952,7 +952,7 @@ describe "The -G, --excl-tag TAG" do
|
|
952
952
|
end
|
953
953
|
|
954
954
|
it "is enabled with #filters" do
|
955
|
-
@options.stub
|
955
|
+
@options.stub(:on)
|
956
956
|
@options.should_receive(:on).with("-G", "--excl-tag", "TAG",
|
957
957
|
an_instance_of(String))
|
958
958
|
@options.filters
|
@@ -974,7 +974,7 @@ describe "The -w, --profile FILE option" do
|
|
974
974
|
end
|
975
975
|
|
976
976
|
it "is enabled with #filters" do
|
977
|
-
@options.stub
|
977
|
+
@options.stub(:on)
|
978
978
|
@options.should_receive(:on).with("-w", "--profile", "FILE",
|
979
979
|
an_instance_of(String))
|
980
980
|
@options.filters
|
@@ -996,7 +996,7 @@ describe "The -W, --excl-profile FILE option" do
|
|
996
996
|
end
|
997
997
|
|
998
998
|
it "is enabled with #filters" do
|
999
|
-
@options.stub
|
999
|
+
@options.stub(:on)
|
1000
1000
|
@options.should_receive(:on).with("-W", "--excl-profile", "FILE",
|
1001
1001
|
an_instance_of(String))
|
1002
1002
|
@options.filters
|
@@ -1054,7 +1054,7 @@ describe "The --unguarded option" do
|
|
1054
1054
|
end
|
1055
1055
|
|
1056
1056
|
it "is enabled with #unguarded" do
|
1057
|
-
@options.stub
|
1057
|
+
@options.stub(:on)
|
1058
1058
|
@options.should_receive(:on).with("--unguarded", an_instance_of(String))
|
1059
1059
|
@options.unguarded
|
1060
1060
|
end
|
@@ -1072,7 +1072,7 @@ describe "The --no-ruby_guard option" do
|
|
1072
1072
|
end
|
1073
1073
|
|
1074
1074
|
it "is enabled with #unguarded" do
|
1075
|
-
@options.stub
|
1075
|
+
@options.stub(:on)
|
1076
1076
|
@options.should_receive(:on).with("--no-ruby_bug", an_instance_of(String))
|
1077
1077
|
@options.unguarded
|
1078
1078
|
end
|
@@ -1133,7 +1133,7 @@ describe "The -V, --verbose option" do
|
|
1133
1133
|
end
|
1134
1134
|
|
1135
1135
|
it "is enabled with #verbose" do
|
1136
|
-
@options.stub
|
1136
|
+
@options.stub(:on)
|
1137
1137
|
@options.should_receive(:on).with("-V", "--verbose", an_instance_of(String))
|
1138
1138
|
@options.verbose
|
1139
1139
|
end
|
@@ -1154,7 +1154,7 @@ describe "The -m, --marker MARKER option" do
|
|
1154
1154
|
end
|
1155
1155
|
|
1156
1156
|
it "is enabled with #verbose" do
|
1157
|
-
@options.stub
|
1157
|
+
@options.stub(:on)
|
1158
1158
|
@options.should_receive(:on).with("-m", "--marker", "MARKER",
|
1159
1159
|
an_instance_of(String))
|
1160
1160
|
@options.verbose
|
@@ -1193,7 +1193,7 @@ describe "The -Y, --verify option" do
|
|
1193
1193
|
end
|
1194
1194
|
|
1195
1195
|
it "is enabled with #interrupt" do
|
1196
|
-
@options.stub
|
1196
|
+
@options.stub(:on)
|
1197
1197
|
@options.should_receive(:on).with("-Y", "--verify", an_instance_of(String))
|
1198
1198
|
@options.verify
|
1199
1199
|
end
|
@@ -1213,7 +1213,7 @@ describe "The -O, --report option" do
|
|
1213
1213
|
end
|
1214
1214
|
|
1215
1215
|
it "is enabled with #interrupt" do
|
1216
|
-
@options.stub
|
1216
|
+
@options.stub(:on)
|
1217
1217
|
@options.should_receive(:on).with("-O", "--report", an_instance_of(String))
|
1218
1218
|
@options.verify
|
1219
1219
|
end
|
@@ -1228,7 +1228,7 @@ end
|
|
1228
1228
|
|
1229
1229
|
describe "The --report-on GUARD option" do
|
1230
1230
|
before :all do
|
1231
|
-
MSpec.stub
|
1231
|
+
MSpec.stub(:register_mode)
|
1232
1232
|
end
|
1233
1233
|
|
1234
1234
|
before :each do
|
@@ -1243,7 +1243,7 @@ describe "The --report-on GUARD option" do
|
|
1243
1243
|
end
|
1244
1244
|
|
1245
1245
|
it "is enabled with #interrupt" do
|
1246
|
-
@options.stub
|
1246
|
+
@options.stub(:on)
|
1247
1247
|
@options.should_receive(:on).with("--report-on", "GUARD", an_instance_of(String))
|
1248
1248
|
@options.verify
|
1249
1249
|
end
|
@@ -1254,7 +1254,7 @@ describe "The --report-on GUARD option" do
|
|
1254
1254
|
end
|
1255
1255
|
|
1256
1256
|
it "converts the guard name to a symbol" do
|
1257
|
-
name =
|
1257
|
+
name = double("ruby_bug")
|
1258
1258
|
name.should_receive(:to_sym)
|
1259
1259
|
@options.parse ["--report-on", name]
|
1260
1260
|
end
|
@@ -1272,7 +1272,7 @@ describe "The -K, --action-tag TAG option" do
|
|
1272
1272
|
end
|
1273
1273
|
|
1274
1274
|
it "is enabled with #action_filters" do
|
1275
|
-
@options.stub
|
1275
|
+
@options.stub(:on)
|
1276
1276
|
@options.should_receive(:on).with("-K", "--action-tag", "TAG",
|
1277
1277
|
an_instance_of(String))
|
1278
1278
|
@options.action_filters
|
@@ -1294,7 +1294,7 @@ describe "The -S, --action-string STR option" do
|
|
1294
1294
|
end
|
1295
1295
|
|
1296
1296
|
it "is enabled with #action_filters" do
|
1297
|
-
@options.stub
|
1297
|
+
@options.stub(:on)
|
1298
1298
|
@options.should_receive(:on).with("-S", "--action-string", "STR",
|
1299
1299
|
an_instance_of(String))
|
1300
1300
|
@options.action_filters
|
@@ -1309,28 +1309,6 @@ describe "The -S, --action-string STR option" do
|
|
1309
1309
|
end
|
1310
1310
|
end
|
1311
1311
|
|
1312
|
-
describe "The --spec-gdb option" do
|
1313
|
-
before :each do
|
1314
|
-
@options, @config = new_option
|
1315
|
-
@options.actions
|
1316
|
-
end
|
1317
|
-
|
1318
|
-
it "is enabled with #actions" do
|
1319
|
-
@options.stub!(:on)
|
1320
|
-
@options.should_receive(:on).with("--spec-gdb", an_instance_of(String))
|
1321
|
-
@options.actions
|
1322
|
-
end
|
1323
|
-
|
1324
|
-
it "enables triggering the gdb debugger" do
|
1325
|
-
@options.action_filters
|
1326
|
-
@options.parse ["-S", "some spec"]
|
1327
|
-
|
1328
|
-
@config[:gdb] = nil
|
1329
|
-
@options.parse "--spec-gdb"
|
1330
|
-
@config[:gdb].should == true
|
1331
|
-
end
|
1332
|
-
end
|
1333
|
-
|
1334
1312
|
describe "The -d, --debug option" do
|
1335
1313
|
before :each do
|
1336
1314
|
@options, @config = new_option
|
@@ -1342,7 +1320,7 @@ describe "The -d, --debug option" do
|
|
1342
1320
|
end
|
1343
1321
|
|
1344
1322
|
it "is enabled with #debug" do
|
1345
|
-
@options.stub
|
1323
|
+
@options.stub(:on)
|
1346
1324
|
@options.should_receive(:on).with("-d", "--debug", an_instance_of(String))
|
1347
1325
|
@options.debug
|
1348
1326
|
end
|
data/spec/utils/script_spec.rb
CHANGED
@@ -3,7 +3,6 @@ require 'mspec/utils/script'
|
|
3
3
|
require 'mspec/runner/mspec'
|
4
4
|
require 'mspec/runner/filters'
|
5
5
|
require 'mspec/runner/actions/filter'
|
6
|
-
require 'mspec/runner/actions/gdb'
|
7
6
|
|
8
7
|
describe MSpecScript, ".config" do
|
9
8
|
it "returns a Hash" do
|
@@ -54,7 +53,7 @@ describe MSpecScript, "#load_default" do
|
|
54
53
|
@engine = Object.const_get :RUBY_ENGINE
|
55
54
|
end
|
56
55
|
@script = MSpecScript.new
|
57
|
-
MSpecScript.stub
|
56
|
+
MSpecScript.stub(:new).and_return(@script)
|
58
57
|
end
|
59
58
|
|
60
59
|
after :each do
|
@@ -63,7 +62,7 @@ describe MSpecScript, "#load_default" do
|
|
63
62
|
end
|
64
63
|
|
65
64
|
it "attempts to load 'default.mspec'" do
|
66
|
-
@script.stub
|
65
|
+
@script.stub(:load)
|
67
66
|
@script.should_receive(:load).with('default.mspec').and_return(true)
|
68
67
|
@script.load_default
|
69
68
|
end
|
@@ -80,8 +79,8 @@ end
|
|
80
79
|
|
81
80
|
describe MSpecScript, ".main" do
|
82
81
|
before :each do
|
83
|
-
@script =
|
84
|
-
MSpecScript.stub
|
82
|
+
@script = double("MSpecScript").as_null_object
|
83
|
+
MSpecScript.stub(:new).and_return(@script)
|
85
84
|
end
|
86
85
|
|
87
86
|
it "creates an instance of MSpecScript" do
|
@@ -142,7 +141,7 @@ end
|
|
142
141
|
|
143
142
|
describe MSpecScript, "#load" do
|
144
143
|
before :each do
|
145
|
-
File.stub
|
144
|
+
File.stub(:exist?).and_return(false)
|
146
145
|
@script = MSpecScript.new
|
147
146
|
@file = "default.mspec"
|
148
147
|
@base = "default"
|
@@ -202,7 +201,7 @@ describe MSpecScript, "#custom_options" do
|
|
202
201
|
end
|
203
202
|
|
204
203
|
it "prints 'None'" do
|
205
|
-
options =
|
204
|
+
options = double("options")
|
206
205
|
options.should_receive(:doc).with(" No custom options registered")
|
207
206
|
@script.custom_options options
|
208
207
|
end
|
@@ -212,7 +211,7 @@ describe MSpecScript, "#register" do
|
|
212
211
|
before :each do
|
213
212
|
@script = MSpecScript.new
|
214
213
|
|
215
|
-
@formatter =
|
214
|
+
@formatter = double("formatter").as_null_object
|
216
215
|
@script.config[:formatter] = @formatter
|
217
216
|
end
|
218
217
|
|
@@ -233,7 +232,7 @@ describe MSpecScript, "#register" do
|
|
233
232
|
end
|
234
233
|
|
235
234
|
it "registers :formatter with the formatter instance" do
|
236
|
-
@formatter.stub
|
235
|
+
@formatter.stub(:new).and_return(@formatter)
|
237
236
|
MSpec.should_receive(:store).with(:formatter, @formatter)
|
238
237
|
@script.register
|
239
238
|
end
|
@@ -249,10 +248,10 @@ describe MSpecScript, "#register" do
|
|
249
248
|
before :each do
|
250
249
|
@script = MSpecScript.new
|
251
250
|
|
252
|
-
@formatter =
|
251
|
+
@formatter = double("formatter").as_null_object
|
253
252
|
@script.config[:formatter] = @formatter
|
254
253
|
|
255
|
-
@filter =
|
254
|
+
@filter = double("filter")
|
256
255
|
@filter.should_receive(:register)
|
257
256
|
|
258
257
|
@ary = ["some", "spec"]
|
@@ -305,14 +304,6 @@ describe MSpecScript, "#register" do
|
|
305
304
|
@script.config[:xprofiles] = @ary
|
306
305
|
@script.register
|
307
306
|
end
|
308
|
-
|
309
|
-
it "creates and registers a GdbAction for excluded specs" do
|
310
|
-
@script.config[:atags] = ["some"]
|
311
|
-
@script.config[:astrings] = ["string"]
|
312
|
-
GdbAction.should_receive(:new).with(["some"], ["string"]).and_return(@filter)
|
313
|
-
@script.config[:gdb] = true
|
314
|
-
@script.register
|
315
|
-
end
|
316
307
|
end
|
317
308
|
|
318
309
|
describe MSpecScript, "#signals" do
|
@@ -342,9 +333,9 @@ describe MSpecScript, "#entries" do
|
|
342
333
|
before :each do
|
343
334
|
@script = MSpecScript.new
|
344
335
|
|
345
|
-
File.stub
|
346
|
-
File.stub
|
347
|
-
File.stub
|
336
|
+
File.stub(:expand_path).and_return("name")
|
337
|
+
File.stub(:file?).and_return(false)
|
338
|
+
File.stub(:directory?).and_return(false)
|
348
339
|
end
|
349
340
|
|
350
341
|
it "returns the pattern in an array if it is a file" do
|
@@ -355,7 +346,7 @@ describe MSpecScript, "#entries" do
|
|
355
346
|
|
356
347
|
it "returns Dir['pattern/**/*_spec.rb'] if pattern is a directory" do
|
357
348
|
File.should_receive(:directory?).with("name").and_return(true)
|
358
|
-
File.stub
|
349
|
+
File.stub(:expand_path).and_return("name","name/**/*_spec.rb")
|
359
350
|
Dir.should_receive(:[]).with("name/**/*_spec.rb").and_return(["dir1", "dir2"])
|
360
351
|
@script.entries("name").should == ["dir1", "dir2"]
|
361
352
|
end
|
@@ -379,7 +370,7 @@ describe MSpecScript, "#entries" do
|
|
379
370
|
end
|
380
371
|
|
381
372
|
it "returns Dir['pattern/**/*_spec.rb'] if pattern is a directory" do
|
382
|
-
File.stub
|
373
|
+
File.stub(:expand_path).and_return(@name, @name+"/**/*_spec.rb")
|
383
374
|
File.should_receive(:directory?).with(@name).and_return(true)
|
384
375
|
Dir.should_receive(:[]).with(@name + "/**/*_spec.rb").and_return(["dir1", "dir2"])
|
385
376
|
@script.entries("name").should == ["dir1", "dir2"]
|
metadata
CHANGED
@@ -1,46 +1,45 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Shirai
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
|
15
|
-
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '10.0'
|
20
|
-
|
20
|
+
type: :development
|
21
21
|
prerelease: false
|
22
|
-
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '10.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
|
29
|
-
|
28
|
+
name: rspec
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '2.8'
|
34
|
-
|
34
|
+
type: :development
|
35
35
|
prerelease: false
|
36
|
-
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '2.8'
|
41
|
-
description:
|
42
|
-
|
43
|
-
'
|
41
|
+
description: |
|
42
|
+
MSpec is a specialized framework for RubySpec.
|
44
43
|
email:
|
45
44
|
- bshirai@engineyard.com
|
46
45
|
executables:
|
@@ -169,7 +168,6 @@ files:
|
|
169
168
|
- lib/mspec/runner.rb
|
170
169
|
- lib/mspec/runner/actions.rb
|
171
170
|
- lib/mspec/runner/actions/filter.rb
|
172
|
-
- lib/mspec/runner/actions/gdb.rb
|
173
171
|
- lib/mspec/runner/actions/tag.rb
|
174
172
|
- lib/mspec/runner/actions/taglist.rb
|
175
173
|
- lib/mspec/runner/actions/tagpurge.rb
|
@@ -300,7 +298,6 @@ files:
|
|
300
298
|
- spec/mocks/mock_spec.rb
|
301
299
|
- spec/mocks/proxy_spec.rb
|
302
300
|
- spec/runner/actions/filter_spec.rb
|
303
|
-
- spec/runner/actions/gdb_spec.rb
|
304
301
|
- spec/runner/actions/tag_spec.rb
|
305
302
|
- spec/runner/actions/taglist_spec.rb
|
306
303
|
- spec/runner/actions/tagpurge_spec.rb
|
@@ -460,7 +457,6 @@ test_files:
|
|
460
457
|
- spec/mocks/mock_spec.rb
|
461
458
|
- spec/mocks/proxy_spec.rb
|
462
459
|
- spec/runner/actions/filter_spec.rb
|
463
|
-
- spec/runner/actions/gdb_spec.rb
|
464
460
|
- spec/runner/actions/tag_spec.rb
|
465
461
|
- spec/runner/actions/taglist_spec.rb
|
466
462
|
- spec/runner/actions/tagpurge_spec.rb
|