This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if page.id %} | |
I'm a post! | |
{% else %} | |
I'm a page! | |
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: default | |
--- | |
<h3>{{ page.title }}</h3> | |
{{ content }} | |
<div id="disqus_thread"></div> | |
<script type="text/javascript" src="http://disqus.com/forums/ralphsblog/embed.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="{{post.url}}#disqus_thread">View Comments</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Capistrano Recipes for managing delayed_job on SUN Solaris | |
# | |
# Add these callbacks to have the delayed_job process restart when the server | |
# is restarted: | |
# | |
# after "deploy:stop", "delayed_job:stop" | |
# after "deploy:start", "delayed_job:start" | |
# after "deploy:restart", "delayed_job:restart" | |
Capistrano::Configuration.instance.load do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
yum -y install make gcc-c++ zlib-devel openssl-devel | |
yum -y install ruby-devel ruby-irb ruby-rdoc ruby-ri | |
cd /tmp | |
curl -O http://production.cf.rubygems.org/rubygems/rubygems-1.3.7.tgz | |
tar xfz rubygems-1.3.7.tgz | |
ruby rubygems-1.3.7/setup.rb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# Processor for Github flavored markdown, inspired by: | |
# https://github.com/alampros/Docter/blob/master/bin/github-flavored-markdown.rb | |
# | |
# Current version of this script can be found here: | |
# https://gist.github.com/1300939 | |
# | |
# Adapted for Redcarpet version 2 by Ralph von der Heyden | |
# http://github.com/ralph | |
# http://twitter.com/ralph |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/configure b/configure | |
index 10f7d1b..631bb47 100755 | |
--- a/configure | |
+++ b/configure | |
@@ -1,83 +1,60 @@ | |
#! /bin/sh | |
# Guess values for system-dependent variables and create Makefiles. | |
-# Generated by GNU Autoconf 2.68. | |
-# | |
+# Generated by GNU Autoconf 2.61. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl http://files.rubyforge.vm.bytemark.co.uk/ruby-debug19/linecache19-0.5.13.gem \ | |
> vendor/cache/linecache19-0.5.13.gem | |
curl http://files.rubyforge.vm.bytemark.co.uk/ruby-debug19/ruby-debug-base19-0.11.26.gem \ | |
> vendor/cache/ruby-debug-base19-0.11.26.gem | |
bundle config build.ruby-debug-base19 \ | |
--with-ruby-include=$rvm_path/src/`rvm current | sed 's/@.*//'` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Run options: | |
# Running tests: | |
.. | |
Finished tests in 0.000774s, 2583.9793 tests/s, 2583.9793 assertions/s. | |
2 tests, 2 assertions, 0 failures, 0 errors, 0 skips |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install https://raw.github.com/adamv/homebrew-alt/master/duplicates/autoconf.rb | |
brew link autoconf | |
brew install https://raw.github.com/adammw/homebrew-alt/automake/duplicates/automake.rb | |
brew link automake | |
rvm cleanup all | |
rvm install 1.9.3-perf --patch falcon,debug |
OlderNewer