Re: Compiled Slug size not changing after removing large gems from Gemfile

2010-12-07 Thread Alex Killough
Any updates here? My slug doubled in size today when i removed gems; now I can't launch my app. On Tue, Oct 12, 2010 at 11:16 AM, stephen murdoch stephenjamesmurd...@gmail.com wrote: yes Keenan, it's definitely my slug size that's creeping up (same problem others are having) I did some

Re: Compiled Slug size not changing after removing large gems from Gemfile

2010-10-12 Thread Keenan Brock
Hi Stephen, If you checked in a gem into git Then you deleted the gem from git. Git still has the gem. It is not showing up for today, but git log will show when you added it and removed it. Guess I do not know if you are checking in your bundle dir and gems into git. 1. So are you saying

Re: Compiled Slug size not changing after removing large gems from Gemfile

2010-10-12 Thread Chris Hanks
According to the Heroku docs (http://docs.heroku.com/slug-compiler), the git repository is not included in the slug. I've had the same experience as Stephen - I'd specify gems in my Gemfile that would push the slug size up, and then remove them without any effect to the slug size. Then I could

Re: Compiled Slug size not changing after removing large gems from Gemfile

2010-10-12 Thread guillaume fradin
I was actually going to write support about this issue for my app, but I ll try here first the slug size of my app has slowly been increasing after each commit, now up to 73Mb. This is definitely not a big application, so I believe something wrong is happening. Could easily be my fault, off

Re: Compiled Slug size not changing after removing large gems from Gemfile

2010-10-12 Thread marcel
I discovered something similar about a month ago. I dug around the directory structure using heroku console, and noticed that the deleted gems still existed in the slug's .bundle folder. -- You received this message because you are subscribed to the Google Groups Heroku group. To post to this

Re: Compiled Slug size not changing after removing large gems from Gemfile

2010-10-12 Thread stephen murdoch
yes Keenan, it's definitely my slug size that's creeping up (same problem others are having) I did some digging and this is what I found: According to the command-line output, my bundle is getting installed to `.bundle/gems`. I decided to try and vendor my gems to see if this would make a

Compiled Slug size not changing after removing large gems from Gemfile

2010-10-11 Thread stephen murdoch
I have encountered a few strange problems with Heroku this evening. My repo size somehow managed to bloat to 17mb so I removed some gems from my Gemfile (ran bundle install, git add Gemfile.lock etc etc) and found that my repo was still 17mb. I removed all my gems (apart from rails and pg) and

Re: Compiled Slug size not changing after removing large gems from Gemfile

2010-10-11 Thread stephen murdoch
PS - I'm using heroku gem 1.10.14 Also, when this problem occurs, the gems that I remove from my Gemfile do not get installed on heroku, but the slug size indicates that they are still lurking around somewhere in the background - is there anyway to list all the gems that my slug has installed?