[Rails] Re: Managing Feature Backlogs

2009-06-12 Thread Bjørn Arild Mæland
> What techniques and tools do you use to manage your feature backlogs? A combination of notes in the source code tree (TODO/NOTE/etc) and Redmine or GitHub Issues. For personal projects I use org-mode (http:// orgmode.org/). I generally prefer to have these things available right in my editor, w

[Rails] Re: mysql to postgres rake task

2009-05-17 Thread Bjørn Arild Mæland
> Hey all. I'm trying to export my app's data from mysql to postgres in > advance of a database switch. > > I've tried this: > >   task(:export => :environment) do >     @users=User.find(:all) >     ActiveRecord::Base.establish_connection(:pg) >     for user in @users >       user.save_with_valida

[Rails] Re: Looking for a lightweight client management app

2009-05-10 Thread Bjørn Arild Mæland
> Hi! > > I'm looking for a lightweight client management app in Rails, not sure > if it can be described as a CRM though. > > primary requirements: > * basic management - signup/creation/deletion > * ability to track client requests (tickets) > * email notifications > * support for custom design

[Rails] Re: example application not working

2009-05-10 Thread Bjørn Arild Mæland
> >> what is the output on the console? > > > Hi icemag, > > > The output is the following in the browser window: > > -- > > "We're sorry, but something went wrong. > > > We've been notified about this issue and we'll take a l

[Rails] Re: I don't know "super".... Sorry for my ignorance

2009-05-08 Thread Bjørn Arild Mæland
> Hi All, > > Today, when I debug, I found that I don't understand a very basic > function "super". > > > > class User < ActiveRecord::Base > def self.columns >puts "here." >@ret = super >return @ret > end > > end > > > This return only one line of "here