remove parfait module magic

since we are now ruby sorcerers, not just wizards, we remove the Parfait module in the compiler (Still have to avoid the name clashes)
This commit is contained in:
2019-09-09 11:54:45 +03:00
parent 104f4c5109
commit fc8de10964
5 changed files with 26 additions and 18 deletions

View File

@ -20,12 +20,12 @@ module Parfait
end
end
["object" , "data_object","integer","factory" ].each do |file_name|
path = File.expand_path( "../parfait/#{file_name}.rb" , __FILE__)
module_eval( File.read path)
end
end
require_relative "parfait/object"
require_relative "parfait/data_object"
require_relative "parfait/integer"
require_relative "parfait/factory"
require_relative "parfait/behaviour"
require_relative "parfait/class"
require_relative "parfait/meta_class"