BathHacked/energy-sparks

View on GitHub
lib/energy_sparks/feature_flags.rb

Summary

Maintainability
A
0 mins
Test Coverage
module EnergySparks
  class FeatureFlags
    def self.active?(feature)
      ENV["FEATURE_FLAG_#{feature.to_s.upcase}"] == 'true'
    end
  end
end