ResultadosDigitais/feature_flagger

View on GitHub
lib/feature_flagger/manifest_sources/storage_only.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module FeatureFlagger
  module ManifestSources
    class StorageOnly
      def initialize(storage)
        @storage = storage
      end

      def resolved_info
        YAML.load(@storage.read_manifest_backup)
      end
    end
  end
end