Re: Cedar stack and fastimage gem, push rejected

2011-07-28 Thread Abel Tamayo
Just a guess, but could it be that some of the gems listed in your Gemfile aren't available anymore, maybe they've been removed from their repositories or something? On Thu, Jul 28, 2011 at 10:05 PM, kimptoc ch...@kimptoc.net wrote: Hi, I have a simple Rails 3 app running on the Aspen and

Re: European clients hosted on Heroku?

2011-07-06 Thread Abel Tamayo
Thanks for the information, Michel. I certainly didn't know about this or even worried it could be a problem. On Wed, Jul 6, 2011 at 12:10 PM, Michel Pigassou dag...@gmail.com wrote: Just to be clear it concerns all European countries that host personal data on Heroku (people identity, emails,

Re: Latency of writing in the DB

2011-06-24 Thread Abel Tamayo
How long it takes depends on the number of records in your table but yes, this kind of search can be pretty expensive. You could try adding an index to your DB or denormalizing something but this kind of problem usually takes some engineering to solve. On Fri, Jun 24, 2011 at 12:49 PM, Michel

Re: Rake aborted!

2011-05-21 Thread Abel Tamayo
Could you have accidentally deleted your rakefile or something like that? On Sat, May 21, 2011 at 2:38 PM, Jeff Schmitz jeffrey.j.schm...@gmail.comwrote: Did your task depend on environment? Jeff On May 21, 2011, at 2:30 AM, Nikue nik...@gmail.com wrote: Hey guys, heroku rake getting

delayed_jobs_mongoid

2011-05-10 Thread Abel
I'm using Mongoid and Delayed jobs in a project and I thought it would be nice if I could use a Mongo DB to store the jobs in it. There's this gem called delayed_jobs_mongoind that (I think) does just that but I know Heroku tends to be very picky when it comes to workers. I wonder if anyone knows

Re: Daemonized workers on heroku and tweetstream via heroku rake jobs:work

2011-04-10 Thread Abel Tamayo
From the error message you get, it looks like you have a Gemfile that you should lock with bundle lock before you deploy your application. On Sun, Apr 10, 2011 at 9:23 AM, Daryl daryl.mann...@gmail.com wrote: I keep getting the following error when running a rake task that is supposed to start

Re: My (flawed?) attempt to add or subtract workers via Heroku API.

2011-01-19 Thread Abel Tamayo
Kudos to you if you were really able to do what you were trying to do. It looks like something really useful and complicated and I didn't think it would be possible at all in production since there's only so much you can fine tune about workers in Heroku. Congrats! On Wed, Jan 19, 2011 at 10:37

Re: Cron, delayed jobs and workers scaling

2011-01-05 Thread Abel Tamayo
I think you got it all wrong. Cron and Delayed Job are two completely different and unrelated things; they don't have to work together. Maybe you should take a look at the examples in the wiki as they're pretty accurate both at showing you how to use and configure each and at helping you chose

Re: HTML5 manifest caching on Heroku

2010-11-30 Thread Abel Tamayo
I can't test the example right now, but I would like to remind you that appcache or manifest cache is still in at a experimental stage. If you think it works inconsistently with Safari, better not even try with Firefox (yet). It all depends on the version though. On Tue, Nov 30, 2010 at 6:35 PM,

Re: Ubuntu 10.10 (amd64) + rails 3.0.1 + heroku uninitialized constant error

