Skip to content

Commit

Permalink
Add Travis CI integration (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
alphatroya authored Oct 9, 2018
1 parent 0afd55d commit 594ffe0
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
language: objective-c
osx_image: xcode10
xcode_sdk: iphoneos11.0
env:
- MINT_PATH="~/mint_cache"
cache:
directories:
- $MINT_PATH
script:
- brew install cookiecutter mint
- cookiecutter --no-input .
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 Alexey Korolev

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.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# My iOS app template
# My new iOS app template

[![Build Status](https://travis-ci.com/alphatroya/swift-project-template.svg?branch=master)](https://travis-ci.com/alphatroya/swift-project-template)

## Description

Expand All @@ -7,10 +9,18 @@ tools for rapid project bootstraping.

## Usage

Make sure that `cookiecutter` and `mint` tools installed with `brew`.
Make sure that `cookiecutter` and `mint` tools are installed.

```sh
brew install cookiecutter mint
```

After that run `cookiecutter gh:alphatroya/swift-project-template`.

## Author

Alexey Korolev, [email protected]

## License

Project is available under the MIT license. See the LICENSE file for more info.
2 changes: 1 addition & 1 deletion hooks/post_gen_project.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ echo '.idea' >> .gitignore
# Trigger initial commit
git init
git add .
git commit -S -m "Initial commit"
git commit -m "Initial commit"
git checkout -b develop

0 comments on commit 594ffe0

Please sign in to comment.