Skip to content

Wolox/wolmo-core-ios

Repository files navigation

Build Status License CocoaPods compatible Carthage compatible Swift 5 codecov

WOLMO

WOLMO Core iOS is a framework which provides extensions and utilities for iOS commonly used at Wolox.

At Wolox, we complement this framework with Wolmo - Reactive Core.

Table of Contents

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. To use Wolmo Core in your project, update CocoaPods to version 1.10.2 or newer, and add this line to your Podfile.

pod 'WolmoCore'

Carthage

Carthage is a dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with Homebrew using the following command:

brew update
brew install carthage

To download wolmo-core-ios, add this to your Cartfile:

github "Wolox/wolmo-core-ios" ~> 4.1.0

Manually

Bootstrap the project and then drag it to your workspace.

Usage

The framework is divided into 2 sections: Utilities and Extensions.

The main difference between them is that utilities represent components that are independent of the existance of another component. On the other hand, extensions represent extra functionality for other existent components. Extensions exist only because the components they rely on exists.

Documentation

For more information check out the WolMo Core Documentation.

Examples

Animations & Gestures

AnimationDemo.mp4

ScrollStack View

Simulator.Screen.Recording.-.iPhone.12.-.2022-03-21.at.17.21.33.mp4

Bootstrap

git clone git@github.com:Wolox/wolmo-core-ios.git
cd wolmo-core-ios
script/bootstrap

Contributing

  1. Clone it
  2. Bootstrap the repository
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Run tests (./script/test)
  6. Push your branch (git push origin my-new-feature)
  7. Create a new Pull Request to the repository

About

This project is maintained by Wolox.

License

WolMo - Core iOS is available under the MIT license.

Copyright (c) 2016 Francisco Depascuali <francisco.depascuali@wolox.com.ar>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.