2010-11-19 Thread Abel Tamayo
I think the following line: /usr/local/lib/ruby/gems/1.9.1/gems/heroku-1.13.1/lib/heroku/commands/pg.rb:8:in `class:Pg': uninitialized constant Heroku::Command::Pg::Help (NameError) gives away that the culprit could be the PostGres gem. Makes sense too since it's one of the things Heroku uses

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 =

Re: warning: already initialized constant OrderedHash

2010-10-26 Thread Abel Tamayo
OrderedHash is part of ActiveSupport and it looks like it's being initialized twice. I hope that rings some bell. On Tue, Oct 26, 2010 at 2:59 PM, DAZ daz4...@gmail.com wrote: I keep getting this warning when I push a new Sinatra/DataMapper app to Heroku.

Re: heroku_user

2010-10-24 Thread Abel Tamayo
It looks like Heroku Users are used to authenticate users who already have an account with Heroku and are allowed to check out the application's source (that's the impression I get from skimming through the article). If you're looking for a commonly used, standard authentication method, Authlogic

Re: Add SSH Key to Heroku (using Windows/Cygwin)

2010-10-12 Thread Abel Tamayo
/windows but I'm not sure. Twiek On Oct 11, 11:24 pm, Abel Tamayo abel.tam...@gmail.com wrote: I would recommend that you follow Heroku's guide here: http://docs.heroku.com/keys http://docs.heroku.com/keysMaybe you don't have installed ssh. Let us know how that goes and I hope that helps

Re: Add SSH Key to Heroku (using Windows/Cygwin)

2010-10-11 Thread Abel Tamayo
I would recommend that you follow Heroku's guide here: http://docs.heroku.com/keys http://docs.heroku.com/keysMaybe you don't have installed ssh. Let us know how that goes and I hope that helps. Abel. On Mon, Oct 11, 2010 at 6:36 PM, Twiek sebastian.schwiec...@googlemail.comwrote: Beeing new

Re: no such file to load -- rspec

2010-10-08 Thread Abel Tamayo
FIrst, /usr and bundler 1.0.2 refer to the version running on the server, not your local versions which makes sense. And second, it looks like RSpec is listed as a dependency for something somewhere. Maybe you should include it in your Gem file. I hope that helps. On Thu, Oct 7, 2010 at 11:01 PM,

Re: heroku: command not found

2010-10-04 Thread Abel Tamayo
Could it be that you installed the gem with Bundler instead of doing a sudo gem install heroku? Or maybe you have different ruby versions set up and you're executing it from a different one? On Mon, Oct 4, 2010 at 5:40 PM, gleble neil_...@hotmail.com wrote: Hi I am just starting with heroku

Re: Heroku Mongoid config and how it works

2010-09-27 Thread Abel Tamayo
It seems MongoMapper is more popular around here. At least it's the solution I'm using and works flawlessly with Heroku. On Mon, Sep 27, 2010 at 2:33 PM, Bradley bradleyrobert...@gmail.com wrote: no one has a comment on this? I thought it'd be a fairly straight forward answer. On Sep 22,

Re: Heroku on serious applications and lack of support

2010-09-16 Thread Abel Tamayo
Yeah, it can be frustrating some times. I have hope that they will improve in this particular aspect soon though, so I'll stay true to Heroku. On Thu, Sep 16, 2010 at 10:06 PM, Mike mikel...@gmail.com wrote: Are people comfortable with using Heroku on serious applications? If so, how did they

Re: Error when using memcached uninitialized constant Memcached (NameError)

2010-09-10 Thread Abel Tamayo
Hi Riton, I'd suggest that you try this: #Gemfile gem 'SystemTimer' #Not necessary, but memcache recommends it for performance. gem 'memcached' #Notice it's memcached, with a D. #production.rb config.cache_store = :mem_cache_store, Memcached::Rails.new and nothing else. These three lines are

Re: Delayed Job not loading gem

2010-08-19 Thread Abel Tamayo
The environment should be the same. Have you tried to require Hpricot manually from the job that uses it? On Thu, Aug 19, 2010 at 2:29 AM, daniel hoey danielho...@gmail.com wrote: Hi, We use the Hpricot gem on our Heroku app. It is specified in the .gems file and config.gem :hpricot is in

Re: Delayed::Job not working?

2010-08-18 Thread Abel Tamayo
You're not alone and I don't think this has been happening since just yesterday but probably a little longer. I thought it was just me. On Wed, Aug 18, 2010 at 11:09 PM, jmay jason@gmail.com wrote: Since at least yesterday, Heroku workers are no longer picking up and executing queued jobs.

Re: check if an index was actually created in a table

2010-08-15 Thread Abel Tamayo
Have you tried using the console? Make sure you're on your project's directory and type in the command *heroku console*. You'll enter console mode live on your deployed application and will be able to see which fields your models have. Another good option would be using a rake task remotely like

Re: Open support request stuck in Awaiting assignment to a help desk operator. for 16 hours?

2010-08-13 Thread Abel Tamayo
It sure looks like something went wrong during that migration. Have you considered just destroying that application and start again from scratch even moving to your desired stack before you push? On Fri, Aug 13, 2010 at 4:31 PM, chris mcclellan...@gmail.com wrote: Have a request open (#11626)

Re: workers crashing....

2010-08-12 Thread Abel Tamayo
Segmentation faults are the most mysterious of faults... could it be some incompatibility between Ruby 1.8.6 and the PostgreSQL adapter? On Thu, Aug 12, 2010 at 5:38 PM, Chris Kalaboukis thinkfut...@gmail.comwrote: I think I found the culprit: == dj-1943630-crashlog.log == (in

Re: workers crashing....

2010-08-12 Thread Abel Tamayo
thinkfut...@gmail.comwrote: Possibly. Problem is I can't seem to catch it...do you know how I can, other than running some monitor to restart. BTW, how do I restart a crashed job? Is there a way to do it from the heroku command line? Thanks...Chris On Thu, 2010-08-12 at 17:47 +0200, Abel

Re: workers crashing....

2010-08-12 Thread Abel Tamayo
It's done automatically. You don't have to select or configure anything. On Thu, Aug 12, 2010 at 6:33 PM, Chris Kalaboukis thinkfut...@gmail.comwrote: Hi Abel: For some reason, its not restarting the job. Is there a way to change that setting - its not re-starting the job its just hanging

Re: NOTICE: Updating Bundler this week

2010-08-11 Thread Abel
I'm having the same problem as you, Sergio. Working on a Saturday night... :( On Aug 7, 9:16 pm, Sergio Lima sergiosouzal...@gmail.com wrote: Hi,    I'm using Rails 3.0.0.beta3 and ruby 1.9.2.    I tried to deploy to heroku today and I received some errors.    Then I followed the link

Re: Running Memcached

2010-08-11 Thread Abel Tamayo
Why are you installing memcached-northscale instead of just memcached? On Wed, Aug 11, 2010 at 12:34 AM, Chris Kalaboukis thinkfut...@gmail.comwrote: Hi guys: I've just installed Memcached and my development environment is hosed - responds with ch...@chris-laptop:~/strong-fog-31$ ruby

Re: Rails 3 doesn't officially support Ruby 1.9.1

2010-08-11 Thread Abel Tamayo
The best you can do is either find a deployment stack with the specifications you're using or adapt your environment to what is offered by Heroku. I'm checking the documents and it seems that Bamboo MRI supports Ruby 1.9.1. On Tue, Aug 10, 2010 at 10:53 AM, Stefan Wintermeyer

Re: Rails3 RC from master failed to start

2010-08-11 Thread Abel Tamayo
Guys, what's the command to install RC4? I'm trying something like: gem install bundler --version '1.0.0.rc.4' --pre but I'm getting an error that that version can't be found in any of the sources (rubygems). I can only install RC5. On Tue, Aug 10, 2010 at 3:33 AM, Pasha pavel.chip...@gmail.com