Displaying 3 results from an estimated 3 matches for "jsalli".
Did you mean:
jsallis
2006 May 26
7
migration with required data
I''m working on a bugtracker application in rails. I have a Bug model
and I want to add a Priority to the mix. A Bug can have one priority.
I generate a Priority model, modify my Bug model with a belongs_to
:priority and create my migration like so:
class CreatePriorities < ActiveRecord::Migration
def self.up
create_table :priorities do |t|
t.column :name, :string,
2008 May 06
4
Git support - kinda works, have design questions
As of now, I can create a project from Git repository, run a builder
on it, and even run the dashboard. Build pages look ugly because
build.label in git is very long, a bunch of unit tests is failing, and
I had to disable some functionality, namely displaying source control
errors in the dashboard.
SourceControl::AbstractAdapter#execute_with_error_log (formerly known
as
2006 Mar 24
4
Changing accessor list order
Ok, I''m pretty new to Rails and I''m building a bug tracker as my first
real project. I have a situation where a bug can have multiple comments.
Pretty simple. When I show the comments on the screen, I want to make
sure that they''re displayed in reverse order by date created. I have
used the following to change the order of @bug.comments:
class Bug <