Ruby on Rails Dates

0 views
Skip to first unread message

Rob Pa

unread,
Jan 14, 2009, 7:34:57 AM1/14/09
to rubyonra...@googlegroups.com
Hi,

I am using a MySQL database and have a row callsed date in my fixtures
table. I am wanting to display fixtures coming up, i.e. ahead of todays
date.

In my controller I am thinking of doing;
@fixtures = Fixtures.find(:all, :conditions => "date > #{Date.today} ",
:order => "id DESC")

Do dates work this way, is this the correct way to go about it?

Also, are there any forum systems built with Ruby on Rails that I can
download for use on my site?

Thanks in advance, Rob
--
Posted via http://www.ruby-forum.com/.

MaD

unread,
Jan 14, 2009, 7:42:26 AM1/14/09
to Ruby on Rails: Talk
as for forum software:
http://rforum.andreas-s.net/

your idea with dates should work, too.

Rob Biedenharn

unread,
Jan 14, 2009, 7:58:59 AM1/14/09
to rubyonra...@googlegroups.com
On Jan 14, 2009, at 7:34 AM, Rob Pa wrote:
> Hi,
>
> I am using a MySQL database and have a row callsed date in my fixtures
> table. I am wanting to display fixtures coming up, i.e. ahead of
> todays
> date.
>
> In my controller I am thinking of doing;
> @fixtures = Fixtures.find(:all, :conditions => "date > #{Date.today}
> ",
> :order => "id DESC")
>
> Do dates work this way, is this the correct way to go about it?

At least, I'd change this to:

@fixtures = Fixture.find(:all, :conditions => ['data > ?',

Date.today],
:order => 'id DESC')

But it would be better to put this into a named scope:

class Fixture
named_scope :future, lambda { {:conditions => ['data > ?',
Date.today]} }
end
then, in your controller
@fixtures = Fixture.future

> Also, are there any forum systems built with Ruby on Rails that I can
> download for use on my site?
>
> Thanks in advance, Rob
> --


I was about to give you a couple answers, but then I re-read your
question. I'm not sure about forums, but there are certainly a few
options for wikis.

http://letmegooglethatforyou.com/?q=ruby+rails+forum+software

-Rob

Rob Biedenharn http://agileconsultingllc.com
R...@AgileConsultingLLC.com


Ryan Bigg

unread,
Jan 14, 2009, 8:03:52 AM1/14/09
to rubyonra...@googlegroups.com
And http://github.com/radar/rboard - Fully supports Rails 2.2 and
internationalisation.
-----
Ryan Bigg
Freelancer
http://frozenplague.net

Michael Michael

unread,
Jan 14, 2009, 11:13:05 AM1/14/09
to rubyonra...@googlegroups.com
I don't mean to be too intrusive as I am a dreadful IT Recruiter that
you probably all despise. I am working on filling a number of RoR
Developer positions for an exciting young company in NYC. If you are
interested in learning more about the position please e-mail me,
mmar...@apexsystemsinc.com or call me at 212.991.1835. No one has to
know that you contacted me regarding and you can still bash me here in
the blog.

Have a great day! Thanks!

Harold

unread,
Jan 14, 2009, 2:53:49 PM1/14/09
to Ruby on Rails: Talk
Can't you just send out an email, with [JOBS] in the subject? I don't
think anyone would be bothered by that. Don't change a discussion
subjects just for spite. Have some class.

On Jan 14, 11:13 am, Michael Michael <rails-mailing-l...@andreas-
s.net> wrote:
> I don't mean to be too intrusive as I am a dreadful IT Recruiter that
> you probably all despise. I am working on filling a number of RoR
> Developer positions for an exciting young company in NYC. If you are
> interested in learning more about the position please e-mail me,
> mmart...@apexsystemsinc.com or call me at 212.991.1835. No one has to
Reply all
Reply to author
Forward
0 new messages