Module: Tannins
- Defined in:
- lib/tannins.rb
Constant Summary collapse
- VERSION =
:stopdoc:
'0.6'
- LIBPATH =
::File.(::File.dirname(__FILE__)) + ::File::SEPARATOR
- PATH =
::File.dirname(LIBPATH) + ::File::SEPARATOR
Class Method Summary collapse
-
.get_template(file_name) ⇒ Object
:startdoc:.
-
.libpath(*args) ⇒ Object
Returns the library path for the module.
-
.path(*args) ⇒ Object
Returns the lpath for the module.
-
.require_all_libs_relative_to(fname, dir = nil) ⇒ Object
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.
-
.version ⇒ Object
Returns the version string for the library.
Class Method Details
.get_template(file_name) ⇒ Object
:startdoc:
14 15 16 17 18 19 20 21 |
# File 'lib/tannins.rb', line 14 def self.get_template(file_name) file_path = File.join(Dir.pwd, "config", "templates", file_name) if File.exists?(file_path) return file_path else return "#{File.(File.dirname(__FILE__))}/templates" end end |
.libpath(*args) ⇒ Object
Returns the library path for the module. If any arguments are given, they will be joined to the end of the libray path using File.join
.
33 34 35 |
# File 'lib/tannins.rb', line 33 def self.libpath( *args ) args.empty? ? LIBPATH : ::File.join(LIBPATH, *args) end |
.path(*args) ⇒ Object
Returns the lpath for the module. If any arguments are given, they will be joined to the end of the path using File.join
.
41 42 43 |
# File 'lib/tannins.rb', line 41 def self.path( *args ) args.empty? ? PATH : ::File.join(PATH, *args) end |
.require_all_libs_relative_to(fname, dir = nil) ⇒ Object
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.
50 51 52 53 54 55 56 |
# File 'lib/tannins.rb', line 50 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.
25 26 27 |
# File 'lib/tannins.rb', line 25 def self.version VERSION end |