Skip to content

Commit

Permalink
Merge pull request #16 from dtrenz/develop
Browse files Browse the repository at this point in the history
Merging in v1.0.0 updates from develop for release.
  • Loading branch information
dtrenz committed Feb 12, 2016
2 parents 7de3830 + 6fe0de8 commit bc89df7
Show file tree
Hide file tree
Showing 51 changed files with 2,922 additions and 28 deletions.
11 changes: 2 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,11 @@ xcuserdata
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build
Pods/

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
Expand Down
3 changes: 3 additions & 0 deletions .hound.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
swift:
enabled: true
config_file: .swiftlint.yml
13 changes: 13 additions & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
disabled_rules: # rule identifiers to exclude from running
- variable_name
# Find all the available rules by running:
# swiftlint rules
included: # paths to include during linting. `--path` is ignored if present.
- Source
# parameterized rules can be customized from this configuration file
line_length: 120
# parameterized rules are first parameterized as a warning level, then error level.
type_body_length:
- 300 # warning
- 400 # error
# reporter: "csv" # reporter type (xcode, json, csv, checkstyle)
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
branches:
only:
- develop
- master
language: objective-c
osx_image: xcode7.2
notifications:
slack:
rooms:
secure: RttO1aBKAm9r6DYsJuSs9DtCcw3HlrT43rmWJmNCpFA0Lq5TuI/LugBtGgiIbK4W4E1qIB+ouQwffQET4B+dI32hFBzlZb9Q9mpLX0RYwPjFg3pheIH8pm+iOUBBH590qGSGLk+Mcybm88bCRpXTHW8l6o6a/lClsKscK4khLvTYrxcDFi4chAvmh4egrXPYK7T2FPd57JIsIGmCCBwYsMoxK1sFFI32EuRFW9tWD1skX0HkJhkk54e5GADiMkKDSlp+lAa+9c2LMjpGDDS5hx+ljPGeFisS39dYvtMh5gS1sYXMHtvcDERl7V9HyvLdlcF1aYzGFxRi6eMu5GxQT//e/P1+MJkxcYibxnehTUpLMYd8bsIU2Sqz+VLzxbqfQUzliRAvEQ0J/SQlw3L52MJqbGk0GnRO7ZkarHj2j3AtfMIUi+U4FGJXZ4HZ8PG9IZTNBFoE8F2+f8PaPDrdtr6LG330rEJtK3bMqb6AsCASEe7ukfclOUKZSERAwzYDVFet1LvVkQoYdnxwfwk6qbonnrXtB0s1Dd9QAQonuxI7DcHGti6/Rsjk1xCAL78KmGXLTaPDBHRKiMtCIsnj1IS8ruuDl84AXn9vlTVzzYms2asCqCchvdc0cx4FboquLpxfm9INjPB+3DrYYCQdhAqI/9hrN82kmMxWNwm4XlQ=
on_pull_requests: false
on_failure: always
on_start: never
on_success: change
before_install:
- gem install cocoapods
- pod install
script:
- set -o pipefail && xcodebuild clean test -workspace LaunchGate.xcworkspace -scheme LaunchGate -destination 'platform=iOS Simulator,name=iPhone 6s' ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Change Log
All notable changes to this project will be documented in this file.
`LaunchGate` adheres to [Semantic Versioning](http://semver.org/).

## [1.0.0](https://github.com/dtrenz/LaunchGate/releases/tag/1.0.0)
Released on 2016-02-12.

#### Added
- Core feature set for initial release:
- Required update behavior
- Optional update behavior
- Alert (blocking + non-blocking) behavior
- Ability to provide custom configuration parser
- Documentation & Screenshots
- Example iOS project

#### Updated
- NA

#### Fixed
- NA

---
Binary file added Docs/Screenshots/alert-blocking.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/Screenshots/alert-nonblocking.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/Screenshots/optional-update.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/Screenshots/required-update.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Example/.swiftlint.yml
Loading

0 comments on commit bc89df7

Please sign in to comment.