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 wrote: > Hi, > > I have a simple Rails 3 app running on the Aspen and Bamboo stacks ok,

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 wrote: > Just to be clear it concerns all European countries that host personal data > on Heroku (people identity, emails, etc.). > > --

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 Piga

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 wrote: > Did your task depend on environment? > > Jeff > > On May 21, 2011, at 2:30 AM, Nikue wrote: > > > Hey guys, > > > > heroku rake getting aborted with this trace: > > >

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 wrote: > I keep getting the following error when running a rake task that is > supposed to start a worker daemon on

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 PM

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 whi

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, R

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 `': 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 but you don

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.

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 wrote: > I keep getting this warning when I push a new Sinatra/DataMapper app > to Heroku. > > /home/slugs/286257_c19666c_5401-ed999fc7-450c-4af4

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, Authlogi

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

2010-10-12 Thread Abel Tamayo
some problem specific to cygwin/windows but I'm not sure. > > Twiek > > > > On Oct 11, 11:24 pm, Abel Tamayo wrote: > > I would recommend that you follow Heroku's guide here: > http://docs.heroku.com/keys > > <http://docs.heroku.com/keys>Maybe you do

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 Maybe 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 wrote: > Beeing new to programming I'm trying to learn

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 wrote: > Hi > I am just starting with heroku and have got this f

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 wrote: > no one has a comment on this? I thought it'd be a fairly straight > forward answer. > > On Sep 22, 7:11 pm, Bradley wrote:

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 wrote: > Are people comfortable with using Heroku on serious applications? If > so, how did they come to that deci

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 wh

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 wrote: > Hi, > > We use the Hpricot gem on our Heroku app. It is specified in the .gems > file and "config.gem :hpricot" is in the config/environ

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 wrote: > Since at least yesterday, Heroku workers are no longer picking up and > executing queued jobs. Is anyone else e

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
e > this issue is (was) 100% on their end. > > On Aug 13, 11:13 am, Abel Tamayo wrote: > > 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 desi

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 wrote: > Have a request open (#11626) that has just been sit

Re: workers crashing....

2010-08-12 Thread Abel Tamayo
ing there. i > need it to restart when it fails, can you tell me what I need to edit in > order to make it do that? > > Thanks...Chris > > On Thu, 2010-08-12 at 18:15 +0200, Abel Tamayo wrote: > > Heroku is supposed to restart a worker everytime it crashes. Whatever > >

Re: workers crashing....

2010-08-12 Thread Abel Tamayo
Kalaboukis wrote: > 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, 20

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 wrote: > I think I found the culprit: > > ==> dj-1943630-crashlog.log <== > (in /disk1/home/slugs/152245_4b6a6

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 wrote: > This bug is n

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 < stefan.winterme...@

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 wrote: > Hi guys: I've just installed Memcached and my development environment > is hosed - responds with > > > ch...@chris-laptop:~/strong-fog-31$ ruby script/server > => Boo