<?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://blog.gmane.org/gmane.comp.lang.ruby.ramaze.general">
    <title>gmane.comp.lang.ruby.ramaze.general</title>
    <link>http://blog.gmane.org/gmane.comp.lang.ruby.ramaze.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://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1650"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1648"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1645"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1644"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1638"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1632"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1627"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1624"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1619"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1618"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1612"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1606"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1606"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1606"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1601"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1598"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1597"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1594"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1591"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1587"/>
      </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://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1650">
    <title>Using HAML with BlueForm for login to app performing authentication without a database</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1650</link>
    <description>&lt;pre&gt;I am trying to output a form using the BlueForm helper in HAML, and coming 
up with very odd output.

See: http://pastie.org/3965112.

I want to use the example here --

https://github.com/Ramaze/ramaze/tree/master/examples/app/auth

&lt;/pre&gt;</description>
    <dc:creator>drollwit</dc:creator>
    <dc:date>2012-05-25T08:12:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1648">
    <title>Ramaze a/r helpers</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1648</link>
    <description>&lt;pre&gt;What is the difference between a Controller.a method like  #{UsersController.a('Remove', 
:remove_target, tgt.id)} and a Controller.r method? I'm pretty new to 
Ramaze and i'm just wondering when the best time to use each of them is.

Thanks!

&lt;/pre&gt;</description>
    <dc:creator>Jeff Nixon</dc:creator>
    <dc:date>2012-04-27T19:36:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1645">
    <title>Ramaze help</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1645</link>
    <description>&lt;pre&gt;I want to conditionally display content in a view based on a session 
variable. I'm not clear at this stage if there is a built in template 
language that would allow me to use conditional statements. Below is my 
first stab at the controller and view code. Can you point me in the right 
direction for documentation or examples? Any insight is much appreciated.

controller/presentationtest.rb:

class PresentationsController &amp;lt; Ramaze::Controller
map '/presentations'
  def authenticate(password)
  if password = 'ammpresentations'
  session[:logged_in] = true
  end
  end
end

view/presentations.xhtml:

&amp;lt;p&amp;gt;
Please login below to view the Presentations. 
&amp;lt;/p&amp;gt;

&amp;lt;form action="#{PresentationsController.r(:authenticate)}" method="POST"&amp;gt;
    &amp;lt;label for="password"&amp;gt;Password&amp;lt;/label&amp;gt;
    &amp;lt;input type="password" name="password" /&amp;gt;

    &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;

    &amp;lt;input type="submit" value="Login" /&amp;gt;
&amp;lt;/form&amp;gt;

&amp;lt;!-- conditional check goes here; logged_in = true --&amp;gt;

// here is the content that will be displayed, once you enter password //

&amp;lt;a href="#" &amp;gt;Presentation 1&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;
&amp;lt;a href="#" &amp;gt;Presentation 2&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;
&amp;lt;a href="#" &amp;gt;Presentation 3&amp;lt;/a&amp;gt; 

&amp;lt;!-- end of conditional section --&amp;gt; 

&lt;/pre&gt;</description>
    <dc:creator>Jeff Nixon</dc:creator>
    <dc:date>2012-04-20T20:40:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1644">
    <title>Ramaze 2012.04.14</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1644</link>
    <description>&lt;pre&gt;Rubyists,

Ramaze 2012.04.14 was just released, this release is mostly a bug fix
release. This release does not contain any of the Innate/Ramaze
improvements as mentioned in the previous release announcement, those
will be put in the next release (of which the date has not yet been
confirmed).

## Changelog

* The Redis adapter (Ramaze::Cache::Redis) has been fixed so that it
  works with sessions, previously this would result in "Can't convert
  into symbol" errors and the like. This problem was caused by not
  encoding data using Marshal. Thanks to EdvardM for reporting the
  issue.
