toAppAttributesKeys method

AppAttributesKeys toAppAttributesKeys()

Implementation

AppAttributesKeys toAppAttributesKeys() {
  switch (this) {
    case 'DocumentRoot':
      return AppAttributesKeys.documentRoot;
    case 'RailsEnv':
      return AppAttributesKeys.railsEnv;
    case 'AutoBundleOnDeploy':
      return AppAttributesKeys.autoBundleOnDeploy;
    case 'AwsFlowRubySettings':
      return AppAttributesKeys.awsFlowRubySettings;
  }
  throw Exception('$this is not known in enum AppAttributesKeys');
}