From nerdfunk at gmail.com Thu Jan 20 00:14:58 2011 From: nerdfunk at gmail.com (adam moore) Date: Thu, 20 Jan 2011 14:14:58 +0900 Subject: Strange error with no stack trace Message-ID: Hello there! Been loving getting stuck in & creating bits & bobs with this wonderful little framework. Had a go at making a listing of a bunch of opening events which occur in my current city of residence - Tokyo. Unfortunately, although the app seemed to be fine running locally (in production), once pushed to Heroku I began to see intermittent occurrences of: !! Unexpected error while processing request: undefined method `to_sym' for nil:NilClass just as the app reached rendering the (haml) view. The problem is, there is no stack trace which is spit out at this point - and any puts I have added to the view to check things are ok, are never reached. I have a hunch that this may be to do with haml / tilt not starting up in time but was wondering if there's a way to make production camping apps more "verbose", or if this is needed at all. Thank you all. -- ----=^.^=--- From dsusco at gmail.com Thu Jan 20 10:32:40 2011 From: dsusco at gmail.com (David Susco) Date: Thu, 20 Jan 2011 10:32:40 -0500 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: What version of ruby is Heroku running? Dave On Thu, Jan 20, 2011 at 12:14 AM, adam moore wrote: > Hello there! > > Been loving getting stuck in & creating bits & bobs with this > wonderful little framework. Had a go at making a listing of a bunch of > opening events which occur in my current city of residence - Tokyo. > Unfortunately, although the app seemed to be fine running locally (in > production), once pushed to Heroku I began to see intermittent > occurrences of: > > !! Unexpected error while processing request: undefined method > `to_sym' for nil:NilClass > > just as the app reached rendering the (haml) view. > > The problem is, there is no stack trace which is spit out at this > point - and any puts I have added to the view to check things are ok, > are never reached. I have a hunch that this may be to do with haml / > tilt not starting up in time but was wondering if there's a way to > make production camping apps more "verbose", or if this is needed at > all. > > Thank you all. > > > -- > ----=^.^=--- > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list > -- Dave From judofyr at gmail.com Thu Jan 20 12:13:56 2011 From: judofyr at gmail.com (Magnus Holm) Date: Thu, 20 Jan 2011 18:13:56 +0100 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: Hm? Like Dave mentioned, could you give us the versions you're using? For both Camping, Rack, Tilt, Haml and Ruby? Also, you could add this little snippet to "force" a backtrace: class NilClass def to_sym puts "NilClass#to_sym:" caller.each do |line| puts " #{line}" end raise end end Maybe that gives you any clues! // Magnus Holm On Thu, Jan 20, 2011 at 06:14, adam moore wrote: > Hello there! > > Been loving getting stuck in & creating bits & bobs with this > wonderful little framework. Had a go at making a listing of a bunch of > opening events which occur in my current city of residence - Tokyo. > Unfortunately, although the app seemed to be fine running locally (in > production), once pushed to Heroku I began to see intermittent > occurrences of: > > !! Unexpected error while processing request: undefined method > `to_sym' for nil:NilClass > > just as the app reached rendering the (haml) view. > > The problem is, there is no stack trace which is spit out at this > point - and any puts I have added to the view to check things are ok, > are never reached. I have a hunch that this may be to do with haml / > tilt not starting up in time but was wondering if there's a way to > make production camping apps more "verbose", or if this is needed at > all. > > Thank you all. > > > -- > ----=^.^=--- > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list > From nerdfunk at gmail.com Thu Jan 20 18:31:25 2011 From: nerdfunk at gmail.com (adam moore) Date: Fri, 21 Jan 2011 08:31:25 +0900 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: My gem file reads thus: gem "activerecord", "3.0.3" gem "camping", "2.1" gem "nokogiri", "1.4.4" gem "rest-open-uri", "1.0.0" gem "sqlite3-ruby", "1.3.2" gem "tilt", "1.2.1" gem "haml", "3.0.25" Will get the ruby version asap. Love the idea of adding the method! Great! On Friday, January 21, 2011, Magnus Holm wrote: > Hm? > > Like Dave mentioned, could you give us the versions you're using? For > both Camping, Rack, Tilt, Haml and Ruby? Also, you could add this > little snippet to "force" a backtrace: > > ?class NilClass > ? ?def to_sym > ? ? ?puts "NilClass#to_sym:" > ? ? ?caller.each do |line| > ? ? ? ?puts " ?#{line}" > ? ? ?end > ? ? ?raise > ? ?end > ?end > > Maybe that gives you any clues! > > // Magnus Holm > > > > On Thu, Jan 20, 2011 at 06:14, adam moore wrote: >> Hello there! >> >> Been loving getting stuck in & creating bits & bobs with this >> wonderful little framework. Had a go at making a listing of a bunch of >> opening events which occur in my current city of residence - Tokyo. >> Unfortunately, although the app seemed to be fine running locally (in >> production), once pushed to Heroku I began to see intermittent >> occurrences of: >> >> !! Unexpected error while processing request: undefined method >> `to_sym' for nil:NilClass >> >> just as the app reached rendering the (haml) view. >> >> The problem is, there is no stack trace which is spit out at this >> point - and any puts I have added to the view to check things are ok, >> are never reached. I have a hunch that this may be to do with haml / >> tilt not starting up in time but was wondering if there's a way to >> make production camping apps more "verbose", or if this is needed at >> all. >> >> Thank you all. >> >> >> -- >> ----=^.^=--- >> _______________________________________________ >> Camping-list mailing list >> Camping-list at rubyforge.org >> http://rubyforge.org/mailman/listinfo/camping-list >> > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list -- ----=^.^=--- From nerdfunk at gmail.com Fri Jan 21 01:46:23 2011 From: nerdfunk at gmail.com (adam moore) Date: Fri, 21 Jan 2011 15:46:23 +0900 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: Wow, thanks Magnus. Adding that certainly made the output more interesting: http://pastebin.com/DSMKWK52 As you can see, the ruby version seems to be 1.8. It can be bumped up to 1.9 I believe if this is preferred? drinking.rb line 127 is simply: render :index The plot thickens... Adam From judofyr at gmail.com Fri Jan 21 03:23:38 2011 From: judofyr at gmail.com (Magnus Holm) Date: Fri, 21 Jan 2011 09:23:38 +0100 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: On Friday, January 21, 2011, adam moore wrote: > Wow, thanks Magnus. Adding that certainly made the output more interesting: > > http://pastebin.com/DSMKWK52 > > As you can see, the ruby version seems to be 1.8. > It can be bumped up to 1.9 I believe if this is preferred? > > drinking.rb line 127 is simply: > > ? ? ? ?render :index > > The plot thickens... > But soon the mystery will unfold itself! Could you list all the filenames in your views-directory? It seems that Camping fails to extract the extension of the index template. I'm just puzzled why it works locally but not on Heroku. Also, try to evaluate this on Heroku's console: filename[/\.(\w+)$/,1] (where filename is the filename of the index template). -- // Magnus Holm From judofyr at gmail.com Fri Jan 21 03:28:27 2011 From: judofyr at gmail.com (Magnus Holm) Date: Fri, 21 Jan 2011 09:28:27 +0100 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: On Friday, January 21, 2011, adam moore wrote: > Wow, thanks Magnus. Adding that certainly made the output more interesting: > > http://pastebin.com/DSMKWK52 > > As you can see, the ruby version seems to be 1.8. > It can be bumped up to 1.9 I believe if this is preferred? > > drinking.rb line 127 is simply: > > ?? ? ? ?render :index > > The plot thickens... > But soon the mystery will unfold itself! Could you list all the filenames in your views-directory? It seems that Camping fails to extract the extension of the index template. I'm just puzzled why it works locally but not on Heroku. Also, try to evaluate this on Heroku's console: filename[/\.(\w+)$/,1] where filename is the filename of the index template. -- // Magnus Holm From nerdfunk at gmail.com Fri Jan 21 03:31:34 2011 From: nerdfunk at gmail.com (adam moore) Date: Fri, 21 Jan 2011 17:31:34 +0900 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: With burning ears I link to you the git repository : http://github.com/minikomi/tokyoartparties Be gentle haha From nerdfunk at gmail.com Fri Jan 21 03:35:13 2011 From: nerdfunk at gmail.com (adam moore) Date: Fri, 21 Jan 2011 17:35:13 +0900 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: > Also, try to evaluate this on Heroku's console: filename[/\.(\w+)$/,1] > (where filename is the filename of the index template). > > -- > // Magnus Holm > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list Ruby console for tokyoartparties.heroku.com >> "index.haml"[/\.(\w+)$/,1] => "haml" Hope this is correct... From judofyr at gmail.com Fri Jan 21 04:27:05 2011 From: judofyr at gmail.com (Magnus Holm) Date: Fri, 21 Jan 2011 10:27:05 +0100 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: We're getting closer! Try this from both locally and on Heroku: Dir["src/views/index.*"].first My prediction: it returns index.haml locally and index.haml~ on Heroku. Therefore Camping fails to extract the extension on Heroku. Solution: delete all ~-files (and add *~ to gitignore). I'll also make the extraction code a little leas fragile to files which have weird extensions. On Friday, January 21, 2011, adam moore wrote: > With burning ears I link to you the git repository : > > http://github.com/minikomi/tokyoartparties > > Be gentle haha > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list > -- // Magnus Holm From nerdfunk at gmail.com Fri Jan 21 04:50:18 2011 From: nerdfunk at gmail.com (adam moore) Date: Fri, 21 Jan 2011 18:50:18 +0900 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: => "src/views/index.haml" But I will strip out the ~ files and let you know if things improve! The heroku support staff have also been taking a look: > Hi, > I was able to see this on heroku intermittently. On a few restarts, I got it, but in other occasions it worked fine right away. I was unable to reproduce this locally. From nerdfunk at gmail.com Fri Jan 21 04:54:18 2011 From: nerdfunk at gmail.com (adam moore) Date: Fri, 21 Jan 2011 18:54:18 +0900 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: Wow! That seems to have done it! Great. Will let their team know as well. Thank you very much, From matma.rex at gmail.com Fri Jan 21 12:22:22 2011 From: matma.rex at gmail.com (=?UTF-8?Q?Bartosz_Dziewo=C5=84ski?=) Date: Fri, 21 Jan 2011 18:22:22 +0100 Subject: Strange error with no stack trace In-Reply-To: References: Message-ID: Also, you can change Ruby version on Heroku by choosing a different stack. You can see a list of avail. stacks using "heroku stack" in command line (locally). You can change the stack by using "heroku stack:migrate " and git pushing. (Personally, I have had problems with that; solution is to "heroku destroy" an app and recreate it specifying the stack: "heroku create --stack ".) Bamboo and Aspen stacks differ in preinstalled gems (Bamboo has none, Aspen lots). Different Bamboo differ only by specific Ruby version. -- Matma Rex From deveritt at innotts.co.uk Mon Jan 24 08:21:50 2011 From: deveritt at innotts.co.uk (Dave Everitt) Date: Mon, 24 Jan 2011 13:21:50 +0000 Subject: [ANN] ABingo (A/B Testing framework) plugin for Camping In-Reply-To: References: <4CF83B0A.3070701@monnet-usa.com> <4D0999FA.2000104@monnet-usa.com> Message-ID: <48CFB135-F171-4AF9-95F2-5E6ABD209B2C@innotts.co.uk> Hi Jenna - just checking email backlog, was going to pop something up on Phillippe's behalf, but Rack is down on whywentcamping.com :-( - Dave Everitt > Hey you know it would be totally awesome if you did some posts on > the camping blog at http://log.whywentcamping.com/submit about this > neat stuff so we can mutually bask in whatever minor exposure that > might bring. :) > > Give me a poke if you submit something through that so I can hit > publish on the tumblr end. > > j > > On 16/12/2010, at 15:47, Philippe Monnet wrote: > >> I posted part II of the series, detailing the steps to add ABingo >> to a test Camping app - http://blog.monnet-usa.com/?p=330 >> GitHub and RubyGems have been updated with a couple changes too. >> There is also a very basic example at http://camping- >> abingo.heroku.com/ >> >> >> On 12/2/2010 5:34 PM, Philippe Monnet wrote: >>> >>> After becoming interested in Patrick McKenzie's ABingo A/B >>> testing framework for Rails I decided to adapt it for Camping >>> after getting his blessing. >>> The plugin can be found on GitHub at: https://github.com/techarch/ >>> camping-abingo >>> The camping-abingo gem is on RubyGems. >>> The doc is at: http://camping-abingo.monnet-usa.com/ >>> >>> And I started the first of a couple posts on ABingo for Camping: >>> http://blog.monnet-usa.com/?p=322 >>> >>> Philippe (@techarch) >>> >>> PS - for the moment I have not promoted the repository up to the >>> Camping GitHub org but I can do that if people feel like it >>> should be there. From bcorrigan78 at gmail.com Mon Jan 24 09:47:09 2011 From: bcorrigan78 at gmail.com (Brian Corrigan) Date: Mon, 24 Jan 2011 09:47:09 -0500 Subject: Camping-list Digest, Vol 51, Issue 2 In-Reply-To: References: Message-ID: Unsubscribe On Jan 24, 2011 9:21 AM, wrote: > > Send Camping-list mailing list submissions to > camping-list at rubyforge.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://rubyforge.org/mailman/listinfo/camping-list > or, via email, send a message with subject or body 'help' to > camping-list-request at rubyforge.org > > You can reach the person managing the list at > camping-list-owner at rubyforge.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Camping-list digest..." > > > Today's Topics: > > 1. Re: Strange error with no stack trace (adam moore) > 2. Re: Strange error with no stack trace (Magnus Holm) > 3. Strange error with no stack trace (Magnus Holm) > 4. Re: Strange error with no stack trace (adam moore) > 5. Re: Strange error with no stack trace (adam moore) > 6. Strange error with no stack trace (Magnus Holm) > 7. Re: Strange error with no stack trace (adam moore) > 8. Re: Strange error with no stack trace (adam moore) > 9. Re: Strange error with no stack trace (Bartosz Dziewo?ski) > 10. Re: [ANN] ABingo (A/B Testing framework) plugin for Camping > (Dave Everitt) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 21 Jan 2011 15:46:23 +0900 > From: adam moore > To: "camping-list at rubyforge.org" > Subject: Re: Strange error with no stack trace > Message-ID: > > Content-Type: text/plain; charset=ISO-8859-1 > > Wow, thanks Magnus. Adding that certainly made the output more interesting: > > http://pastebin.com/DSMKWK52 > > As you can see, the ruby version seems to be 1.8. > It can be bumped up to 1.9 I believe if this is preferred? > > drinking.rb line 127 is simply: > > render :index > > The plot thickens... > > > > Adam > > > ------------------------------ > > Message: 2 > Date: Fri, 21 Jan 2011 09:23:38 +0100 > From: Magnus Holm > To: "camping-list at rubyforge.org" > Subject: Re: Strange error with no stack trace > Message-ID: > > Content-Type: text/plain; charset=UTF-8 > > On Friday, January 21, 2011, adam moore wrote: > > Wow, thanks Magnus. Adding that certainly made the output more interesting: > > > > http://pastebin.com/DSMKWK52 > > > > As you can see, the ruby version seems to be 1.8. > > It can be bumped up to 1.9 I believe if this is preferred? > > > > drinking.rb line 127 is simply: > > > > ? ? ? ?render :index > > > > The plot thickens... > > > > But soon the mystery will unfold itself! > > Could you list all the filenames in your views-directory? It seems > that Camping fails to extract the extension of the index template. I'm > just puzzled why it works locally but not on Heroku. > > Also, try to evaluate this on Heroku's console: filename[/\.(\w+)$/,1] > (where filename is the filename of the index template). > > -- > // Magnus Holm > > > ------------------------------ > > Message: 3 > Date: Fri, 21 Jan 2011 09:28:27 +0100 > From: Magnus Holm > To: "camping-list at rubyforge.org" > Subject: Strange error with no stack trace > Message-ID: > > Content-Type: text/plain; charset=UTF-8 > > On Friday, January 21, 2011, adam moore wrote: > > Wow, thanks Magnus. Adding that certainly made the output more interesting: > > > > http://pastebin.com/DSMKWK52 > > > > As you can see, the ruby version seems to be 1.8. > > It can be bumped up to 1.9 I believe if this is preferred? > > > > drinking.rb line 127 is simply: > > > > ?? ? ? ?render :index > > > > The plot thickens... > > > > But soon the mystery will unfold itself! > > Could you list all the filenames in your views-directory? It seems > that Camping fails to extract the extension of the index template. I'm > just puzzled why it works locally but not on Heroku. > > Also, try to evaluate this on Heroku's console: filename[/\.(\w+)$/,1] > where filename is the filename of the index template. > > > -- > // Magnus Holm > > > ------------------------------ > > Message: 4 > Date: Fri, 21 Jan 2011 17:31:34 +0900 > From: adam moore > To: camping-list at rubyforge.org > Subject: Re: Strange error with no stack trace > Message-ID: > > > Content-Type: text/plain; charset=ISO-8859-1 > > With burning ears I link to you the git repository : > > http://github.com/minikomi/tokyoartparties > > Be gentle haha > > > ------------------------------ > > Message: 5 > Date: Fri, 21 Jan 2011 17:35:13 +0900 > From: adam moore > To: camping-list at rubyforge.org > Subject: Re: Strange error with no stack trace > Message-ID: > > Content-Type: text/plain; charset=ISO-8859-1 > > > Also, try to evaluate this on Heroku's console: filename[/\.(\w+)$/,1] > > (where filename is the filename of the index template). > > > > -- > > // Magnus Holm > > _______________________________________________ > > Camping-list mailing list > > Camping-list at rubyforge.org > > http://rubyforge.org/mailman/listinfo/camping-list > > Ruby console for tokyoartparties.heroku.com > >> "index.haml"[/\.(\w+)$/,1] > => "haml" > > Hope this is correct... > > > ------------------------------ > > Message: 6 > Date: Fri, 21 Jan 2011 10:27:05 +0100 > From: Magnus Holm > To: "camping-list at rubyforge.org" > Subject: Strange error with no stack trace > Message-ID: > > > Content-Type: text/plain; charset=UTF-8 > > We're getting closer! > > Try this from both locally and on Heroku: > > Dir["src/views/index.*"].first > > My prediction: it returns index.haml locally and index.haml~ on > Heroku. Therefore Camping fails to extract the extension on Heroku. > Solution: delete all ~-files (and add *~ to gitignore). > > I'll also make the extraction code a little leas fragile to files > which have weird extensions. > > On Friday, January 21, 2011, adam moore wrote: > > With burning ears I link to you the git repository : > > > > http://github.com/minikomi/tokyoartparties > > > > Be gentle haha > > _______________________________________________ > > Camping-list mailing list > > Camping-list at rubyforge.org > > http://rubyforge.org/mailman/listinfo/camping-list > > > > > -- > // Magnus Holm > > > ------------------------------ > > Message: 7 > Date: Fri, 21 Jan 2011 18:50:18 +0900 > From: adam moore > To: camping-list at rubyforge.org > Subject: Re: Strange error with no stack trace > Message-ID: > > Content-Type: text/plain; charset=ISO-8859-1 > > => "src/views/index.haml" > > But I will strip out the ~ files and let you know if things improve! > > The heroku support staff have also been taking a look: > > > Hi, > > > I was able to see this on heroku intermittently. On a few restarts, I got it, but in other occasions it worked fine right away. I was unable to reproduce this locally. > > > ------------------------------ > > Message: 8 > Date: Fri, 21 Jan 2011 18:54:18 +0900 > From: adam moore > To: camping-list at rubyforge.org > Subject: Re: Strange error with no stack trace > Message-ID: > > Content-Type: text/plain; charset=ISO-8859-1 > > Wow! That seems to have done it! > > Great. Will let their team know as well. > > Thank you very much, > > > ------------------------------ > > Message: 9 > Date: Fri, 21 Jan 2011 18:22:22 +0100 > From: Bartosz Dziewo?ski > To: camping-list at rubyforge.org > Subject: Re: Strange error with no stack trace > Message-ID: > > Content-Type: text/plain; charset=UTF-8 > > Also, you can change Ruby version on Heroku by choosing a different stack. > > You can see a list of avail. stacks using "heroku stack" in command > line (locally). > > You can change the stack by using "heroku stack:migrate stack>" and git pushing. (Personally, I have had problems with that; > solution is to "heroku destroy" an app and recreate it specifying the > stack: "heroku create --stack ".) > > > Bamboo and Aspen stacks differ in preinstalled gems (Bamboo has none, > Aspen lots). Different Bamboo differ only by specific Ruby version. > > -- > Matma Rex > > > ------------------------------ > > Message: 10 > Date: Mon, 24 Jan 2011 13:21:50 +0000 > From: Dave Everitt > To: camping-list at rubyforge.org > Subject: Re: [ANN] ABingo (A/B Testing framework) plugin for Camping > Message-ID: <48CFB135-F171-4AF9-95F2-5E6ABD209B2C at innotts.co.uk> > Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed > > Hi Jenna - just checking email backlog, was going to pop something up > on Phillippe's behalf, but Rack is down on whywentcamping.com :-( - > Dave Everitt > > > Hey you know it would be totally awesome if you did some posts on > > the camping blog at http://log.whywentcamping.com/submit about this > > neat stuff so we can mutually bask in whatever minor exposure that > > might bring. :) > > > > Give me a poke if you submit something through that so I can hit > > publish on the tumblr end. > > > > j > > > > On 16/12/2010, at 15:47, Philippe Monnet wrote: > > > >> I posted part II of the series, detailing the steps to add ABingo > >> to a test Camping app - http://blog.monnet-usa.com/?p=330 > >> GitHub and RubyGems have been updated with a couple changes too. > >> There is also a very basic example at http://camping- > >> abingo.heroku.com/ > >> > >> > >> On 12/2/2010 5:34 PM, Philippe Monnet wrote: > >>> > >>> After becoming interested in Patrick McKenzie's ABingo A/B > >>> testing framework for Rails I decided to adapt it for Camping > >>> after getting his blessing. > >>> The plugin can be found on GitHub at: https://github.com/techarch/ > >>> camping-abingo > >>> The camping-abingo gem is on RubyGems. > >>> The doc is at: http://camping-abingo.monnet-usa.com/ > >>> > >>> And I started the first of a couple posts on ABingo for Camping: > >>> http://blog.monnet-usa.com/?p=322 > >>> > >>> Philippe (@techarch) > >>> > >>> PS - for the moment I have not promoted the repository up to the > >>> Camping GitHub org but I can do that if people feel like it > >>> should be there. > > > > ------------------------------ > > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list > > End of Camping-list Digest, Vol 51, Issue 2 > ******************************************* -------------- next part -------------- An HTML attachment was scrubbed... URL: From a at creativepony.com Mon Jan 24 17:07:53 2011 From: a at creativepony.com (Jenna Fox) Date: Tue, 25 Jan 2011 09:07:53 +1100 Subject: ABingo (A/B Testing framework) plugin for Camping In-Reply-To: <48CFB135-F171-4AF9-95F2-5E6ABD209B2C@innotts.co.uk> References: <4CF83B0A.3070701@monnet-usa.com> <4D0999FA.2000104@monnet-usa.com> <48CFB135-F171-4AF9-95F2-5E6ABD209B2C@innotts.co.uk> Message-ID: <916FFA08D305483B997F4E3D3B84E65E@creativepony.com> O_O ? Jenna / @Bluebie On Tuesday, 25 January 2011 at 12:21 AM, Dave Everitt wrote: > Hi Jenna - just checking email backlog, was going to pop something up > on Phillippe's behalf, but Rack is down on whywentcamping.com :-( - > Dave Everitt > > > > Hey you know it would be totally awesome if you did some posts on > > the camping blog at http://log.whywentcamping.com/submit about this > > neat stuff so we can mutually bask in whatever minor exposure that > > might bring. :) > > > > Give me a poke if you submit something through that so I can hit > > publish on the tumblr end. > > > > j > > > > On 16/12/2010, at 15:47, Philippe Monnet wrote: > > > > > > > I posted part II of the series, detailing the steps to add ABingo > > > to a test Camping app - http://blog.monnet-usa.com/?p=330 > > > GitHub and RubyGems have been updated with a couple changes too. > > > There is also a very basic example at http://camping- > > > abingo.heroku.com/ > > > > > > > > > On 12/2/2010 5:34 PM, Philippe Monnet wrote: > > > > > > > > > > > After becoming interested in Patrick McKenzie's ABingo A/B > > > > testing framework for Rails I decided to adapt it for Camping > > > > after getting his blessing. > > > > The plugin can be found on GitHub at: https://github.com/techarch/ > > > > camping-abingo > > > > The camping-abingo gem is on RubyGems. > > > > The doc is at: http://camping-abingo.monnet-usa.com/ > > > > > > > > And I started the first of a couple posts on ABingo for Camping: > > > > http://blog.monnet-usa.com/?p=322 > > > > > > > > Philippe (@techarch) > > > > > > > > PS - for the moment I have not promoted the repository up to the > > > > Camping GitHub org but I can do that if people feel like it > > > > should be there. > > > > > > > > > > > > > > > > > > > > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From a at creativepony.com Mon Jan 24 17:10:30 2011 From: a at creativepony.com (Jenna Fox) Date: Tue, 25 Jan 2011 09:10:30 +1100 Subject: ABingo (A/B Testing framework) plugin for Camping In-Reply-To: <916FFA08D305483B997F4E3D3B84E65E@creativepony.com> References: <4CF83B0A.3070701@monnet-usa.com> <4D0999FA.2000104@monnet-usa.com> <48CFB135-F171-4AF9-95F2-5E6ABD209B2C@innotts.co.uk> <916FFA08D305483B997F4E3D3B84E65E@creativepony.com> Message-ID: Okay fixed. For now. *curses at shared hosting provider changing stuff!* ? Jenna / @Bluebie On Tuesday, 25 January 2011 at 9:07 AM, Jenna Fox wrote: > O_O > > ? > Jenna / @Bluebie > > On Tuesday, 25 January 2011 at 12:21 AM, Dave Everitt wrote: > > > Hi Jenna - just checking email backlog, was going to pop something up > > on Phillippe's behalf, but Rack is down on whywentcamping.com :-( - > > Dave Everitt > > > > > > > Hey you know it would be totally awesome if you did some posts on > > > the camping blog at http://log.whywentcamping.com/submit about this > > > neat stuff so we can mutually bask in whatever minor exposure that > > > might bring. :) > > > > > > Give me a poke if you submit something through that so I can hit > > > publish on the tumblr end. > > > > > > j > > > > > > On 16/12/2010, at 15:47, Philippe Monnet wrote: > > > > > > > > > > I posted part II of the series, detailing the steps to add ABingo > > > > to a test Camping app - http://blog.monnet-usa.com/?p=330 > > > > GitHub and RubyGems have been updated with a couple changes too. > > > > There is also a very basic example at http://camping- > > > > abingo.heroku.com/ > > > > > > > > > > > > On 12/2/2010 5:34 PM, Philippe Monnet wrote: > > > > > > > > > > > > > > After becoming interested in Patrick McKenzie's ABingo A/B > > > > > testing framework for Rails I decided to adapt it for Camping > > > > > after getting his blessing. > > > > > The plugin can be found on GitHub at: https://github.com/techarch/ > > > > > camping-abingo > > > > > The camping-abingo gem is on RubyGems. > > > > > The doc is at: http://camping-abingo.monnet-usa.com/ > > > > > > > > > > And I started the first of a couple posts on ABingo for Camping: > > > > > http://blog.monnet-usa.com/?p=322 > > > > > > > > > > Philippe (@techarch) > > > > > > > > > > PS - for the moment I have not promoted the repository up to the > > > > > Camping GitHub org but I can do that if people feel like it > > > > > should be there. > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > Camping-list mailing list > > Camping-list at rubyforge.org > > http://rubyforge.org/mailman/listinfo/camping-list > > > > > > > > > > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: