lib/feature_gate.rb in feature_gate-0.2.2 vs lib/feature_gate.rb in feature_gate-0.2.3
- old
+ new
@@ -1,9 +1,7 @@
module FeatureGate
- class << self
- mattr_accessor :time_to_stale
- self.time_to_stale = 1.month
- end
+ mattr_accessor :time_to_stale
+ self.time_to_stale = 1.month
def self.setup
yield self
end
end