Problem symptom:
start.rb:1:in `require': no such file to load -- ramaze (LoadError) from start.rb:1
Solutions (choose one):
Make sure your template files have the right extension for the template engine you are using.
Also make sure you're putting them in the directory that Ramaze is looking for templates. By default, this is the view/ subdirectory.
See the file upload example in the examples directory.
By default, Ramaze will attempt to serve any files found in the public/ directory of your application (relative to the file with Ramaze.start in it). For example, if you have a file public/foo/bar.pdf, you can download it by browsing to http://mydomain.com/foo/bar.pdf. You can change the public path using
Global.public_root = 'some/new/path'
There are two ways Ramaze is usually pronounced. The one that is most common at the moment is like the English 'amaze' with a prefixed 'r'.
International Phonetic Alphabet transcription:
ɹʌˈmejz
The other way is using a Japanese-like pronunciation.
`ra` as in `rasta` `ma` as in `mark` `ze`, just make it sound German ;)
or, using International Phonetic Alphabet transcription:
ɹaˈmazɛ ɾaˈmazɛ
or, using japanese Katakana:
ラマゼ
There is no official issue tracking software in place. A couple of probable reasons for this:
Nevertheless, if you feel that you must use an issue tracker in lieu of the mailing list and IRC channel, then submit a new ticket here.
Ramaze::Inform.debug "some debug message" Ramaze::Inform.warn "some warning message" Ramaze::Inform.info "some info message"
Ramaze::Inform.loggers.each{|l| l.log_levels << :dev }
Ramaze::Inform.ignored_tags = [:info, :debug]
More info on this mailing list thread. Or, to turn off all logging:
Ramaze::Inform.loggers = []
Ramaze::Dispatcher::Action::FILTER << proc {|response| response.header['Cache-Control'] = 'no-store' }
Ramaze options can be set via the ramaze command line binary
ramaze start.rb -a adapter
via Ramaze.start
Ramaze.start :adapter => adapter
via the Global namespace
Ramaze::Global.adapter = adapter
or a Global.setup block
Ramaze::Global.setup do |g| g.adapter = adapter end