Как передать опцию -f specdoc через грабли - PullRequest
6 голосов
/ 23 мая 2010

Я использую рельсы 2.3.5. Спецификация rake работает нормально.

Это из спецификации --help.

spec --help

-f, --format FORMAT[:WHERE]      Specifies what format to use for output. Specify WHERE to tell
                                    the formatter where to write the output. All built-in formats
                                    expect WHERE to be a file name, and will write to $stdout if it's
                                    not specified. The --format option may be specified several times
                                    if you want several outputs

                                    Builtin formats:
                                    silent|l                 : No output
                                    progress|p               : Text-based progress bar
                                    profile|o                : Text-based progress bar with profiling of 10 slowest examples
                                    specdoc|s                : Code example doc strings
                                    nested|n                 : Code example doc strings with nested groups indented
                                    html|h                   : A nice HTML report
                                    failing_examples|e       : Write all failing examples - input for --example

                                failing_example_groups|g : Write all failing example groups - input for --example

Как передать -f specdoc через задачу rake.

Ответы [ 2 ]

8 голосов
/ 01 февраля 2011

Добавьте или отредактируйте файл .rspec в корневой каталог rails. Например, моя теперь содержит следующие параметры:

--colour
--format documentation

Обратите внимание, что новым именем для формата specdoc является документация в RSpec 2.1.

7 голосов
/ 09 ноября 2012

rake spec будет учитывать переменную окружения SPEC_OPTS.

rake spec SPEC_OPTS="--format specdoc"
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...