* The Redis cache adapter namespaces keys just like the other adapters.
* Ramaze::Cache::MemCache has been updated for the latest version of
  Dalli and should no longer display deprecation warnings. The minimum
  required version of Dalli has been set to at least 2.0.2.
* Various documentation improvements and additions.
* The HTML of the pagination helper can now be customized, thanks to
  Leucos and bougyman for adding it.

I also like to remind you that the next release of Ramaze will *not* be
backwards compatible with previous releases. This is because manveru
made a few changes to Innate that make it *a lot* faster, this change
however, required the removal of the middleware compiler (in order to
keep Innate under 2k LOC). In the coming days Ramaze will be updated so
that it will work properly with these changes. An announcement will be
made when these changes have been comitted so that developers can
prepare for this release.

As always, for any information or questions you're more than welcome to
join the IRC channel #ramaze on freenode.

Yorick

&lt;/pre&gt;</description>
    <dc:creator>Yorick Peterse</dc:creator>
    <dc:date>2012-04-14T17:44:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1638">
    <title>Conflicting sessions?</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1638</link>
    <description>&lt;pre&gt;Hello -

I am using Sequel to store session objects (Ramaze::Cache.options.session = 
Ramaze::Cache::Sequel.using(...)) and am experiencing session 
overwriting/conflicts between browsers.  E.g.:

 - Open Safari and log in as User 1
 - Open Firefox and log in as User 2
 - Switch back to Safari and refresh; We are now running as User 2

Am I right in thinking that the session ID is keyed off the IP of the user 
logging in, so the most recent matching key in the session store wins out? 
(e.g. User 2).

Do I need to somehow tie the session to a cookie stored on a per-browser 
basis?  I (obviously) do not have a great understanding of this stuff, so 
any insight would be greatly appreciated.  What I am looking for is 
something similar to how Google behaves (multiple browsers can have 
different users logged in).

Cheers!

- kez

&lt;/pre&gt;</description>
    <dc:creator>kez</dc:creator>
    <dc:date>2012-04-12T14:03:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1632">
    <title>Ramaze Plugin</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1632</link>
    <description>&lt;pre&gt;Hello everybody,

I'm starting to program in Ruby and I'm really impressed with Ramaze's 
simplicity and flexibility, and I wan't to spend my time with this 
framework. But I can't found any doc about plugins... is it possible in 
Ramaze? How can I extend it's functionality through plugins or even gems?

Att,
Lucas Sampaio

&lt;/pre&gt;</description>
    <dc:creator>Lucas Sampaio</dc:creator>
    <dc:date>2012-04-06T18:52:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1627">
    <title>How to define a custom helper and use for view?</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1627</link>
    <description>&lt;pre&gt;I'm readed a lots of documents and googled it, nothing to help.

&lt;/pre&gt;</description>
    <dc:creator>hhuai</dc:creator>
    <dc:date>2012-03-26T15:02:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1624">
    <title>Webrick SSL certificate authentication in Ramaze</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1624</link>
    <description>&lt;pre&gt;Hi,
I'm a Ruby/Ramaze noob, but found it is quite easy to write simple web apps 
and find it really a great product.
I would like to use webrick to serve a simple Ramaze app over SSL and to 
authenticate clients with certificates.
There are examples on the internetz on how to configure webrick for that, 
but couldn't find any mention on how to implement in Ramaze/Rack.
I guess the SSL configuration for webrick has to be integrated somewhere 
around in config.ru or start.rb, but besides that I'm clueless.

Any help is appreciated.

SSL with cert auth works like a charm with Apache, and I can get 
certificate information in the app from 'request.env' (to use in the app 
for authorization), but webrick is already there with ruby/ramaze and the 
Apache/nginx path is overhead in my situation. Running the app on webrick 
with stunnel for SSL doesn't provide certificate information to the app, so 
that is no-go for me.

Thanks,
Davor

&lt;/pre&gt;</description>
    <dc:creator>Davor Serfez</dc:creator>
    <dc:date>2012-03-17T23:38:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1619">
    <title>setting Ramaze.options.mode</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1619</link>
    <description>&lt;pre&gt;Howdy!

