Re: Heroku down time today, about 30 minutes total

2010-10-28 Thread Al
So, 3 nine's is what to expect from Heroku? On Oct 28, 3:50 am, Peter Marklund wrote: > Regardless with hosting option you choose you will have downtime. I > have found more often than not the reason is to do with infrastructure > like power, networking, hardware, routing etc. that will most lik

Re: Full Logging Solutions

2010-10-28 Thread John Barnette
On Oct 28, 2010, at 3:13 PM, Peter Marklund wrote: > I've experimented with logging to MongoDB lately and I've found it to > work really well. The MongoDB performance along with its query > capabilities opens up a lot of possibilities. I'm doing my logging to > MongoHQ now through a Rack middleware

Re: Full Logging Solutions

2010-10-28 Thread Peter Marklund
I've experimented with logging to MongoDB lately and I've found it to work really well. The MongoDB performance along with its query capabilities opens up a lot of possibilities. I'm doing my logging to MongoHQ now through a Rack middleware and am monitoring the performance (time overhead) of the l

Re: Bundler upgrade to 1.0.3 to support BUNDLE_WITHOUT?

2010-10-28 Thread Peter Marklund
Yeah, it does indeed appear to be working. Maybe I just didn't realize that before. I guess they patched bundler. Maybe the reason I didn't notice was that I was hoping for a bigger drop in slug size, I'm still at 12.4MB for a Rails app with only a handful of gem dependencies. Hmm, I think it's bec

Re: Could not find a valid gem 'source'

2010-10-28 Thread Abel Tamayo
I don't know it this will help, but my Gemfile looks quite different. First, the sources line is like this: source 'http://gemcutter.org' probably both notations are valid though. The problematic part is probably your Authlogic line. Mine looks like this: gem 'authlogic', :git => 'http://github.

Could not find a valid gem 'source'

2010-10-28 Thread jhubert
For some reason I can't deploy my Rails 3 app. My Gemfile looks like this: source :rubygems gem 'rails', '3.0.1' gem 'sqlite3-ruby', :require => 'sqlite3' gem 'authlogic', :git => 'git://github.com/odorcicd/ authlogic.git', :branch => 'rails3' gem 'acts_as_commentable' gem 'ac

Re: SOLVED: Has anyone got pony working with gmail on heroku?

2010-10-28 Thread Jimmy
The example below works, it now uses via options instead of smtp, also the body is now included, if some one out there is wondering what ENV['TO_EMAIL'] is. These are environment variables that are easily setup locally and on heroku. Its all explained here http://docs.heroku.com/config-vars Pony

Heroku Users Group meetup in SF, 11/3 @ 7pm

2010-10-28 Thread Ben Scofield
Greetings, Heroku users! In case you haven’t heard, we wanted to let you know that the first-ever Heroku Users Group (known henceforth and forever more as a HUG) meetup will be held at our offices in San Francisco[1] next Wednesday, November 3rd, at 7pm. We’re inviting everybody, from the developer

Re: SOLVED: Has anyone got pony working with gmail on heroku?

2010-10-28 Thread Jimmy
Just to follow up this is working, but doesn't include a 'body', and the' from' will always be your gmail. I'll post another example shortly. Cheers, James -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to her...@go

Re: Has anyone got pony working with gmail on heroku?

2010-10-28 Thread Jimmy
@ morgoth Is mail gem easier to install than pony? Pony seemed like a good option as it was on the sinatrarb site, and since it was written by Adam at Heroku, I was hoping for an easy install. On Oct 28, 10:45 am, morgoth wrote: > You can also use mail gem. > > You can find my configuration of

Re: Has anyone got pony working with gmail on heroku?

2010-10-28 Thread Jimmy
@Pedro, I was able to install the latest version of Pony on heroku without using smtp_tls. I believe (correct me if I am wrong) it uses the latest version of ActionMailer. In my gems manifest I only have the following: sinatra pony haml maruku Any dependencies are automatically installed. Cheer

Re: Bundler upgrade to 1.0.3 to support BUNDLE_WITHOUT?

2010-10-28 Thread Chris Hanks
Yep, it's worked for me for weeks too. On Oct 28, 7:28 am, marcel wrote: > BUNDLE_WITHOUT is currently working for me. It magically started being > recognized a few weeks ago. From my heroku config output: > > BUNDLE_WITHOUT                    => test development > > And when I deploy: > > -

Re: Heroku has a read-only filesystem

2010-10-28 Thread arailsdemo
What's in your Gemfile? -- 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 grou

Re: Bundler upgrade to 1.0.3 to support BUNDLE_WITHOUT?

2010-10-28 Thread marcel
BUNDLE_WITHOUT is currently working for me. It magically started being recognized a few weeks ago. From my heroku config output: BUNDLE_WITHOUT=> test development And when I deploy: -> Heroku receiving push -> Rails app detected -> Gemfile detected, running Bundle

Re: Heroku down time today, about 30 minutes total

2010-10-28 Thread Peter Marklund
Regardless with hosting option you choose you will have downtime. I have found more often than not the reason is to do with infrastructure like power, networking, hardware, routing etc. that will most likely be out of your control. I think the downtime I've seen with Heroku is tolerable and you sho

Bundler upgrade to 1.0.3 to support BUNDLE_WITHOUT?

2010-10-28 Thread Peter Marklund
Hi! According to the Heroku documentation at http://docs.heroku.com/bundler you can use this config var setting: heroku config:add BUNDLE_WITHOUT="development test" It will exclude the development and test groups from the bundle install and thus trim down your slug size. However, it didn't seem

Re: Has anyone got pony working with gmail on heroku?

2010-10-28 Thread morgoth
You can also use mail gem. You can find my configuration of mail gem in sinatra applicaion in: http://github.com/morgoth/kasia/blob/master/app.rb -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to her...@googlegroup