Re: Upload from Rails app to S3 bucket upload failing with "No such file or directory"

2012-04-02 Thread Jesse Clark
: http://aws.amazon.com/articles/8621639827664165 -Jesse On Mar 30, 1:30 pm, Anil Punjabi wrote: > Hello, > > I am trying to upload a file from a HTML form, to a Rails app to finally go > to S3 but I keep getting this "No such file or directory" error. > > My S3

Re: uninitialized constant Rake::DSL

2011-07-09 Thread Jesse House
On the cedar stack i think you need 'run' http://devcenter.heroku.com/articles/rails3#rake heroku run rake db:migrate Similar to running bundle exec rake db:migrate On Jul 8, 4:02 pm, Francois wrote: > I have rake 0.9.2 on my local machine. When i type rake --version, I > get: > rake, vers

Re: Could an admin add a subject prefix to this list, like [heroku]

2011-05-12 Thread Jesse House
I use the "Abridged Email (Once per day..." setting 1 email a day from the group with the subject "Abridged summary of heroku@googlegroups.com - x Messages in x Topics" this works great for me, I guess it comes down to personal preference? On May 12, 1:49 am, Albert Chou wrote: > I wish there w

Re: PDF Generation on Heroku

2011-02-26 Thread Jesse House
besides prawn you might want to look at pdfkit, it does html/css conversion to pdf, you don't have as much control over the rendered output as with prawn but for some scenarios it works great https://github.com/jdpace/PDFKit http://blog.mattgornick.com/using-pdfkit-on-heroku also you need to be

Re: quick question re PostgreSQL and string case searching

2011-02-19 Thread Jesse House
t; ['email ILIKE ?', "%#{params[:search][:email]}%"] that way I can leave the data alone however this is not portable across all databases, there might be a better way - Jesse On Feb 18, 11:32 am, Lille wrote: > Hi, > > I'm new to PostgreSQL and I'

Re: App is Crashing with a meaningless Error

2011-02-13 Thread Jesse House
I have a rails app that referenced aws-s3. last time I uploaded my code the gems were re-imported and I ended up with builder 3.0.0 (aws- s3 depends on builder); this caused a lot of other code to start failing. I had to specify builder -v 2.1.2, I am only bringing this up since I see errors in bu

Re: Change to Heroku rake db:migrate output freaked me out

2011-02-09 Thread Jesse
I think this has to do with the new logging going to STDOUT, I didn't see this until I upgraded to the new logging addon On Feb 9, 6:44 am, chris wrote: > When I run "rake db:migrate" locally, I get all of the migrations listed > out: > > chris@goldfish$ rake db:migrate > (in /Users/cmcclelland/

Re: Logging - STDOUT ignores log_level

2011-02-05 Thread Jesse
awesome! that worked perfectly Thanks On Feb 5, 1:55 pm, David Dollar wrote: > Hey there, > > Try changing your log lines to this: > > config.logger = Logger.new(STDOUT) > config.logger.level = Logger::INFO > > Thanks, > David > > On Feb 5, 2011, at 4:16 PM, Je

Logging - STDOUT ignores log_level

2011-02-05 Thread Jesse
f rails only? has anyone else noticed this behavior or know of a workaround? for now I am just removing the addon Thanks, - Jesse -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to heroku@google

Re: 1 hour inactivity idling and http caching

2011-01-07 Thread Jesse
o consider? - Jesse On Jan 7, 3:44 am, Martin Petrov wrote: > Well, you must be right. I don't have a very good understanding of how > it works. Thank you Smith! > > On Jan 7, 1:08 pm, Steve Smith wrote: > > > > > > > > > Perhaps as the routing engine

Re: Heroku and custom domain with Dreamhost

2010-12-20 Thread Jesse Thomson
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

Vendored gems specified in Gemfile with :path not deploying

2010-11-23 Thread Jesse Clark
from my repository and then deploy Heroku runs builder for me and installs everything just fine. At some point lock files will be required though and I need to figure out how to resolve this. Has anyone else run in to this issue? I'm running Rails 2.3.8 on bamboo-mri-1.9.1. Thanks, -Jesse -- You