What's your preferred method for setting Ramaze.options.mode for the
different runtime environments?

Basically the issue I'm looking at is using different database
connections for :dev, :live, and :test (also used for defining
middleware).  I'm wanting to select the connection in app.rb before
requiring my models.  The Ramaze.options.mode defaults to :dev.  I can
set it to :test in my spec/spec_helper.rb and features/support/env.rb
before requiring app.rb.  But how should I handle live deployments?

TIA,
Roy


&lt;/pre&gt;</description>
    <dc:creator>Roy Wright</dc:creator>
    <dc:date>2012-03-10T20:38:01</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1618">
    <title>Ramaze 2012.03.07</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1618</link>
    <description>&lt;pre&gt;Rubyists,

Today marks the day of another Ramaze release, Ramaze 2012.03.07. With
this release also comes a new version of Innate, also 2012.03. A full
list of the changes of both frameworks can be found below.

However, there is one important change that you should be aware of:
Ramaze is no longer dual licensed under the GPL/Ruby licenses but
instead is now licensed under the MIT license. This license gives more
freedom and is a lot easier to understand. For those interested the
conversation that started the idea of changing the license can be found
here: https://gist.github.com/1664358.

If you have any questions about this license change feel free to reply
to this email, send me or Michael an email or join the IRC channel.
The contact details can be found at the bottom of this email.

## Changelog for Ramaze

* Various documentation improvements, massive thanks to John Pagonis for
  his contributions.
* CSRF tokens are re-generated on valid requests. This fixes the problem
  of these tokens being invalidated after 15 minutes regardless of
  valid requests being executed or not.
* View adapters automatically install required Gems using
  Ramaze.setup().
* Support for the Slim template engine thanks to Marc Weber.
* Various small code cleanups such as the removal of trailing
  whitespace, YARD formatting issues, etc.

## Changelog for Innate

* Fixed various YARD formatting issues.
* The render helper can now render views that don't have corresponding
  methods when the trait :needs_method is set to true. This means that
  for example render_view(:foo) works if there's a view "foo" but not
  method "foo()". Previously doing this would trigger an error saying  
  the render call required a method.
* Fixed an issue for Rack::Cascade in Rack 1.4.1.
* The speed of Innate::Cache has been improved and should trigger less
  warnings.

## Upcoming Changes

With this email I'd also like to announce some upcoming changes in both
Innate and Ramaze. Earlier today Michael managed to make some patches
for Innate that resulted in a massive performance increase (from 300
reqs/sec to around 2000).

However, for this patch to be pulled into Innate various changes have to
be made which in turn would lead to Innate using more than 2k LOC. To
work around this we've been thinking of throwing a few things (that were
annoying in the first place) away. These are Innate::Session and the
middleware compiler. The former isn't a huge issue as Rack already has a
perfectly fine way of handling sessions. The latter however is a very
big change and will break a lot of existing applications out there,
hence this announcement.

The removal of the middleware compiler would mean that all the methods
related to "compiling" the middleware list (methods such as
Innate.middleware!) will be removed, thus breaking existing code that
relies on the presence of these methods.

The advantage of this is that both Innate and Ramaze will instead use
the code provided by Rack, thus making it easier for us to maintain both
frameworks as well as making it easier for others to use Rack
middlewares without having to learn how to use the middleware compiler.

While none of these changes have been pushed to Github yet it's more
than likely that this will happen in the near future as we agreed that
such big performance improvements were worth the effort of breaking
existing code. Once we have determined in which version these changes
will be included I'll send another email to notify developers so that
they can prepare themselves and their projects.

## Contact Details

Yorick Peterse: yorickpeterse-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org
Michael Fellinger: m.fellinger-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org
IRC channel: #ramaze on Freenode

Yorick


