Sha256: b8be99a0ef037299e07fe02c1623520d59765839f6ed8ec9cf5ccb23be415ac7

Contents?: true

Size: 1.18 KB

Versions: 1

Compression:

Stored size: 1.18 KB

Contents

# $Id: bones.rb 509 2008-02-08 17:17:53Z tim_pease $

module Bones

  # :stopdoc:
  VERSION = '1.3.3'
  PATH = File.expand_path(File.join(File.dirname(__FILE__), '..'))
  WIN32 = %r/win32/ =~ RUBY_PLATFORM
  DEV_NULL = WIN32 ? 'NUL:' : '/dev/null'
  # :startdoc:

  # call-seq:
  #    Bones.require_all_libs_relative_to( filename, directory = nil )
  #
  # Utility method used to rquire all files ending in .rb that lie in the
  # directory below this file that has the same name as the filename passed
  # in. Optionally, a specific _directory_ name can be passed in such that
  # the _filename_ does not have to be equivalent to the directory.
  #
  def self.require_all_libs_relative_to( fname, dir = nil )
    dir ||= File.basename(fname, '.*')
    search_me = File.expand_path(
        File.join(File.dirname(fname), dir, '**', '*.rb'))

    Dir.glob(search_me).sort.each {|rb| require rb}
  end

  # TODO: fix file lists for Test::Unit and RSpec
  #       these guys are just grabbing whatever is there and not pulling
  #       the filenames from the manifest

  # TODO: create some tasks to generate e-mails / announcements
  
end  # module Bones


Bones.require_all_libs_relative_to __FILE__

# EOF

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bones-1.3.3 lib/bones.rb