Re: Rails Version

2008-05-19 Thread DAZ

Thanks Adam, that's good to know, and if I want to upgrade rails
versions, do I just change this line in environment.rb?

RAILS_GEM_VERSION = '2.0.2'


DAZ

On May 19, 10:27 pm, "Adam Wiggins" <[EMAIL PROTECTED]> wrote:
> On Mon, May 19, 2008 at 8:23 AM, DAZ <[EMAIL PROTECTED]> wrote:
> > But surely at some point some of the apps on Heroku will need to be
> > updated to the latest version ... and how do we know when Heroku's
> > version gets updated??
>
> Don't worry, they'll be an announcement when 2.1 (or any major
> upgrade) is available.  In most cases this will probably be shortly
> after the official release, once we've had a chance to test it
> thoroughly and do whatever is necessary to make sure it works
> seamlessly with Heroku.
>
> As I mentioned after the last upgrade, 2.0 will be supported for the
> forseeable future, even though 2.1 looks to be a non-compatibility
> breaking release.
>
> Adam
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Rails Version

2008-05-19 Thread Adam Wiggins

On Mon, May 19, 2008 at 8:23 AM, DAZ <[EMAIL PROTECTED]> wrote:
> But surely at some point some of the apps on Heroku will need to be
> updated to the latest version ... and how do we know when Heroku's
> version gets updated??

Don't worry, they'll be an announcement when 2.1 (or any major
upgrade) is available.  In most cases this will probably be shortly
after the official release, once we've had a chance to test it
thoroughly and do whatever is necessary to make sure it works
seamlessly with Heroku.

As I mentioned after the last upgrade, 2.0 will be supported for the
forseeable future, even though 2.1 looks to be a non-compatibility
breaking release.

Adam

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Rails Version

2008-05-19 Thread DAZ

But surely at some point some of the apps on Heroku will need to be
updated to the latest version ... and how do we know when Heroku's
version gets updated??


DAZ

On May 19, 4:19 pm, mikong <[EMAIL PROTECTED]> wrote:
> No, you can't change the version of Rails based on this discussion:
>
> http://groups.google.com/group/heroku/browse_frm/thread/f7d6f486c55/
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Rails Version

2008-05-19 Thread mikong

No, you can't change the version of Rails based on this discussion:

http://groups.google.com/group/heroku/browse_frm/thread/f7d6f486c55/
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Rails Version

2008-05-19 Thread DAZ

Thanks guys.

Is there any way that I can change the version of rails for an app
that has already been created?

DAZ

On May 19, 11:08 am, mikong <[EMAIL PROTECTED]> wrote:
> As mentioned by Adam in an old post:
>
> You can check this stuff directly by doing `ruby -v` or `rails -v` in
> your app's console.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Rails Version

2008-05-19 Thread mikong

As mentioned by Adam in an old post:

You can check this stuff directly by doing `ruby -v` or `rails -v` in
your app's console.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Rails Version

2008-05-19 Thread Giorgio Clavelli

New project are all Rails 2 (although not sure right now if it 2.0.2
or another one)
There may be some old project, made with Rails 1.2 still supported,
but they would be an exception.

On Mon, May 19, 2008 at 8:04 PM, DAZ <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> Which version of Rails is running on Heroku? Is this fixed from when
> the project is created so therefore different for each project or is
> it continually updated centrally, so each project uses the same
> version of rails? I've noticed that the new named_scope methods from
> rails 2.1 don't work, so I guess that that version isn't running on my
> project!
>
> thanks,
>
> DAZ
> >

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Rails Version

2008-05-19 Thread DAZ

I've found this line in environment.rb

RAILS_GEM_VERSION = '2.0.2'

I guess that means that it is version 2.0.2?? Is this a dynamic file
and will change if heroku updates or do I have to edit this line
myself. How do I know when a newer version is available?

cheers,

DAZ

On May 19, 11:04 am, DAZ <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Which version of Rails is running on Heroku? Is this fixed from when
> the project is created so therefore different for each project or is
> it continually updated centrally, so each project uses the same
> version of rails? I've noticed that the new named_scope methods from
> rails 2.1 don't work, so I guess that that version isn't running on my
> project!
>
> thanks,
>
> DAZ
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Rails Version

2008-05-19 Thread DAZ

Hi,

Which version of Rails is running on Heroku? Is this fixed from when
the project is created so therefore different for each project or is
it continually updated centrally, so each project uses the same
version of rails? I've noticed that the new named_scope methods from
rails 2.1 don't work, so I guess that that version isn't running on my
project!

thanks,

DAZ
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---