Re: where is the support?

2010-08-25 Thread Jesse
gt; or changing a config var to trigger another compile. > > Cheers, > David > > On Aug 25, 2010, at 3:57 PM, Jesse wrote: > > > > > I have executed > > > heroku restart > > heroku maintenace:off > > > multiple times both run without failure > >

Re: where is the support?

2010-08-25 Thread Jesse
not a browser cache issue; tried from multiple machines with multiple browsers and also using curl - Thanks anyway On Aug 25, 1:20 pm, Jeff Schmitz wrote: > Hate to ask the obvious > > Did you clear your browser cache? > -- You received this message because you are subscribed to the Google Gro

Re: where is the support?

2010-08-25 Thread Jesse
Heroku web servers? doesn't seem like anything that can be solved without intervention from heroku? On Aug 25, 12:48 pm, Daniel Spangenberg wrote: > Have you tried to restart your app or push again oder change an config > variable? > > Daniel > > Am 25.08.2010

where is the support?

2010-08-25 Thread Jesse
My site is stuck in maintenance mode I submitted a ticket to Heroku 18 hours ago - it is still unassigned I don't see any issues listed at http://status.heroku.com/ Heroku support where are you? - Jesse -- You received this message because you are subscribed to the Google Groups &q

Re: Force https?

2010-08-03 Thread Jesse
I guess you would say this is the 'manual' way to do it :) I use ssl_requirement gem .gems file specifies ssl_requirement in app/controllers/application.rb (still on rails 2.2.2) ... require 'ssl_requirement' class ApplicationController < ActionController::Base helper :all # include all help

Please help on rack-rewrite

2010-06-25 Thread Jesse
j...@home ~/work/voteforpoetry $ heroku config SITE_URL => voteforpoetry.com j...@home ~/work/voteforpoetry $ heroku domains Domain names for voteforpoetry.heroku.com: voteforpoetry.com www.voteforpoetry.com http://github.com/jtrupiano/rack-rewrite/issues/#issue/7 ## Gemfile gem 'ra

Re: sharing app on multiple machines

2010-05-11 Thread Jesse
Assembla also has Free Git and SVN hosting - http://www.assembla.com/plans A great resource for learning git is - the "Pro Git" book - I happen to own the book, but they have also made the entire thing available online for Free! (which is totally awesome) - http://progit.org/book/ On May 11, 12

Re: sharing app on multiple machines

2010-05-11 Thread Jesse
I would think you would want to use git (svn or other source control system) you would need to commit and update when switching machines - but this would be independent of Heroku commits I work on macbook and ubuntu desktop, when I switch I just make sure to commit and update for deployment to He

Re: App Monitoring

2010-03-25 Thread Jesse
that would be a nice add-on here is a rather naive monitoring script (rake task) replace the 'TODO's as needed http://gist.github.com/343625 I call this every 5 minutes via cron from my workstation, later I will probably install it on other machines that are outside of the Heroku and Amazon infra

Re: Database consistency and bundles/taps

2010-03-23 Thread Jesse
I don't know the answers to your questions but after an app is up and running (in production) I don't think you would ever want to call db:push? as it would be pushing data (and more) from your development database to production; I think it is meant as a starting point to initially launch your app

Re: Foreign Keys

2010-03-23 Thread Jesse
I believe you are right db:push and db:pull don't touch FKs; I also agree that FK are a good thing. If you create a migration file that generates your FKs it will create them when you run rake db:migrate on your heroku application as far as backups go the other option is the single bundle add on

daily cron scheduled time?

2010-03-17 Thread Jesse
:00pm, remove the addon and then add it back, is there an easier way? http://docs.heroku.com/cron Thanks, - Jesse -- 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

Rails 2.1

2008-07-05 Thread jesse
How do I upgrade to Rails 2.1 on my Heroku app? Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to heroku@googlegroups.com To unsubscribe from this group, send