Project

boa

0.04
No commit activity in last 3 years
No release in over 3 years
This gem provides VIPER initialization and module generation functionalities.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
>= 0

Runtime

>= 0
 Project Readme

Boa

Boa is a simple gem to initialize VIPER projects and add modules to them.

Requirements

  • Objective-C or Swift 3.x

Installation

Install gem with:

$ gem install boa

Usage

  1. Create an Xcode project

  2. Initialize basic VIPER structure with

boa init
  1. Input
  • your project name
  • preferred language
  • author

class prefix

(these will be used in generated files). You can change these settings in .boa.yml

  1. Create your module with
boa module create Example

You can use saved configuration by just pressing enters.

Changes

v0.3

  • Swift syntax added

v0.2

  • added class prefix option
  • added basic appledoc comments for interfaces and protocols
  • using new instead of alloc-init

v0.1

  • initial version

Contributing

Contributions are always welcome! :)

  1. Fork it ( http://github.com/jbslabs/boa/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request