Displaying 5 results from an estimated 5 matches for "railsroad".
Did you mean:
railroad
2009 May 10
4
How to generate UML diagrams from existing ruby code?
Hi,
thanks for reading. Till now, I''ve used railroad to visualize my
models. But as far as I can see, there''s no possibility to add
information about the model class methods. Methods are only added to a
diagram, if you visualize your controllers. Is there a way to change
this behavior?
I''ve looked out for something else and found ''ruby-uml'', seems to
2006 Jan 18
1
How should permissions be set for a Rails app?
I''m a newbie and I''m having a tough time figuring out how the
permissions need to be set to get a Rails app running on a shared host.
I''m attempting to follow the fastCGI instructions here:
http://wiki.rubyonrails.com/rails/pages/FastCGI
Now, I''m getting this error:
-------------
You don''t have permission to access /dispatch.fcgi/ on this server.
2006 Feb 16
2
Rails, rSpec and BDD
I''ve decided that I want to use more automated tests because I''ve been
intrigued by the idea of BDD.
I am new to using tests, so I''m curious if there have been any writeup
on using rSpec.
This is one of the only ones I''ve found:
http://blog.teksol.info/articles/2005/11/17/building-a-plugin-on-rspec
It seems that the benefit of BDD is that it makes it
2006 Feb 22
0
rake migrate problems
I''ve been trying to build an app with migrations:
When I attempt:
$rake migrate
I get the following errors:
rake migrate --trace
(in /Users/intention/work/atlrugpoll_working)
** Invoke migrate (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute migrate
^Crake aborted!
2006 Feb 16
9
rake migrate HANGS
I have been attempting to use migrations as a build a poll app.
I have created the initial file:
-----------------
class CreateTablePollsAndPollOptions < ActiveRecord::Migration
def self.up
create_table polls do |table|
table.column ''question'', :string
table.column ''user_id'', :integer
table.column ''start_time'',