module FileSet

def glob(glob_pattern, file_path=nil)


FileSet.glob('padrino-core/application/*.rb', __FILE__) { |file| load file }
Returns the list of files matching the glob pattern
Iterates over every file in the glob pattern and yields to a block
#
def glob(glob_pattern, file_path=nil)
  glob_pattern = File.join(File.dirname(file_path), glob_pattern) if file_path
  file_list = Dir.glob(glob_pattern).sort
  file_list.each{ |file| yield(file) }
  file_list
end

def glob_require(glob_pattern, file_path=nil)


FileSet.glob_require('padrino-core/application/*.rb', __FILE__)
Requires each file matched in the glob pattern into the application
#
def glob_require(glob_pattern, file_path=nil)
  glob(glob_pattern, file_path) { |f| require f }
end