Will Rspec2 and Cucumber be brought into MacRuby for test first? If not what framework will be used?
RSpec2 should be working, I'm not sure about cucumber. I personally prefer minitest but that's just because I like simple implementations (especially when they ship with the language) with dark magic and I don't mind asserting instead of "shoulding". - Matt On Sat, Jan 1, 2011 at 3:55 AM, Ryan Davis <ryand-ruby@zenspider.com> wrote:
On Dec 31, 2010, at 18:26 , Brad Hutchins wrote:
Will Rspec2 and Cucumber be brought into MacRuby for test first? If not what framework will be used?
brought into? do they not work as gems with macruby?
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Rspec2 will work in some cases, have different behaviour from CRuby sometimes, and segfault other times. I just started playing with Rspec2 recently and intend to log more bugs when I can reduce them. On 2010-12-31, at 10:04 PM, Matt Aimonetti wrote:
RSpec2 should be working, I'm not sure about cucumber. I personally prefer minitest but that's just because I like simple implementations (especially when they ship with the language) with dark magic and I don't mind asserting instead of "shoulding".
- Matt
On Sat, Jan 1, 2011 at 3:55 AM, Ryan Davis <ryand-ruby@zenspider.com> wrote:
On Dec 31, 2010, at 18:26 , Brad Hutchins wrote:
Will Rspec2 and Cucumber be brought into MacRuby for test first? If not what framework will be used?
brought into? do they not work as gems with macruby?
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Thanks Mark, filing bugs would def. help. - Matt Sent from my iPhone On Jan 2, 2011, at 23:43, Mark Rada <mrada@marketcircle.com> wrote:
Rspec2 will work in some cases, have different behaviour from CRuby sometimes, and segfault other times.
I just started playing with Rspec2 recently and intend to log more bugs when I can reduce them.
On 2010-12-31, at 10:04 PM, Matt Aimonetti wrote:
RSpec2 should be working, I'm not sure about cucumber. I personally prefer minitest but that's just because I like simple implementations (especially when they ship with the language) with dark magic and I don't mind asserting instead of "shoulding".
- Matt
On Sat, Jan 1, 2011 at 3:55 AM, Ryan Davis <ryand-ruby@zenspider.com> wrote:
On Dec 31, 2010, at 18:26 , Brad Hutchins wrote:
Will Rspec2 and Cucumber be brought into MacRuby for test first? If not what framework will be used?
brought into? do they not work as gems with macruby?
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
One of the things that I liked about Ruby on Rails from the start was its use of a regular directory layout, allowing both code and coders to know where to look for things. I'm currently developing a Rails-inspired framework aimed at making Google SketchUp plugins easier and safer to write. So, I've been looking hard at the conventions (eg, directory layout, file naming) used by Rails and inventing others if I can't find a suitable one to steal. The recent thread on testing made me remember a question I've had for some time. Are there documented Best Practices for MacRuby app organization? I'd assume that these would start with the organizations used by Xcode and the packaging tool, but I could also imagine slots for documentation, tests, etc. Can anyone give me pointers and/or a rundown on the current situation? -r -- http://www.cfcl.com/rdm Rich Morin http://www.cfcl.com/rdm/resume rdm@cfcl.com http://www.cfcl.com/rdm/weblog +1 650-873-7841 Software system design, development, and documentation
The recommendation is to stick to Xcode conventions. - Matt Sent from my iPhone On Jan 1, 2011, at 22:29, Rich Morin <rdm@cfcl.com> wrote:
One of the things that I liked about Ruby on Rails from the start was its use of a regular directory layout, allowing both code and coders to know where to look for things.
I'm currently developing a Rails-inspired framework aimed at making Google SketchUp plugins easier and safer to write. So, I've been looking hard at the conventions (eg, directory layout, file naming) used by Rails and inventing others if I can't find a suitable one to steal.
The recent thread on testing made me remember a question I've had for some time. Are there documented Best Practices for MacRuby app organization? I'd assume that these would start with the organizations used by Xcode and the packaging tool, but I could also imagine slots for documentation, tests, etc.
Can anyone give me pointers and/or a rundown on the current situation?
-r -- http://www.cfcl.com/rdm Rich Morin http://www.cfcl.com/rdm/resume rdm@cfcl.com http://www.cfcl.com/rdm/weblog +1 650-873-7841
Software system design, development, and documentation _______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
I've seen Apple's “File System Overview,” at http://developer.apple.com/library/mac/#documentation/MacOSX/Conceptual/BPFi... Is there something similar for the XCode structure? -- http://josephholsten.com On Jan 1, 2011, at 6:13 PM, Matt Aimonetti wrote:
The recommendation is to stick to Xcode conventions.
- Matt
Sent from my iPhone
On Jan 1, 2011, at 22:29, Rich Morin <rdm@cfcl.com> wrote:
One of the things that I liked about Ruby on Rails from the start was its use of a regular directory layout, allowing both code and coders to know where to look for things.
I'm currently developing a Rails-inspired framework aimed at making Google SketchUp plugins easier and safer to write. So, I've been looking hard at the conventions (eg, directory layout, file naming) used by Rails and inventing others if I can't find a suitable one to steal.
The recent thread on testing made me remember a question I've had for some time. Are there documented Best Practices for MacRuby app organization? I'd assume that these would start with the organizations used by Xcode and the packaging tool, but I could also imagine slots for documentation, tests, etc.
Can anyone give me pointers and/or a rundown on the current situation?
-r -- http://www.cfcl.com/rdm Rich Morin http://www.cfcl.com/rdm/resume rdm@cfcl.com http://www.cfcl.com/rdm/weblog +1 650-873-7841
Software system design, development, and documentation _______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
On Jan 1, 2011, at 3:29 PM, Rich Morin wrote:
Are there documented Best Practices for MacRuby app organization? I'd assume that these would start with the organizations used by Xcode and the packaging tool, but I could also imagine slots for documentation, tests, etc.
The rip folks have been rethinking standard gem directory structure to be more similar to the normal /etc stuff. I'd also recommend you think about ye olde autoconf's structure, while though old, crufty and unpleasant, has a place for everything. See http://www.gnu.org/software/autoconf/manual/autoconf.html#Installation-Direc... One thing I wouldn't know where to put in my repo is the stuff autoconf would put in datadir. I think this stuff would normally end installed in Foo.app/Contents/Resources/. -- http://josephholsten.com
Hi Brad, MacRuby already ships with a testing framework, but you can install others using macgem. In case you find a problem, please report it to us on the bug tracker. Laurent On Dec 31, 2010, at 6:26 PM, Brad Hutchins wrote:
Will Rspec2 and Cucumber be brought into MacRuby for test first? If not what framework will be used? _______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
participants (7)
-
Brad Hutchins
-
Joseph Anthony Pasquale Holsten
-
Laurent Sansonetti
-
Mark Rada
-
Matt Aimonetti
-
Rich Morin
-
Ryan Davis