&lt;/pre&gt;</description>
    <dc:creator>Yorick Peterse</dc:creator>
    <dc:date>2012-03-07T18:48:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1612">
    <title>Can't figure out Paginator.navigation</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1612</link>
    <description>&lt;pre&gt;Howdy,

I'm working with a legacy PostgreSQL database and am learning Sequel
for the ORM.  The first table that has the potential to have enough
rows to justify pagination that I'm tackling is the hash_table.  The
pagination appears to be working in that I can limit the number of
rows displayed (yes, 5 is a really small limit, but also pretty
obvious when trying to get it to work) and iterate with the
Paginator.each method.

The problem is that Paginator.navigation is always returning an empty
string and I just don't see what I'm missing.  Probably something
simple.  So I created the following gist with, hopefully, all the
relevant code fragments:

https://gist.github.com/1812150

Thank you,
Roy

&lt;/pre&gt;</description>
    <dc:creator>Roy Wright</dc:creator>
    <dc:date>2012-02-13T00:42:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1606">
    <title>Using Gestalt in Views</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1606</link>
    <description>&lt;pre&gt;Can anyone advise on how to use Gestalt in Views, perhaps with a helpful 
example?  I have searched documentation, examples, specs  extensively but I 
am still in the dark.  I have managed to use Gestalt successfully only in a 
controller.

(not sure of group etiquette yet so TIA anyway.)


&lt;/pre&gt;</description>
    <dc:creator>Rich</dc:creator>
    <dc:date>2012-01-04T12:11:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1606">
    <title>Using Gestalt in Views</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1606</link>
    <description>&lt;pre&gt;Can anyone advise on how to use Gestalt in Views, perhaps with a helpful 
example?  I have searched documentation, examples, specs  extensively but I 
am still in the dark.  I have managed to use Gestalt successfully only in a 
controller.

(not sure of group etiquette yet so TIA anyway.)


&lt;/pre&gt;</description>
    <dc:creator>Rich</dc:creator>
    <dc:date>2012-01-04T12:11:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1606">
    <title>Using Gestalt in Views</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1606</link>
    <description>&lt;pre&gt;Can anyone advise on how to use Gestalt in Views, perhaps with a helpful 
example?  I have searched documentation, examples, specs  extensively but I 
am still in the dark.  I have managed to use Gestalt successfully only in a 
controller.

(not sure of group etiquette yet so TIA anyway.)


&lt;/pre&gt;</description>
    <dc:creator>Rich</dc:creator>
    <dc:date>2012-01-04T12:11:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1601">
    <title>running ramaze as CGI script</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1601</link>
    <description>&lt;pre&gt;Hi,

i wonder if it is possible and how ... i've tried executing this


#!/usr/bin/ruby
# This file contains your application, it requires dependencies and
necessary
# parts of the application.
#
# It will be required from either `config.ru` or `start.rb`

require 'rubygems'
require 'ramaze'

# Make sure that Ramaze knows where you are
Ramaze.options.roots = [__DIR__]

# Initialize controllers and models
require __DIR__('model/init')
require __DIR__('controller/init')



Rack::Handler::CGI.run Ramaze


but i'm getting


RuntimeError at /home/felipe/Proyectos/test/ramaze/test/app.rb.cgi
Nothing mapped yet

Ruby/usr/lib/ruby/1.8/innate/dynamap.rb: in call, line 39
WebGET localhost/home/felipe/Proyectos/test/ramaze/test/app.rb.cgi

/usr/lib/ruby/1.8/innate/dynamap.rb: in call
      raise "Nothing mapped yet" if &amp;lt; at &amp;gt;originals.empty?


thnks.

&lt;/pre&gt;</description>
    <dc:creator>felipon</dc:creator>
    <dc:date>2011-12-29T19:40:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1598">
    <title>Problems getting a tutorial to run with POST command ...</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1598</link>
    <description>&lt;pre&gt;I have installed Ramaze on my Windows machine (I also use Linux).

