uispecrunner 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/uispecrunner/application.rb +1 -1
- data/uispecrunner.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.2
|
@@ -20,7 +20,7 @@ class UISpecRunner
|
|
20
20
|
options_file = 'uispec.opts'
|
21
21
|
if File.exists?(options_file)
|
22
22
|
option_file_args = File.readlines(options_file).map {|l| l.chomp.split " "}.flatten
|
23
|
-
options =
|
23
|
+
options = UISpecRunner::Options.new(option_file_args).merge(options)
|
24
24
|
end
|
25
25
|
|
26
26
|
runner = UISpecRunner.new(options)
|
data/uispecrunner.gemspec
CHANGED