Tagged Questions

Ramaze is a simple, light and modular open-source web application framework written in Ruby.

learn more… | top users | synonyms

13
votes
3answers
5k views

What are the main differences between Sinatra and Ramaze?

I'm looking for a lightweight Ruby web framework and have come across Sinatra and Ramaze. Both seem extemely light, concise and simple. But I don't know enough about either to say what the main ...
5
votes
6answers
1k views

Are there any potential disadvantages in using a Ruby framework other than Rails?

I would like to use a lighter framework than Rails (Sinatra/Ramaze/Camping) but am concerned that by doing so I will not be able to use a lot of shared libraries that have been tailored to Rails in ...
4
votes
1answer
1k views

ActionMailer and Ramaze

Is it possible to use ActionMailer in a web framework like Ramaze, or do I need to use Rails?
3
votes
2answers
533 views

Ruby 1.9 Ramaze App Failing with “Illegal instruction”

I've got an app that I'm trying to get working again after wiping my system and installing Snow Leopard. I installed Ruby 1.9 from Macports (now a later version) and the dev server starts up just ...
3
votes
6answers
546 views

Why does Ruby's Win32Console not work for me with Ramaze?

I have installed Ramaze (on Windows XP) and it suggested I also install win32console to get coloured log output when it is running. However, after doing so I get escape codes rather than colours as ...
3
votes
3answers
1k views

What code highlighting libs are there for Ruby?

What'd also interest me is which have more or less dependencies.
3
votes
2answers
2k views

What “Pastie” alternatives are there? (installable)

I want to install a "pastie" in our local intranet. What are the alternatives to RaPaste and pastie.org? (the latter can't even be installed locally b/c it doesn't seem to be open source?) Edit: ...
2
votes
4answers
553 views

Ramaze's Haml engine returns same template every time

I've run into a problem with my very simple Ramaze project. My project is identical to the prototype project that is generated from 'ramaze create mywebsite', except that I'm using Haml templates (I ...
2
votes
1answer
281 views

Thin Crashes Hard with Ramaze

So, I'm just trying out Ramaze for a new project, and I'm wondering why it won't work with Thin, but will with ramaze start (which is webrick I guess). Here's what it gives me: ...
2
votes
1answer
182 views

Complex or Deep Object Storage in Ramaze Session is Broken?

(this is regarding the Ramaze.net framework) I ran into some really strange problems while storing custom Objects in session. I noticed that only the attributes on the objects immediately stored in ...
1
vote
3answers
138 views

How to quickly learn Python and Ruby frameworks coming from a PHP background

I've been using CakaPHP and Kohanaphp but now I want to try out other frameworks from a more sophisticated OOP language for my next projects. How can I learn the following frameworks quickly so I ...
1
vote
1answer
244 views

How do I get access to PUT data with the ramaze framework?

I'm attempting to use Ramaze, the ruby framework, to implement a RESTful controller. I can't seem to gain access to the data in the request when I send a PUT, however. Sample code: require ...
1
vote
2answers
560 views

Ramaze with Sequel Migrations?

I'm trying to get migrations set up in Ramaze. I'm coming from doing mostly Rails stuff, but I wanted to give something else a shot. Anyway, I've got a directory in my project called "migrations" with ...
1
vote
1answer
232 views

How to install and run Ramazes Rapaste easiest?

I'm pretty familiar with Ruby and Ramaze, but I wanted to provide my Admins with an install howto, since they're more familiar with Tomcat and standard Apache installations. I tried it locally first ...
0
votes
0answers
72 views

Why doesn't my Sequel save() method update records?

I am trying to use the save() method to update a record but every time I run save, it creates a new record instead of updating the current record. The migration is: Sequel.migration do up do ...
0
votes
1answer
106 views

Ramaze Request Parameters in Unicode?

I've got a partial for rendering a form that is throwing an error using unicode; I've narrowed the error down to the line; <input name='q' value='#{request.params['q']}' /> If I go to ...
0
votes
1answer
137 views

ActiveSupport::Inflector in a Ramaze project?

I just upgraded to ActiveSupport 3 and lost all my string methods like "camelize", "titleize", and the like. It broke things all over my project, and so far I've fixed them by re-writing those methods ...
0
votes
1answer
126 views

Intermediate Ramaze Routing Help Please

Part 1: I have a call to layout(:default){|path,wish| wish !~ /rss|atom|json/} but requests to /foo/bar.json seem to think wish is html and uses the layout anyway. How can I fix this? Part 2: I ...
0
votes
1answer
129 views

running the ramaze blog example - an error message

deltrem@deltrem-desktop:~/ramaze web/app/blog$ ruby start.rb I [2010-06-10 14:53:33 $1886] INFO | : activating sequel I [2010-06-10 14:53:33 $1886] INFO | : Installing sequel ...
0
votes
1answer
111 views

Render a template in Ramaze

I've got a template for a partial that I'd like to use and I'm wondering if it's possible to just render the thing without needing to send a mock request to a controller. I'm never going to need to ...
0
votes
2answers
726 views

Anyone knows a good tutorial for using Mongodb or MongoMapper with Ramaze?

Anyone knows a good tutorial for using Mongodb or MongoMapper with Ramaze? Thanks
0
votes
1answer
163 views

Can't find out where my Ruby 1.9 string encoding is getting messed up

Somewhere along the line from the DB to the application, this: sauté is getting turned into this: sauté I'm using Ramaze + Rack + MySQL. I've got a force_encoding plugin set up, so the encoding ...
0
votes
1answer
62 views

text search to distinguish rails projects from other types of ruby web applications - merb/sinatra/ramaze

If I want to perform a search on a directory that contains thousands of different ruby web applications and I want to find only those directories that contain rails projects, what text would I need to ...
0
votes
1answer
1k views

Getting “invalid byte sequence in US-ASCII” when I try to upload a file in Ramaze and Ruby 1.9

I guess the default encodings have changed with 1.9, but I thought Ramaze was supposed to be fully 1.9 compatible? I'm really not sure what going on here. Thanks for any help!
0
votes
2answers
208 views

Links in Ramaze with a/r helpers

In ramaze (2009.06.04) the link helper has changed and I have some problems to use it. I want to create a link to the MainController -> test action #{a('Testlink', r(:test))} This works if the URL ...