This file contains hidden or 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
// MARK: - LocalStorageType | |
protocol LocalStorageType { | |
func storageKey<Element: Storable>(of type: Element.Type) -> String | |
@discardableResult func append<Element: Storable>(_ value: Element) -> Bool | |
func element<Element: Storable>(of type: Element.Type) -> Element? | |
func array<Element: Storable>(of type: Element.Type) -> [Element] | |
@discardableResult func update<Element: Storable>(_ value: Element) -> Bool | |
@discardableResult func remove<Element: Storable>(_ value: Element) -> Bool |
This file contains hidden or 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
enum Section: Int { | |
case name | |
case newFeature | |
case preview | |
} | |
func compositionLayout() -> UICollectionViewLayout { | |
let layout = UICollectionViewCompositionalLayout { index, environment in | |
guard let section = Section(rawValue: index) else { return nil } | |
let sectionLayout: NSCollectionLayoutSection |
This file contains hidden or 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
def bump_version | |
require 'yaml' | |
project_file_path = "../project.yml" | |
project = YAML.load_file(project_file_path) | |
setting_groups = project["settingGroups"] || {} | |
app_base_settings = setting_groups["appBaseSettings"] || {} | |
current_version = app_base_settings["MARKETING_VERSION"] | |
current_build_number = app_base_settings["CURRENT_PROJECT_VERSION"] || 0 |
This file contains hidden or 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
π Morning 65 commits βββββββββββββββββββββ 15.1% | |
π Daytime 122 commits βββββββββββββββββββββ 28.3% | |
π Evening 182 commits βββββββββββββββββββββ 42.2% | |
π Night 62 commits βββββββββββββββββββββ 14.4% |
This file contains hidden or 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
import ReactorKit | |
final class MainTabBarViewReactor: Reactor { | |
typealias Action = NoAction | |
struct State { | |
} | |
let initialState: State = State() | |
} |