diff options
| author | Paul Buetow <paul@buetow.org> | 2024-12-06 23:52:43 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-12-06 23:52:43 +0200 |
| commit | 7c23b27007ca62ff545411aa3d1200fce4eec8c9 (patch) | |
| tree | 86e4215580368b5c6f164bb79c2a0f91f479c7f1 /lib/rcm.rb | |
| parent | 36c00a4509e745e4b29b1194faca4dca830a9b95 (diff) | |
refactor
Diffstat (limited to 'lib/rcm.rb')
| -rw-r--r-- | lib/rcm.rb | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,11 +1,15 @@ -Dir["#{Dir.pwd}/lib/autorequire/*.rb"].each { |m| require m } +require_relative 'config' +require_relative 'options' +require_relative 'log' + +Dir["#{Dir.pwd}/lib/dslkeywords/*.rb"].each { |m| require m } # Ruby Configiration Management system module RCM # Here all starts class RCM attr_reader :id - + @@rcm_counter = 0 include Config |
