Re: Missing the Rails 2.3.5 gem.

2010-06-07 Thread edoardoz
Away from the strange --ignore-dependencies there is just one
solution: upgrade to rails 2.3.8 that imply migrate to bamboo stack
that imply migrate to REE 1.8.7. This mean bamboo will become de-facto
the default stack, isn't?

On Jun 3, 12:09 am, Oren Teich  wrote:
> This problem is detailed here:
>
> http://blog.heroku.com/archives/2010/5/25/rails_2_3_6_dependency_issues/
>
> Oren
>
>
>
> On Wed, Jun 2, 2010 at 3:04 PM, giorgio  wrote:
> > I get the same message but I dont understand your solution!
>
> > I have in my Gemfile:
> > gem "rails", ">= 2.3.5", :require => "rails"
> > But I still get the message "Missing the Rails 2.3.5 gem. Please `gem
> > install -v=2.3.5 rails" .
>
> > Just to make it more confusing the app is a clone of another one which
> > works fine on Heroku...
>
> > Am I missing something? Do I just need to scrap the Heroku app and
> > start again?
>
> > Cheers
> > George
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Heroku" group.
> > To post to this group, send email to her...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > heroku+unsubscr...@googlegroups.com
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/heroku?hl=en.

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



Re: Missing the Rails 2.3.5 gem.

2010-06-02 Thread Oren Teich
This problem is detailed here:

http://blog.heroku.com/archives/2010/5/25/rails_2_3_6_dependency_issues/

Oren

On Wed, Jun 2, 2010 at 3:04 PM, giorgio  wrote:

> I get the same message but I dont understand your solution!
>
> I have in my Gemfile:
> gem "rails", ">= 2.3.5", :require => "rails"
> But I still get the message "Missing the Rails 2.3.5 gem. Please `gem
> install -v=2.3.5 rails" .
>
> Just to make it more confusing the app is a clone of another one which
> works fine on Heroku...
>
> Am I missing something? Do I just need to scrap the Heroku app and
> start again?
>
> Cheers
> George
>
> --
> You received this message because you are subscribed to the Google Groups
> "Heroku" group.
> To post to this group, send email to her...@googlegroups.com.
> To unsubscribe from this group, send email to
> heroku+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/heroku?hl=en.
>
>

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



Re: Missing the Rails 2.3.5 gem.

2010-06-02 Thread giorgio
I get the same message but I dont understand your solution!

I have in my Gemfile:
gem "rails", ">= 2.3.5", :require => "rails"
But I still get the message "Missing the Rails 2.3.5 gem. Please `gem
install -v=2.3.5 rails" .

Just to make it more confusing the app is a clone of another one which
works fine on Heroku...

Am I missing something? Do I just need to scrap the Heroku app and
start again?

Cheers
George

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



Re: Missing the Rails 2.3.5 gem.

2010-06-02 Thread thechrisoshow
Fixed thanks to David @ heroku!

Added the following to the .gems file, and it worked a treat:

 rails --version 2.3.8

On Jun 2, 2:08 pm, thechrisoshow  wrote:
> Blast!  That's annoying.
>
> In the mean time I've updated the Rails version to 2.3.8 and the Rack
> version to 1.1.0.
>
> -Chris
>
> On Jun 2, 1:54 pm, "Matthew A. Brown"  wrote:
>
> > I had the same problem; after lots of head-banging, I just pushed my code to
> > a new app instance (on bamboo) and it worked fine. Migrating my old instance
> > to bamboo didn't help though so it wasn't purely an aspen/bamboo issue.
>
> > On Jun 2, 2010 8:50 AM, "thechrisoshow"  wrote:
>
> > Hi,
>
> > I pushed a new gem in my .gem file recently, and now I'm getting the
> > error message:
>
> > "You need to explicitly specify your Rails version on your Gemfile
> > or .gems file."
> > "Missing the Rails 2.3.5 gem. Please `gem install -v=2.3.5 rails`,
> > update your RAILS_GEM_VERSION setting in config/environment.rb for the
> > Rails version you do have installed, or comment out RAILS_GEM_VERSION
> > to use the latest version installed."
>
> > Any suggestions?
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Heroku" group.
> > To post to this group, send email to her...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > heroku+unsubscr...@googlegroups.com .
> > For more options, visit this group 
> > athttp://groups.google.com/group/heroku?hl=en.

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



Re: Missing the Rails 2.3.5 gem.

2010-06-02 Thread thechrisoshow
Blast!  That's annoying.

In the mean time I've updated the Rails version to 2.3.8 and the Rack
version to 1.1.0.

-Chris

On Jun 2, 1:54 pm, "Matthew A. Brown"  wrote:
> I had the same problem; after lots of head-banging, I just pushed my code to
> a new app instance (on bamboo) and it worked fine. Migrating my old instance
> to bamboo didn't help though so it wasn't purely an aspen/bamboo issue.
>
> On Jun 2, 2010 8:50 AM, "thechrisoshow"  wrote:
>
> Hi,
>
> I pushed a new gem in my .gem file recently, and now I'm getting the
> error message:
>
> "You need to explicitly specify your Rails version on your Gemfile
> or .gems file."
> "Missing the Rails 2.3.5 gem. Please `gem install -v=2.3.5 rails`,
> update your RAILS_GEM_VERSION setting in config/environment.rb for the
> Rails version you do have installed, or comment out RAILS_GEM_VERSION
> to use the latest version installed."
>
> Any suggestions?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Heroku" group.
> To post to this group, send email to her...@googlegroups.com.
> To unsubscribe from this group, send email to
> heroku+unsubscr...@googlegroups.com .
> For more options, visit this group 
> athttp://groups.google.com/group/heroku?hl=en.

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



Re: Missing the Rails 2.3.5 gem.

2010-06-02 Thread Matthew A. Brown
I had the same problem; after lots of head-banging, I just pushed my code to
a new app instance (on bamboo) and it worked fine. Migrating my old instance
to bamboo didn't help though so it wasn't purely an aspen/bamboo issue.

On Jun 2, 2010 8:50 AM, "thechrisoshow"  wrote:

Hi,

I pushed a new gem in my .gem file recently, and now I'm getting the
error message:

"You need to explicitly specify your Rails version on your Gemfile
or .gems file."
"Missing the Rails 2.3.5 gem. Please `gem install -v=2.3.5 rails`,
update your RAILS_GEM_VERSION setting in config/environment.rb for the
Rails version you do have installed, or comment out RAILS_GEM_VERSION
to use the latest version installed."

Any suggestions?

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

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