Module: Ruboss4Ruby

Defined in:
lib/ruboss4ruby.rb,
lib/ruboss4ruby/configuration.rb

Defined Under Namespace

Modules: Configuration

Constant Summary collapse

VERSION =

:stopdoc:

'1.1.0'
RUBOSS_FRAMEWORK_VERSION =
'1.1.0'
LIB_DIR =
File.join(File.dirname(__FILE__), 'ruboss4ruby/')

Class Method Summary collapse

Class Method Details

.require_all_libs_relative_to(fname, dir = nil) ⇒ Object

Utility method used to require 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.



20
21
22
23
24
25
26
# File 'lib/ruboss4ruby.rb', line 20

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

.versionObject

Returns the version string for the library.



11
12
13
# File 'lib/ruboss4ruby.rb', line 11

def self.version
  VERSION
end