<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general">
    <title>gmane.comp.lang.ruby.camping.general</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2018"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2017"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2016"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2015"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2014"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2013"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2012"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2011"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2010"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2009"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2008"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2007"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2006"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2005"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2004"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2003"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2002"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2001"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2000"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/1999"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2018">
    <title>Re: mounting multiples app</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2018</link>
    <description>&lt;pre&gt;I'll try it... thanks

Thread name: "Re: mounting multiples app" 
Mail number: 1 
Date: Wed, May 22, 2013 
In reply to: David Susco 



&lt;/pre&gt;</description>
    <dc:creator>låzaro</dc:creator>
    <dc:date>2013-05-24T10:15:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2017">
    <title>Re: mounting multiples app</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2017</link>
    <description>&lt;pre&gt;That will allow you to host two apps via a single config file. To separate
out your MVCs, try this:

&lt;/pre&gt;</description>
    <dc:creator>David Susco</dc:creator>
    <dc:date>2013-05-22T20:57:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2016">
    <title>Re: mounting multiples app</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2016</link>
    <description>&lt;pre&gt;You need to create a custom config.ru:

config.ru:

require_relative 'app1'
require_relative 'app2'

map '/app1' do
  run App1
end

map '/app2' do
  run App2
end



// Magnus Holm


On Wed, May 22, 2013 at 2:05 PM, låzaro &amp;lt;netadmin-88p/KcsgjK6HXe+LvDLADg&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

_______________________________________________
Camping-list mailing list
Camping-list-GrnCvJ7WPxnNLxjTenLetw&amp;lt; at &amp;gt;public.gmane.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>Magnus Holm</dc:creator>
    <dc:date>2013-05-22T19:04:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2015">
    <title>mounting multiples app</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2015</link>
    <description>&lt;pre&gt;Hi, I trying to mount an App but with separetaed model, controller and
view in otrher files. Waht could I do? How these files must be?
&lt;/pre&gt;</description>
    <dc:creator>låzaro</dc:creator>
    <dc:date>2013-05-22T12:05:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2014">
    <title>some pitfails</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2014</link>
    <description>&lt;pre&gt;Hi, I have two probelms

run camping someapp.rb other.rb

and it do not mount both of hims, only the first one

second

something.rb
something/
   models.rb
   views.rb
   controllers.rb

cat something.rb

require 'camping'
Camping.goes :Something

module Something
end

And it do not get the views and controllers as dependency


