lib/feature_gate.rb in feature_gate-0.0.9 vs lib/feature_gate.rb in feature_gate-0.1.0
- old
+ new
@@ -1,5 +1,11 @@
+require 'active_support/dependencies'
+
module FeatureGate
+ # Our host application root path
+ # We set this when the engine is initialized
+ mattr_accessor :app_root
+
# Yield self on setup for nice config blocks
def self.setup
yield self
end
end