Camping on Wikipedia

2010-08-24 Thread Dave Everitt
The Wikipedia article on Camping: http://en.wikipedia.org/wiki/Camping_(microframework) has a warning at the top asking for more independent sources on Camping. Can you please add any books or articles (not by _Why) that mention Camping (post-1.5), or web articles that - say - survey

Re: Philosophy

2010-08-24 Thread Dave Everitt
Fine with me. I'd like the idea of collating and condensing our statements about it, and putting them somewhere too. I might do that - Dave http://github.com/camping/camping/wiki/Philosophy Whatcha guys think? ___ Camping-list mailing list

Junebug Wiki

2010-08-24 Thread Dave Everitt
Does anyone know if there's a community-maintained version of Julik Tarkhanov's Camping-related stuff (e.g. the Camping-based Junebug Wiki http://rubyforge.org/projects/junebug/)? The last update I can find is from 2007, just wondering if anyone's tried it with Camping 2.1. Otherwise I'll

Re: Philosophy

2010-08-24 Thread Peter Retief
OK is good enough for me Thanks On 24 August 2010 14:59, Steve Klabnik st...@steveklabnik.com wrote: The organizers of RubyConf said that he's okay. ___ Camping-list mailing list Camping-list@rubyforge.org

Re: making create environmentally aware

2010-08-24 Thread Magnus Holm
Why don't add this? def App.create(env = :development) end And in production, you can call App.create(:production) yourself. // Magnus Holm On Tue, Aug 24, 2010 at 15:36, David Susco dsu...@gmail.com wrote: Not talking about having it recycle (I assume all Camping apps have a small

Re: making create environmentally aware

2010-08-24 Thread David Susco
Ya, that's what I'm doing. Just wondering if there was another way to go about it. I modified your camping-test/base file to call 'create :test' and specified a test db adapter in my config file to get around the problem I e-mailed you about. Dave On Tue, Aug 24, 2010 at 9:44 AM, Magnus Holm

Re: [camping-list-admin] Angel Robert Marquez

2010-08-24 Thread Quiliro Ordóñez
Thank you Magnus. He was sending me a lot of insulting personal emails which I answered in the wish to help him understand better but I gave up after the tenth insulting email. -- Saludos/Greetings Quiliro Ordóñez 593(2)340 1517 / 593(9)821 8696 Even The Troops Are Waking Up

Re: making create environmentally aware

2010-08-24 Thread Magnus Holm
What about this: def App.create(env = (ENV['CAMPING_ENV'] || :development)) end Then you can simply set ENV['CAMPING_ENV'] = test before loading any tests. // Magnus Holm On Tue, Aug 24, 2010 at 16:21, David Susco dsu...@gmail.com wrote: Ya, that's what I'm doing. Just wondering if

Re: Oh, whywentcamping.com!

2010-08-24 Thread Magnus Holm
Awesome work, Jenna :-) One issue: The code blocks doesn't show properly on GitHub: http://github.com/camping/camping/wiki/Book:-Getting-Started Not sure what's the best way to handle this. We should at least indent all the code blocks with 4 spaces (so they end up as Markdown pre tags), and

Re: Oh, whywentcamping.com!

2010-08-24 Thread Jenna Fox
Actually I realised about half way through making the thing, GitHub has a syntax for highlighted code. It looks like this: ```ruby Camping.goes :Poop ``` So we could use that instead, would be easy enough. Seems a kind of ugly syntax though On 25/08/2010, at 1:39 AM, Magnus Holm wrote: