From d28657a65b41530c2e271b68b0705c0276b79f12 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Thu, 5 Apr 2018 18:25:02 -0400 Subject: [PATCH] add Cxl::Config class --- lib/cxl/cxl/lib/cxl/config.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/cxl/cxl/lib/cxl/config.rb diff --git a/lib/cxl/cxl/lib/cxl/config.rb b/lib/cxl/cxl/lib/cxl/config.rb new file mode 100644 index 0000000..cf8ac9f --- /dev/null +++ b/lib/cxl/cxl/lib/cxl/config.rb @@ -0,0 +1,11 @@ +module Cxl + class Config + + include Singleton + + def c_preprocessor + %w[gcc -E] + end + + end +end