Skip to content

Instantly share code, notes, and snippets.

@kunalmodi
kunalmodi / gist:4063847
Created November 13, 2012 04:00
Heroku Memcached Error
Installing memcached (1.4.6) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/tmp/build_28lz4acu67dtj/vendor/ruby-1.9.3/bin/ruby extconf.rb
extconf.rb:7: Use RbConfig instead of obsolete and deprecated Config.
Touching all files so autoconf doesn't run.
find . | xargs touch
Configuring libmemcached.
env CFLAGS='-fPIC -O3 -ggdb -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=implicit-function-declaration ' LDFLAGS='-fPIC -L. -rdynamic -Wl,-export-dynamic -L. -rdynamic -Wl,-export-dynamic -L/tmp/build_28lz4acu67dtj/vendor/ruby-1.9.3/lib' ./configure --prefix=/tmp/build_28lz4acu67dtj/vendor/bundle/ruby/1.9.1/gems/memcached-1.4.6/ext --without-memcached --disable-shared --disable-utils --disable-dependency-tracking CC="gcc" 2>&1
checking build system type... x86_64-unknown-linux-gnu
@kunalmodi
kunalmodi / heroku log tail
Created September 21, 2012 04:19
sidekiq glyphicons-halflings.png
2012-09-21T04:10:15+00:00 app[web.1]: Started GET "/sidekiq" for 98.207.109.91 at 2012-09-21 04:10:15 +0000
2012-09-21T04:10:15+00:00 heroku[router]: GET .herokuapp.com/sidekiq dyno=web.1 queue=0 wait=0ms service=10ms status=301 bytes=11
2012-09-21T04:10:15+00:00 app[web.1]:
2012-09-21T04:10:15+00:00 app[web.1]:
2012-09-21T04:10:15+00:00 app[web.1]: Started GET "/sidekiq/" for 98.207.109.91 at 2012-09-21 04:10:15 +0000
2012-09-21T04:10:16+00:00 heroku[router]: GET .herokuapp.com/sidekiq/ dyno=web.1 queue=0 wait=0ms service=102ms status=200 bytes=2467
2012-09-21T04:10:16+00:00 app[web.1]:
2012-09-21T04:10:16+00:00 app[web.1]:
2012-09-21T04:10:16+00:00 app[web.1]: Started GET "/sidekiq/assets/application.css" for 98.207.109.91 at 2012-09-21 04:10:16 +0000
2012-09-21T04:10:16+00:00 heroku[router]: GET .herokuapp.com/sidekiq/assets/application.css dyno=web.1 queue=0 wait=0ms service=14ms status=304 bytes=0
module RetryableTyphoeus
require 'typhoeus'
include Typhoeus
DEFAULT_RETRIES = 1
class Request < Typhoeus::Request
def original_on_complete=(proc)
@original_on_complete = proc