What I doing wrong?
&lt;/pre&gt;</description>
    <dc:creator>Lázaro</dc:creator>
    <dc:date>2013-05-03T14:12:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2013">
    <title>Raspberry Pi colocation for free!</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2013</link>
    <description>&lt;pre&gt;PCextreme are offering free raspberry pi colocation on a 100mbit link (the max speed of the pi's ethernet port) with 500gb of ipv6 and ipv6 traffic per month, guaranteeing the service for at least 12 months with no intent to shut it down in the future or start charging. They're doing it because the costs are so low (they don't use much power or make much heat) and it's a fun project for them!  

The only cost is that you must supply your own Raspberry Pi, with an SD card and an OS installed, and it must be in a plastic case, so all up it costs about $60 (pi $40, case $10, sd card about $10). The raspberry pi system specs are roughly 1ghz arm processor with 512mb of ram, however many gigabytes SD card of storage, and a GPU capable of decoding and encoding h264 video.

Ruby 1.9.3 and camping run great on a raspberry pi with the popular Raspbian OS, so if you're looking for a cheap way to get in to learning web tech, this seems like a fantastic offer. I'm really keen to try it out!

http://raspberrycolocation.c&lt;/pre&gt;</description>
    <dc:creator>Jenna Fox</dc:creator>
    <dc:date>2013-04-21T01:13:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2012">
    <title>Re: charset for french words</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2012</link>
    <description>&lt;pre&gt;You need this 
https://github.com/m-ryan/magic_encoding

and probably this
https://github.com/whitequark/rack-utf8_sanitizer

You will also need to give extra attention to your templates, different templating
engines respond differently to the encoding pragma.

On 29 mrt. 2013, at 14:58, Francois Sery &amp;lt;sery.francois-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:



--
Julik Tarkhanov
me-RY+snkucC20&amp;lt; at &amp;gt;public.gmane.org



_______________________________________________
Camping-list mailing list
Camping-list-GrnCvJ7WPxnNLxjTenLetw&amp;lt; at &amp;gt;public.gmane.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>Julik Tarkhanov</dc:creator>
    <dc:date>2013-03-29T14:44:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2011">
    <title>Re: charset for french words</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2011</link>
    <description>&lt;pre&gt;You can re-define the #service-method which will be invoked on every
request, and there set the correct charset:

Camping.goes :Nuts

module Nuts
  def service(*)
    &amp;lt; at &amp;gt;headers['Content-Type'] = 'text/html; charset=utf-8'
    super
  end
end

// Magnus Holm


On Fri, Mar 29, 2013 at 2:58 PM, Francois Sery &amp;lt;sery.francois&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:
_______________________________________________
Camping-list mailing list
Camping-list&amp;lt; at &amp;gt;rubyforge.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>Magnus Holm</dc:creator>
    <dc:date>2013-03-29T14:36:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2010">
    <title>charset for french words</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2010</link>
    <description>&lt;pre&gt;bonjour,
 i can't display french é ,ê, or à...
 how do i modify the charset of my app ? thanks

François
_______________________________________________
Camping-list mailing list
Camping-list-GrnCvJ7WPxnNLxjTenLetw&amp;lt; at &amp;gt;public.gmane.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>Francois Sery</dc:creator>
    <dc:date>2013-03-29T13:58:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2009">
    <title>Re: emails from my camping app</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2009</link>
    <description>&lt;pre&gt;Merci dave and julik. I'll try "pony" and "action mailer".
François


2013/3/28 Julik Tarkhanov &amp;lt;julian.tarkhanov-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;

_______________________________________________
Camping-list mailing list
Camping-list-GrnCvJ7WPxnNLxjTenLetw&amp;lt; at &amp;gt;public.gmane.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>Francois Sery</dc:creator>
    <dc:date>2013-03-29T06:42:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2008">
    <title>Re: Add Rake Middleware</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2008</link>
    <description>&lt;pre&gt;Sure:

Camping.goes :Noes

module Noes
  use Rack::Foobar
end

On Thursday, March 28, 2013, curtis bissonnette wrote:



&lt;/pre&gt;</description>
    <dc:creator>Magnus Holm</dc:creator>
    <dc:date>2013-03-28T19:07:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2007">
    <title>Add Rake Middleware</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2007</link>
    <description>&lt;pre&gt;Is there a simple way to add some Rake middleware to the camping server?
Specifically I'm hoping to include sass and coffee-script support server
side.
_______________________________________________
Camping-list mailing list
Camping-list-GrnCvJ7WPxnNLxjTenLetw&amp;lt; at &amp;gt;public.gmane.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>curtis bissonnette</dc:creator>
    <dc:date>2013-03-28T18:36:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2006">
    <title>Re: emails from my camping app</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2006</link>
    <description>&lt;pre&gt;Try Pony.

On 28 mrt. 2013, at 14:01, Francois Sery &amp;lt;sery.francois-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:



--
Julik Tarkhanov
me-RY+snkucC20&amp;lt; at &amp;gt;public.gmane.org



_______________________________________________
Camping-list mailing list
Camping-list-GrnCvJ7WPxnNLxjTenLetw&amp;lt; at &amp;gt;public.gmane.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>Julik Tarkhanov</dc:creator>
    <dc:date>2013-03-28T13:38:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2005">
    <title>Re: emails from my camping app</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2005</link>
    <description>&lt;pre&gt;Action Mailer is the most well known. The top three will probably be the
most useful to you:

https://www.google.com/search?q=rails+action+mailer

Dave

On Thu, Mar 28, 2013 at 9:01 AM, Francois Sery &amp;lt;sery.francois-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;wrote:




&lt;/pre&gt;</description>
    <dc:creator>David Susco</dc:creator>
    <dc:date>2013-03-28T13:31:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2004">
    <title>emails from my camping app</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2004</link>
    <description>&lt;pre&gt;Hello,
i'm looking for a gem to send emails from my camping app.
Advices and code examples are welcome.Thanks.

François
_______________________________________________
Camping-list mailing list
Camping-list-GrnCvJ7WPxnNLxjTenLetw&amp;lt; at &amp;gt;public.gmane.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>Francois Sery</dc:creator>
    <dc:date>2013-03-28T13:01:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2003">
    <title>Re: unit testing for the first time</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2003</link>
    <description>&lt;pre&gt;There was a good discussion about this on stackoverflow. Look for "testing Ruby modules"

On 27 mrt. 2013, at 07:33, Francois Sery &amp;lt;sery.francois-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Julik Tarkhanov</dc:creator>
    <dc:date>2013-03-27T09:52:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2002">
    <title>unit testing for the first time</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2002</link>
    <description>&lt;pre&gt;Bonjour,
how can i unit test the methods from my module App:helpers ?
 i'm new to ruby and to unit testing , english is not my mother tongue. All
that i know come from

http://en.wikibooks.org/wiki/Ruby_Programming/Unit_testing

and

M R . N E I G H B O R L Y ' S
HUMBLE LITTLE
RUBY BOOK

i 've tried this, but i don't know how to reference the  helpers in my app.

require 'test/unit'
require 'app.rb'  # this doesn't work

class Test_helpers &amp;lt; Test::Unit::TestCase
    def test_extraire_lieu
        assert_equal ("ici", App::Helpers.test_extraire_lieu({lieu=&amp;gt;"ici",
bla =&amp;gt; 'xxx', ble =&amp;gt; 'xxxx'}))
    end
end

thanks
_______________________________________________
Camping-list mailing list
Camping-list-GrnCvJ7WPxnNLxjTenLetw&amp;lt; at &amp;gt;public.gmane.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>Francois Sery</dc:creator>
    <dc:date>2013-03-27T06:33:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2001">
    <title>Re: modify the way active record Pluralize/singularize</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2001</link>
    <description>&lt;pre&gt;thanks a lot ! IT works perfectly !

François


2013/3/22 Magnus Holm &amp;lt;judofyr-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;

_______________________________________________
Camping-list mailing list
Camping-list-GrnCvJ7WPxnNLxjTenLetw&amp;lt; at &amp;gt;public.gmane.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>Francois Sery</dc:creator>
    <dc:date>2013-03-22T16:17:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2000">
    <title>Re: modify the way active record Pluralize/singularize</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/2000</link>
    <description>&lt;pre&gt;Hey François,

I would advice you to use English terms even though it's not your mother tongue.

However, if you must, it's pretty easy to add custom inflections:

ActiveSupport::Inflector.inflections do |inflect|
  inflect.irregular 'tach', 'tache'
end

See here for more examples:
http://api.rubyonrails.org/classes/ActiveSupport/Inflector/Inflections.html

// Magnus Holm


On Fri, Mar 22, 2013 at 2:16 PM, Francois Sery &amp;lt;sery.francois&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:
_______________________________________________
Camping-list mailing list
Camping-list&amp;lt; at &amp;gt;rubyforge.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>Magnus Holm</dc:creator>
    <dc:date>2013-03-22T14:08:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/1999">
    <title>modify the way active record Pluralize/singularize</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/1999</link>
    <description>&lt;pre&gt;hello, i'm new to Camping and i dont speek english very well so , please,
forgive my mistakes...here is my question:
 i want to modify the way active record Pluralize/singularize my tables
names.

i have 2 classes:

module Todo::models
class Tache &amp;lt;Base
belongs_to :categorie
end

class Categorie&amp;lt; Base
 has_many :taches
end
end

"tache" and "categorie" are french words. their plural form are  "taches"
and "categories ".

when i write:
...
maCategorie=Categorie.create(:nom =&amp;gt; categorie)
maCategorie.taches.create(:nom =&amp;gt; nomPropre)
...

I  have an "unitialized constant Todo::Models::Categorie::Tach" error
message.

i think  activerecord infers that the singular for "taches" is "tach"
instead of "tache". or maybe it's something else.
any idea ?

thanks

François
_______________________________________________
Camping-list mailing list
Camping-list-GrnCvJ7WPxnNLxjTenLetw&amp;lt; at &amp;gt;public.gmane.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>Francois Sery</dc:creator>
    <dc:date>2013-03-22T13:16:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/1998">
    <title>Re: Mab::Mixin::Error at /</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.ruby.camping.general/1998</link>
    <description>&lt;pre&gt;Looks to be working great now!  Thanks a lot for the quick fix.  I tested
both MAB and HAML both are now working as advertised.  Can't wait to dive
in.


On Thu, Mar 21, 2013 at 4:48 AM, Magnus Holm &amp;lt;judofyr-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

_______________________________________________
Camping-list mailing list
Camping-list-GrnCvJ7WPxnNLxjTenLetw&amp;lt; at &amp;gt;public.gmane.org
http://rubyforge.org/mailman/listinfo/camping-list&lt;/pre&gt;</description>
    <dc:creator>curtis bissonnette</dc:creator>
    <dc:date>2013-03-21T12:43:29</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.ruby.camping.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.ruby.camping.general</link>
  </textinput>
</rdf:RDF>
