Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 1.27 KB

README.md

File metadata and controls

21 lines (18 loc) · 1.27 KB

Sensazonal

Actions Status codebeat badge codecov

Requiremetnts

  • Xcode 11.10+
  • Homebrew
  • Carthage
  • SwiftLint

Setup Enviroment

  • Clone the repository: git clone git@gitlab.com:ronanrodrigo/Sensazonal.git
  • Access the project folder and run setup script: ./Support/setup

Organization

  • Core: A cross-platform package, contains protocol definitions and business rules implementation. Not allowed external dependencies here, all code here should run fast and without influence from third party libraries;
  • Share: Also a cross-platform package, but implementing some protocols defined at Core (mostly Gateways). Allowed external dependencies here;
  • iOS: Platform-specific code, implementing some protocols from Core (mostly Presenters) and using Share and Core to execute the use cases. In the future, there will be versions for macOS, tvOS, shell, web and others.