-
Notifications
You must be signed in to change notification settings - Fork 24.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix] backport FlipperConfiguration from main (#34098)
- Loading branch information
Riccardo
authored
Jul 7, 2022
1 parent
587eb4e
commit 23accbf
Showing
5 changed files
with
52 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright (c) Meta Platforms, Inc. and affiliates. | ||
# | ||
# This source code is licensed under the MIT license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
# Helper class to configure flipper | ||
class FlipperConfiguration | ||
attr_reader :flipper_enabled | ||
attr_reader :configurations | ||
attr_reader :versions | ||
|
||
def initialize(flipper_enabled, configurations, versions) | ||
@flipper_enabled = flipper_enabled | ||
@configurations = configurations | ||
@versions = versions | ||
end | ||
|
||
def self.enabled(configurations = ["Debug"], versions = {}) | ||
FlipperConfiguration.new(true, configurations, versions) | ||
end | ||
|
||
def self.disabled | ||
FlipperConfiguration.new(false, [], {}) | ||
end | ||
|
||
def == (other) | ||
return @flipper_enabled == other.flipper_enabled && | ||
@configurations == other.configurations && | ||
@versions == other.versions | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters