-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
47 changed files
with
3,108 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Xcode | ||
# | ||
# https://github.com/github/gitignore | ||
|
||
## Build generated | ||
build/ | ||
DerivedData | ||
|
||
## Various settings | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata | ||
|
||
## Other | ||
*.xccheckout | ||
*.moved-aside | ||
*.xcuserstate | ||
*.xcscmblueprint | ||
|
||
## Obj-C/Swift specific | ||
*.hmap | ||
*.ipa | ||
|
||
## CocoaPods | ||
Pods/ | ||
|
||
## Carthage | ||
Carthage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
swift: | ||
enabled: true | ||
config_file: .swiftlint.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
disabled_rules: | ||
- file_length | ||
- line_length | ||
- type_body_length | ||
excluded: | ||
- Carthage | ||
- Pods |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
language: objective-c | ||
osx_image: xcode7.2 | ||
env: | ||
matrix: | ||
- VERSION=8.4 | ||
- VERSION=latest | ||
cache: | ||
bundler: true | ||
directories: | ||
- vendor/bundle | ||
- Pods | ||
before_install: | ||
- export LANG=en_US.UTF-8 | ||
install: | ||
- make install | ||
before_script: | ||
- xcodebuild -workspace ICInputAccessory.xcworkspace -list | ||
script: | ||
- bundle exec rake ci:test[$VERSION] | ||
notifications: | ||
email: false | ||
slack: | ||
secure: 0k+ZnAEwVDd1BHTs/2Xybm9UWD8A56kf5UwXurGC95scHXL8y8ANWrpuyNXv6Q6eaEAi9scFPJryZoSAUfaz8uS1lKdJyeuVqw9LAxJ7ouV/ViErOwA7tZ/DdUc6zHlx+ORUTEPIFR4ZcTASfY5vds7gFRa6St6qtOjMYv9imiud+hSF5jTeADOqxlANKy/cQCeGhtcuiJ49NydIIwOb6F3FhOcyT0uSsJ0OAr2KTOmFRlJ44/m/4NfSrkuIWhuYSqqGJUUAWtVvDWqag9N8RwFcEEr1ahTJypPRfHITHTbz07jC1M7zqdb7RFA3ZX26cs+mt+R657ToVRxmQA8cGWx9waN3tWNVKgSxww3fMa2j+xBxghDhEI7m7YdGBIF3Mx1N2gKNEunSxp/p+mzudQI6c8DheSknIriuvsJfZNe1Xb16UMpG5D199Izsj5m8avw4T+foBlb1yP6ARh/27LxJcj9Lbly3Ep3Jr5Msz22rq0+IFdvNyK2DVldvrVGHEmy66R+i9ZZl7On8oThacMhfjrF2kOGmkvnwVbk1YjbuXvi5qLiUVZkjpSwvMGzFZl2R1XSzflybNrAMOeZpFYJuCbk+8tFXM7xYn+nupLocmNSN7x6MjZxoYunHCbFyHT9hHNRbHin+yA1IpKmRpuFjT88JMK0u1WPlB+4+T6o= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
brew "swiftlint" | ||
brew "xcproj" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## v1.0.0 | ||
|
||
Initial release written in Swift 2.1. | ||
|
||
#### Added | ||
|
||
* `ICKeyboardDismissTextField` with an accessory view to dismiss keyboard. | ||
* `ICTokenField`, a text field that groups input texts as tokens. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
disabled_rules: | ||
- file_length | ||
- line_length | ||
- type_body_length | ||
included: | ||
- ../Source |
Oops, something went wrong.