Skip to content

Commit a69f2d7

Browse files
committed
Merge branch 'release/1.0.0'
2 parents e02bc4a + 0b30ead commit a69f2d7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+3108
-1
lines changed

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Xcode
2+
#
3+
# https://github.com/github/gitignore
4+
5+
## Build generated
6+
build/
7+
DerivedData
8+
9+
## Various settings
10+
*.pbxuser
11+
!default.pbxuser
12+
*.mode1v3
13+
!default.mode1v3
14+
*.mode2v3
15+
!default.mode2v3
16+
*.perspectivev3
17+
!default.perspectivev3
18+
xcuserdata
19+
20+
## Other
21+
*.xccheckout
22+
*.moved-aside
23+
*.xcuserstate
24+
*.xcscmblueprint
25+
26+
## Obj-C/Swift specific
27+
*.hmap
28+
*.ipa
29+
30+
## CocoaPods
31+
Pods/
32+
33+
## Carthage
34+
Carthage/

.hound.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
swift:
2+
enabled: true
3+
config_file: .swiftlint.yml

.swiftlint.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
disabled_rules:
2+
- file_length
3+
- line_length
4+
- type_body_length
5+
excluded:
6+
- Carthage
7+
- Pods

.travis.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
language: objective-c
2+
osx_image: xcode7.2
3+
env:
4+
matrix:
5+
- VERSION=8.4
6+
- VERSION=latest
7+
cache:
8+
bundler: true
9+
directories:
10+
- vendor/bundle
11+
- Pods
12+
before_install:
13+
- export LANG=en_US.UTF-8
14+
install:
15+
- make install
16+
before_script:
17+
- xcodebuild -workspace ICInputAccessory.xcworkspace -list
18+
script:
19+
- bundle exec rake ci:test[$VERSION]
20+
notifications:
21+
email: false
22+
slack:
23+
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=

Brewfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
brew "swiftlint"
2+
brew "xcproj"

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## v1.0.0
2+
3+
Initial release written in Swift 2.1.
4+
5+
#### Added
6+
7+
* `ICKeyboardDismissTextField` with an accessory view to dismiss keyboard.
8+
* `ICTokenField`, a text field that groups input texts as tokens.

Example/.swiftlint.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
disabled_rules:
2+
- file_length
3+
- line_length
4+
- type_body_length
5+
included:
6+
- ../Source

0 commit comments

Comments
 (0)