Where do I put cucumber.yml? I can''t find anything mentioned in the documentation. Thanks John Small -- Posted via http://www.ruby-forum.com/.
On Thu, Mar 5, 2009 at 8:21 AM, John Small <lists at ruby-forum.com> wrote:> Where do I put cucumber.yml? I can''t find anything mentioned in the > documentation.In the project root (or wherever you''re typing commands from). Cheers, David> > Thanks > > John Small > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
David Chelimsky wrote:> On Thu, Mar 5, 2009 at 8:21 AM, John Small <lists at ruby-forum.com> wrote: >> Where do I put cucumber.yml? I can''t find anything mentioned in the >> documentation. > > In the project root (or wherever you''re typing commands from). > > Cheers, > DavidOk, I tried config and features to no avail, I guess that''s the only option left Is this documented anywhere, or are people expected to just know it? Ta John Small -- Posted via http://www.ruby-forum.com/.
On Thu, Mar 5, 2009 at 3:21 PM, John Small <lists at ruby-forum.com> wrote:> Where do I put cucumber.yml? I can''t find anything mentioned in the > documentation. >Here it is: http://wiki.github.com/aslakhellesoy/cucumber/running-features Aslak> Thanks > > John Small > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >-- Aslak (::)
On Thu, Mar 5, 2009 at 4:43 PM, John Small <lists at ruby-forum.com> wrote:> David Chelimsky wrote: >> On Thu, Mar 5, 2009 at 8:21 AM, John Small <lists at ruby-forum.com> wrote: >>> Where do I put cucumber.yml? I can''t find anything mentioned in the >>> documentation. >> >> In the project root (or wherever you''re typing commands from). >> >> Cheers, >> David > > Ok, I tried config and features to no avail, I guess that''s the only > option left > > Is this documented anywhere, or are people expected to just know it? >You didn''t read the mail I sent 20 minutes ago? http://wiki.github.com/aslakhellesoy/cucumber/running-features Aslak> Ta > > John Small > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >-- Aslak (::)
r_j_h_box-sf at yahoo.com
2009-Mar-05 17:12 UTC
[rspec-users] where does cucumber.yml live?
----- Original Message ----> From: John Small <lists at ruby-forum.com>[David:]> > In the project root (or wherever you''re typing commands from).> Is this documented anywhere, or are people expected to just know it?I added the information to the wiki in one or two places, having been bitten by the same expectation you had, and having read through the code that seeks out that file. I think it should look in places named in the options, plus the config/ directory, personally. The config directory is where I''d want to put it, but not every project in the world is a rails project, so I add a grain of salt to that impulse. Randy
On Thu, Mar 5, 2009 at 6:12 PM, <r_j_h_box-sf at yahoo.com> wrote:> > > > > > ----- Original Message ---- >> From: John Small <lists at ruby-forum.com> > [David:] >> > In the project root (or wherever you''re typing commands from). > >> Is this documented anywhere, or are people expected to just know it? > > I added the information to the wiki in one or two places, having been bitten by the same expectation you had, and having read through the code that seeks out that file. > > I think it should look in places named in the options, plus the config/ directory, personally. ?The config directory is where I''d want to put it, but not every project in the world is a rails project, so I add a grain of salt to that impulse. >Randy, John: You really don''t read my responses, do you? Or is there some gmail lag issue going on here? Aslak> Randy > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >-- Aslak (::)
On Thu, Mar 5, 2009 at 10:55 AM, aslak hellesoy <aslak.hellesoy at gmail.com> wrote:> On Thu, Mar 5, 2009 at 4:43 PM, John Small <lists at ruby-forum.com> wrote: >> David Chelimsky wrote: >>> On Thu, Mar 5, 2009 at 8:21 AM, John Small <lists at ruby-forum.com> wrote: >>>> Where do I put cucumber.yml? I can''t find anything mentioned in the >>>> documentation. >>> >>> In the project root (or wherever you''re typing commands from). >>> >>> Cheers, >>> David >> >> Ok, I tried config and features to no avail, I guess that''s the only >> option left >> >> Is this documented anywhere, or are people expected to just know it? >> > > You didn''t read the mail I sent 20 minutes ago? > > http://wiki.github.com/aslakhellesoy/cucumber/running-featuresSince ppl are having a hard time finding this, I added http://wiki.github.com/aslakhellesoy/cucumber/cucumberyml, which references http://wiki.github.com/aslakhellesoy/cucumber/running-features. I also changed the header of the relevant section to "Defining ?profiles? in cucumber.yml" Should be easy to find now. Cheers, David> > Aslak > >> Ta >> >> John Small >> -- >> Posted via http://www.ruby-forum.com/. >> _______________________________________________ >> rspec-users mailing list >> rspec-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/rspec-users >> > > > > -- > Aslak (::) > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
r_j_h_box-sf at yahoo.com
2009-Mar-05 18:16 UTC
[rspec-users] where does cucumber.yml live?
Aslak:> some gmail lag issue going on here?Not sure who''s causing the lag, but yeah. My hope was to help in a way that I could, freeing the "big guns" to focus on things I''m less suited for at this moment. Randy
That reminds me: Was there a reason for using <file>:<line> to run a feature at a line instead of spec''s -l <line> ? ///ark
Mark Wilden wrote:> That reminds me: Was there a reason for using <file>:<line> to run a > feature at a line instead of spec''s -l <line> ? > > ///ark > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >I think it was to keep in line with how Cucumber outputs the backtrace in the CLI. So you can simply copy and paste the line from the output to run just that one scenario. I actually much prefer the concise notation and I would like to see RSpec adopt it. -Ben
Ben Mabey wrote:> Mark Wilden wrote: >> That reminds me: Was there a reason for using <file>:<line> to run a >> feature at a line instead of spec''s -l <line> ? >> >> ///ark >> _______________________________________________ >> rspec-users mailing list >> rspec-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/rspec-users >> > I think it was to keep in line with how Cucumber outputs the backtrace > in the CLI. So you can simply copy and paste the line from the output > to run just that one scenario. > > I actually much prefer the concise notation and I would like to see > RSpec adopt it. >Exactly as Ben said. In addition it was also used as it made it nicer when running multiple lines in the same file file:10:11:14:15 -- Joseph Wilk http://blog.josephwilk.net> -Ben > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
On Thu, Mar 5, 2009 at 3:30 PM, Ben Mabey <ben at benmabey.com> wrote:> Mark Wilden wrote: >> >> That reminds me: Was there a reason for using <file>:<line> to run a >> feature at a line instead of spec''s -l <line> ? >> >> ///ark >> _______________________________________________ >> rspec-users mailing list >> rspec-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/rspec-users >> > > I think it was to keep in line with how Cucumber outputs the backtrace in > the CLI. ?So you can simply copy and paste the line from the output to run > just that one scenario. > > I actually much prefer the concise notation and I would like to see RSpec > adopt it.I agree. RSpec will adopt it as soon as it receives your patch :)> > -Ben > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
On Thu, Mar 5, 2009 at 2:47 PM, David Chelimsky <dchelimsky at gmail.com> wrote:>> >> I actually much prefer the concise notation and I would like to see RSpec >> adopt it. > > I agree. RSpec will adopt it as soon as it receives your patch :)That would be great. I''ve been used to seeing the colon notation for a quarter of a century. :) ///ark
David Chelimsky wrote:> On Thu, Mar 5, 2009 at 3:30 PM, Ben Mabey <ben at benmabey.com> wrote: > >> Mark Wilden wrote: >> >>> That reminds me: Was there a reason for using <file>:<line> to run a >>> feature at a line instead of spec''s -l <line> ? >>> >>> ///ark >>> _______________________________________________ >>> rspec-users mailing list >>> rspec-users at rubyforge.org >>> http://rubyforge.org/mailman/listinfo/rspec-users >>> >>> >> I think it was to keep in line with how Cucumber outputs the backtrace in >> the CLI. So you can simply copy and paste the line from the output to run >> just that one scenario. >> >> I actually much prefer the concise notation and I would like to see RSpec >> adopt it. >> > > I agree. RSpec will adopt it as soon as it receives your patch :) >I really need to stop suggesting things on this list... :)> >> -Ben >> _______________________________________________ >> rspec-users mailing list >> rspec-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/rspec-users >> >> > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
On Thu, Mar 5, 2009 at 6:30 PM, Ben Mabey <ben at benmabey.com> wrote:> David Chelimsky wrote: >> >> On Thu, Mar 5, 2009 at 3:30 PM, Ben Mabey <ben at benmabey.com> wrote: >> >>> >>> Mark Wilden wrote: >>> >>>> >>>> That reminds me: Was there a reason for using <file>:<line> to run a >>>> feature at a line instead of spec''s -l <line> ? >>>> >>>> ///ark >>>> _______________________________________________ >>>> rspec-users mailing list >>>> rspec-users at rubyforge.org >>>> http://rubyforge.org/mailman/listinfo/rspec-users >>>> >>>> >>> >>> I think it was to keep in line with how Cucumber outputs the backtrace in >>> the CLI. ?So you can simply copy and paste the line from the output to >>> run >>> just that one scenario. >>> >>> I actually much prefer the concise notation and I would like to see RSpec >>> adopt it. >>> >> >> I agree. RSpec will adopt it as soon as it receives your patch :) >> > > I really need to stop suggesting things on this list... ?:):)
David Chelimsky wrote in post #790531:>> http://wiki.github.com/aslakhellesoy/cucumber/running-features > > Since ppl are having a hard time finding this, I added > http://wiki.github.com/aslakhellesoy/cucumber/cucumberyml, which > references > http://wiki.github.com/aslakhellesoy/cucumber/running-features.I know this post is from a few years ago, and so these links are broken now. Any updated links have the same information? -- Posted via http://www.ruby-forum.com/.
On Jan 6, 2012, at 3:49 PM, Gayle C. wrote:> David Chelimsky wrote in post #790531: >>> http://wiki.github.com/aslakhellesoy/cucumber/running-features >> >> Since ppl are having a hard time finding this, I added >> http://wiki.github.com/aslakhellesoy/cucumber/cucumberyml, which >> references >> http://wiki.github.com/aslakhellesoy/cucumber/running-features. > > > I know this post is from a few years ago, and so these > links are broken now. Any updated links have the same information? > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-usersAll I see is links to Cucumber. Maybe try the Cucumber mailing list?
On 6 Jan 2012, at 23:03, Justin Ko wrote:> All I see is links to Cucumber. Maybe try the Cucumber mailing list?I''m curious - why after all these years do so many Cucumber-related issues still get posted on the RSpec list? Is there an outdated FAQ lurking somewhere? Ash -- http://www.patchspace.co.uk/ http://www.linkedin.com/in/ashmoran
Gayle, I''ve set a reply-to pointing to the cucumber list. I''d advise going to http://groups.google.com/group/cukes and joining that list. On 1/6/12 5:49 PM, Gayle C. wrote:> David Chelimsky wrote in post #790531: >>> http://wiki.github.com/aslakhellesoy/cucumber/running-features >> >> Since ppl are having a hard time finding this, I added >> http://wiki.github.com/aslakhellesoy/cucumber/cucumberyml, which >> references >> http://wiki.github.com/aslakhellesoy/cucumber/running-features. > > > I know this post is from a few years ago, and so these > links are broken now. Any updated links have the same information?https://github.com/cucumber/cucumber/wiki/cucumber.yml https://github.com/cucumber/cucumber/wiki/Running-Features - George -- ---------------------------------------------------------------------- * George Dinwiddie * http://blog.gdinwiddie.com Software Development http://www.idiacomputing.com Consultant and Coach http://www.agilemaryland.org ----------------------------------------------------------------------