Tagged Questions

A light-weight web framework in Ruby. http://whywentcamping.com/

learn more… | top users | synonyms

3
votes
2answers
34 views

Camping's path building method

Could someone explain for me this part of the code from Lucky Stiff's Camping micro-framework: # Simply builds a complete path from a path +p+ within the app. If your # application is mounted at ...
3
votes
6answers
945 views

Are there any important differences between Camping and Sinatra?

My feeling is that the differences between Camping and Sinatra are not very significant and that you could safely choose either one and be ok. But I want to ask the Ruby experts if this is true. Are ...
2
votes
3answers
269 views

What are some good ways to make an async web app on ruby these days?

I'm looking to build a webapp with a WebSocket component, and a run of the mill rack based frontend. My initial plan was to use Camping for the frontend, running the server on thin, with a rack ...
2
votes
1answer
220 views

rendering a partial with camping and haml

I'm trying to make a simple blog with camping, like the example that comes with camping, only I want to use haml for the views instead of markaby. I want to render the posts using a _post.html.haml ...
2
votes
1answer
125 views

Camping's URL() doesn't give me “site root” as expected?

Due to circumstances beyond my control, my production Camping site appears at mysite.example.com/mysite. I'm pretty sure this is a common Apache / Passenger configuration issue, and I'm not ...
2
votes
2answers
115 views

Camping: Return user to recent entries, but keep errors

Users can view a specific entry in my webapp with a URL. /entry/8, for example. If an entry doesn't exist, "Entry not found" gets appended to @messages and I render an error page. I'd like to show ...
2
votes
2answers
438 views

Render a view from another view

I have a couple of views I'd like to have appear on every view that is rendered, but short of duplicating code or breaking the specifications, I can't seem to find a way to accomplish this. Here's my ...
1
vote
0answers
88 views

How can I build a friendly nosql ORM without polluting the global scope?

For a while, I've been working on building a little Ruby library to interface with CouchDB, a neat little document database with a HTTP interface. Key features are: document objects are glorified ...
1
vote
2answers
108 views

How can i receive aggregate queries for ruby's active record?

Using ruby, camping webframework, activerecord-2.1.1, my db structure is ... create_table :Conf_posts do |t| %w{title body username posttime hit passwd}.each do |col| t.column :"#{col}", ...
0
votes
1answer
24 views

Camping model ignores association

module App::Models class Team < Base has_many :players [...] end class Player < Base belongs_to :team end When calling @team.players (or @player.team): NoMethodError at ...