files.rb in sourcerer-0.5.2 vs files.rb in sourcerer-0.6.0
- old
+ new
@@ -1,22 +1,28 @@
### Get Files from dir
begin
files_to_be_loaded = %w[version.rb]
- SpecFiles= Array.new
+ module Sourcerer
+ SpecFiles= Array.new
+ end
+
Dir[File.expand_path(File.join(File.dirname(__FILE__),"**","*"))].sort.uniq.each do |one_file_name|
one_file_name = File.expand_path one_file_name
file_name = one_file_name[(File.expand_path(File.dirname(__FILE__)).to_s.length+1)..(one_file_name.length-1)]
if !one_file_name.include?("pkg")
if !File.directory? file_name
- SpecFiles.push file_name
+
+ Sourcerer::SpecFiles.push file_name
+
STDOUT.puts file_name if $DEBUG
if files_to_be_loaded.include? one_file_name.split(File::SEPARATOR).last
load one_file_name
end
+
end
end
end
\ No newline at end of file