My test application is capturing user information with a POST command in 
xhtml. I am using Webrick.

The POST command creates a 403 error upon submit. The problem could be 
access permissions in my Windows environment or authorization permissions 
in Webrick.

Does anyone have suggestions for this.


Note: I may move my test application to Linux. Ramaze does not seem Windows 
friendly.

&lt;/pre&gt;</description>
    <dc:creator>ramaze-newbie</dc:creator>
    <dc:date>2011-12-29T15:45:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1597">
    <title>Ramaze 2011.12.28</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1597</link>
    <description>&lt;pre&gt;Rubyists,

Not too long ago we released Ramaze 2011.12.28. This release is a relatively
small release containing only a few changes:

* Ramaze has been updated to work with the newest version(s) of Rack as 1.4
  introduced a few changes related to dealing with static files.
* A few variables that were shadowed by other variables have been renamed.
* A few small changes to the documentation.
* The CSRF helper now uses request.ip/request.host instead of directly using
  request.env. The latter would cause issues when proxying requests to Ramaze
  (e.g. when running it on Heroku).

Innate has also been updated (new version is 2011.12) to work with Rack 1.4.
Because of the changes in Rack Ramaze 2011.12.28 requires Innate 2011.12 or
greater.

Yorick
&lt;/pre&gt;</description>
    <dc:creator>Yorick Peterse</dc:creator>
    <dc:date>2011-12-28T17:49:15</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1594">
    <title>Odd behaviour with User helper in 2011.10.23</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1594</link>
    <description>&lt;pre&gt;Hello -

Long time no contribute : )

I am using 2011.10.23 with the :user helper, and when starting Ramaze 
(`ruby start.rb`), Ruby goes starts eating CPU cycles (OS X, ruby 1.8.7 
(2010-01-10 patchlevel 249) [universal-darwin11.0]) and won't start the app.

My previous version (2010.06.18, old, I know) doesn't have this problem.

Anyone come across something similar?

Cheers,

kez

&lt;/pre&gt;</description>
    <dc:creator>kez</dc:creator>
    <dc:date>2011-12-13T18:11:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1591">
    <title>dojo framework</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1591</link>
    <description>&lt;pre&gt;Hello guys,

I'd like to use dojo framework together with ramaze. Where it would be the 
best place to load dojo's source?

&lt;/pre&gt;</description>
    <dc:creator>Felician Moldovan</dc:creator>
    <dc:date>2011-11-23T10:35:02</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1587">
    <title>Ramaze with NoSQL?</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1587</link>
    <description>&lt;pre&gt;About a year ago I started  a project that was using Friendly for a 
NoSQL data store.

I was doing some RVM and gem updates and Friendly now gives me a mess of 
inconsistent gem dependencies.

I could sort that out, but I wanted to know if anyone else had used a 
NoSQL back end and what they did.


Thanks,


James

&lt;/pre&gt;</description>
    <dc:creator>James Britt</dc:creator>
    <dc:date>2011-11-05T21:00:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1582">
    <title>HTML Emails with Ramaze</title>
    <link>http://comments.gmane.org/gmane.comp.lang.ruby.ramaze.general/1582</link>
    <description>&lt;pre&gt;Hi,
I need some advice, hope somebody can help me here.

I'm trying to use "plain ramaze" to generate an html email body.
The point I want to achieve is to use something like a separate layout 
(say 'email') and somehow leverage the `render_*` for certain types of 
emails.

At first I thought to use `render_full` with a separate controller, but 
rake's lint is blaming me for incorrect content length. So I believe 
this approach is poor and maybe there's a better way for rendering views 
and assign the resulted data to a variable for later manipulation.

Any help is much appreciated.
Thanks in advance.

&lt;/pre&gt;</description>
    <dc:creator>Stas Sușcov</dc:creator>
    <dc:date>2011-10-27T19:50:05</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.ruby.ramaze.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.ramaze.general</link>
  </textinput>
</rdf:RDF>

