From 6abd5e7a55ccdfcf2fad4647c8ad2167b3a1bc58 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 --- .manifest | 1 + lib/nfoiled/window.rb | 5 +++++ spec/nfoiled/window_spec.rb | 5 +++++ 3 files changed, 11 insertions(+) create mode 100644 lib/nfoiled/window.rb create mode 100644 spec/nfoiled/window_spec.rb diff --git a/.manifest b/.manifest index a264c30..968ebbc 100644 --- a/.manifest +++ b/.manifest @@ -4,6 +4,7 @@ lib/nfoiled.rb LICENSE.text Rakefile.rb README.markdown +spec/nfoiled/window_spec.rb spec/nfoiled_spec.rb spec/spec_helper.rb .manifest 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