From b52ab6dd8613343b2ca56643c13f667336ef3e49 Mon Sep 17 00:00:00 2001 From: elliottcable Date: Thu, 5 Mar 2009 14:43:51 -0900 Subject: [PATCH] Adding a new Window class --- lib/nfoiled/window.rb | 5 +++++ spec/nfoiled/window_spec.rb | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 lib/nfoiled/window.rb create mode 100644 spec/nfoiled/window_spec.rb diff --git a/lib/nfoiled/window.rb b/lib/nfoiled/window.rb new file mode 100644 index 0000000..6ca3674 --- /dev/null +++ b/lib/nfoiled/window.rb @@ -0,0 +1,5 @@ +module Nfoiled + class Window + + end +end diff --git a/spec/nfoiled/window_spec.rb b/spec/nfoiled/window_spec.rb new file mode 100644 index 0000000..59111ea --- /dev/null +++ b/spec/nfoiled/window_spec.rb @@ -0,0 +1,5 @@ +require File.expand_path(File.join( File.dirname(__FILE__), '..', 'spec_helper' )) + +describe Nfoiled::Window do + it "should be awesome" +end -- 2.11.4.GIT