-
Occasionally I get some really weird errors when I try to install gems using
gem
orbundler
. It took me some time to find out the reason for this. Read on if you’d like to hear the full story.
-
Given you’re a professional website designer and would like to work on some wonderful project. This project might be about designing a new website with a blog and a shop for one of your favourite customers. To get involved in this project, she asked...
-
I use
middleman
for my own website. To make it easier for me to pickup my work over different machines , I added a small start script to the repository. In this article I’m going to show you how it works and how you can make use of it for your own...
-
Recently I added a Read-Eval-Print-Loop-Console (REPL)-console to the
aruba
-project as playground for our users similar to the one you find inrails
. This article first shows youaruba
’s console a bit and then describes how you can build your own console in Ruby with some help ofIRB
.
-
Having a suite testing a lot of features is a good thing. But if your project supports a lot of different Rubies – MRI-Ruby, JRuby etc. – you might face platform dependent bugs. Read on, if you like to know how we worked around some platform dependent bugs in
aruba
to keep the build status “green” on all support Rubies.
-
Some of my rubygems – e.g. proxy_pac_rb – either need a backing HTTP(S)-server for their tests or interact with some external web services via HTTP/HTTPS. To mock external services you can either use
VCR
,webmock
or just plainWebrick
. To serve data...
-
Do you know what: It’s that simple to setup an HTTP forwarding proxy (proxy) with ruby. The only thing you need is
webrick
’sHTTPProxyServer
-class.