Skip to content

Instantly share code, notes, and snippets.

========== test.rb ==========
module MixinModule
def say_hello
puts "Hello #{CLASS_CONSTANT}"
end
end
class SomeClass
CLASS_CONSTANT = 'FOO!'
include MixinModule
Shoes.app do
download 'http://127.0.0.1:3000', {:headers => {'test' => 'me'}} do |d|
end
end