Skip to content

Instantly share code, notes, and snippets.

View aaronbartell's full-sized avatar
🥓
Happy

Aaron Bartell aaronbartell

🥓
Happy
View GitHub Profile
@aaronbartell
aaronbartell / config.log2014-08-14.09:23
Last active August 29, 2015 14:04
jffi OS400 build log
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by libffi configure 3.0.10, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ /home/aaron/git/jffi/jni/libffi/configure --disable-static --with-pic=yes --disable-dependency-tracking
## --------- ##
## Platform. ##
@aaronbartell
aaronbartell / gist:8872852
Created February 7, 2014 22:00
mixin test
module Foo
def a1
puts "a1: I am a #{self.class.name}"
end
def Foo.a2
puts "a2: I am a #{self.class.name}"
end
def self.a3
puts "a3: I am a #{self.class.name}"
end