Re: patron gem install issues

2010-11-10 Thread guillaume fradin
Thanks Dan, that'll do I am hoping to get a reply from support, also 2010/11/11 Dan Croak > I ran into the same thing earlier today. "Solved" it by switching to > RestClient. > > On Nov 10, 2010, at 6:38 PM, guillaume fradin < > guillaumefra...@googlemail.com&g

patron gem install issues

2010-11-10 Thread guillaume fradin
this error prevents me from deploying. Has any experienced this? Installing patron (0.4.10) with native extensions /usr/ruby1.8.7/lib/ruby/site_ruby/1.8/rubygems/installer.rb:483:in `build_extensions': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError)

Re: Asynchronous Solr indexing not working

2010-10-25 Thread guillaume fradin
rails 3.0.1 and those gems (I also had trouble with the one mentionned in the docs. could me because of my setup though) gem 'sunspot', '1.2rc2' gem 'sunspot_rails', '1.2rc2' 2010/10/25 Graeme Simpson > Thanks for the info Guillaume. I'll try that. > > Nick - I'm currently using Rails 2.3.10 (a

Re: Asynchronous Solr indexing not working

2010-10-24 Thread guillaume fradin
I had the exact same issue. so I replaced handle_asynchronously :solr_index with: after_save :sunspot_commit def sunspot_commit send_later :index_and_solr_index end def index_and_solr_index index! solr_index end and I know have what I expect. not sure why this needs to be done that way and no

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 course

Re: Crazy slow AJAX performance

2010-09-15 Thread Guillaume Fradin
Have you been able to solve this issue? I ran into the same problem and support has not been able to help. After quite some trial and error, I realised the problem only occured when the response contained a status :created so only in my create methods. I could then replace them from: respond_wi