Module: Ruboss4Ruby
- Defined in:
- lib/ruboss4ruby.rb,
lib/ruboss4ruby/configuration.rb
Overview
Sets up all the relevant configuration options and brings together patches for Rails, Merb, ActiveRecord and Data Mapper.
Loads Ruboss specific rake tasks if appropriate.
Defined Under Namespace
Modules: Configuration
Constant Summary collapse
- VERSION =
:stopdoc:
'1.1.2'
- RUBOSS_FRAMEWORK_VERSION =
'1.1.2'
- LIB_DIR =
File.join(File.dirname(__FILE__), 'ruboss4ruby/')
Class Method Summary collapse
-
.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.
-
.version ⇒ Object
Returns the version string for the library.
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.
24 25 26 27 28 29 30 |
# File 'lib/ruboss4ruby.rb', line 24 def self.require_all_libs_relative_to( fname, dir = nil ) dir ||= ::File.basename(fname, '.*') search_me = ::File.( ::File.join(::File.dirname(fname), dir, '*', '*.rb')) Dir.glob(search_me).sort.each {|rb| require rb} end |
.version ⇒ Object
Returns the version string for the library.
15 16 17 |
# File 'lib/ruboss4ruby.rb', line 15 def self.version VERSION end |