summaryrefslogtreecommitdiff
path: root/lib/rcm.rb
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-12-06 23:52:43 +0200
committerPaul Buetow <paul@buetow.org>2024-12-06 23:52:43 +0200
commit7c23b27007ca62ff545411aa3d1200fce4eec8c9 (patch)
tree86e4215580368b5c6f164bb79c2a0f91f479c7f1 /lib/rcm.rb
parent36c00a4509e745e4b29b1194faca4dca830a9b95 (diff)
refactor
Diffstat (limited to 'lib/rcm.rb')
-rw-r--r--lib/rcm.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/rcm.rb b/lib/rcm.rb
index 1f45c39..e341405 100644
--- a/lib/rcm.rb
+++ b/lib/rcm.rb
@@ -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