From 6cfba1c2fe872dfffca07e6441c3e1f6275ead48 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 30 Jun 2013 20:09:18 -0400 Subject: [PATCH] create Builder constructor --- lib/rscons/builder.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/rscons/builder.rb b/lib/rscons/builder.rb index 38c3ba7..fd2d26e 100644 --- a/lib/rscons/builder.rb +++ b/lib/rscons/builder.rb @@ -1,4 +1,7 @@ module Rscons class Builder + def initialize(env) + @env = env + end end end