From 27f22774b112c613d88edae351ac1fe15ee59441 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Sat, 14 Sep 2013 20:20:59 +0200 Subject: [PATCH] Move specs location one level down --- spec/Gemfile => Gemfile | 0 spec/Gemfile.lock => Gemfile.lock | 0 spec/{spec => }/loading_spec.rb | 0 spec/{spec => }/spec_helper.rb | 2 +- 4 files changed, 1 insertion(+), 1 deletion(-) rename spec/Gemfile => Gemfile (100%) rename spec/Gemfile.lock => Gemfile.lock (100%) rename spec/{spec => }/loading_spec.rb (100%) rename spec/{spec => }/spec_helper.rb (91%) diff --git a/spec/Gemfile b/Gemfile similarity index 100% rename from spec/Gemfile rename to Gemfile diff --git a/spec/Gemfile.lock b/Gemfile.lock similarity index 100% rename from spec/Gemfile.lock rename to Gemfile.lock diff --git a/spec/spec/loading_spec.rb b/spec/loading_spec.rb similarity index 100% rename from spec/spec/loading_spec.rb rename to spec/loading_spec.rb diff --git a/spec/spec/spec_helper.rb b/spec/spec_helper.rb similarity index 91% rename from spec/spec/spec_helper.rb rename to spec/spec_helper.rb index b9205d2..b2cd9a2 100755 --- a/spec/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,7 +1,7 @@ require 'vimrunner' require 'vimrunner/rspec' -PLUGIN_PATH = File.expand_path('../../..', __FILE__) +PLUGIN_PATH = File.expand_path('../..', __FILE__) puts PLUGIN_PATH Vimrunner::RSpec.configure do |config|