-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganize project, add Carthage support, add nullability support, mi…
…nor refactoring
- Loading branch information
1 parent
f13a9a5
commit a8cf37a
Showing
48 changed files
with
1,338 additions
and
996 deletions.
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 |
---|---|---|
@@ -1,28 +1,34 @@ | ||
# OS X Finder | ||
# OS X | ||
.DS_Store | ||
|
||
# Xcode per-user config | ||
*.mode1 | ||
# Xcode | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
*.perspective | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
*.pbxuser | ||
xcuserdata | ||
|
||
# Build products | ||
build/ | ||
*.o | ||
*.LinkFileList | ||
!default.perspectivev3 | ||
xcuserdata/ | ||
*.xccheckout | ||
profile | ||
*.moved-aside | ||
DerivedData | ||
*.hmap | ||
*.ipa | ||
|
||
# Automatic backup files | ||
*~.nib/ | ||
*.swp | ||
*~ | ||
*.dat | ||
*.dep | ||
# Bundler | ||
.bundle | ||
|
||
# AppCode specific files | ||
.idea/ | ||
*.iml | ||
Carthage | ||
# We recommend against adding the Pods directory to your .gitignore. However | ||
# you should judge for yourself, the pros and cons are mentioned at: | ||
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control | ||
# | ||
# Note: if you ignore the Pods directory, make sure to uncomment | ||
# `pod install` in .travis.yml | ||
# | ||
Pods/ | ||
Example/Podfile.lock |
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,14 @@ | ||
# references: | ||
# * http://www.objc.io/issue-6/travis-ci.html | ||
# * https://github.com/supermarin/xcpretty#usage | ||
|
||
osx_image: xcode7.3 | ||
language: objective-c | ||
# cache: cocoapods | ||
# podfile: Example/Podfile | ||
# before_install: | ||
# - gem install cocoapods # Since Travis is not always on latest version | ||
# - pod install --project-directory=Example | ||
script: | ||
- set -o pipefail && xcodebuild test -workspace Example/APNumberPad.xcworkspace -scheme APNumberPad-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty | ||
- pod lib lint |
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 |
---|---|---|
@@ -1,17 +1,27 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'APNumberPad' | ||
s.version = '1.1.3' | ||
s.summary = 'Full clone of iOS number keyboard with customizable function button' | ||
s.description = 'Custom keyboard for iOS allows you to create a keyboard inputView '\ | ||
'that looks and feels just like the iPhone keyboard '\ | ||
'with UIKeyboardTypeNumberPad as keyboardType. '\ | ||
'Also APNumberPad provides customizable left-function button.' | ||
s.homepage = 'https://github.com/podkovyrin/APNumberPad' | ||
s.license = 'MIT' | ||
s.author = { 'Andrew Podkovyrin' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/podkovyrin/APNumberPad.git', :tag => s.version.to_s } | ||
s.platform = :ios, '6.0' | ||
s.source_files = 'APNumberPad/APNumberPad/*.{h,m}' | ||
s.resources = 'APNumberPad/APNumberPad.bundle' | ||
s.requires_arc = true | ||
s.name = 'APNumberPad' | ||
s.version = '1.2.0' | ||
s.summary = 'Full clone of iOS number keyboard with customizable function button' | ||
|
||
s.description = <<-DESC | ||
Custom keyboard for iOS allows you to create a keyboard inputView | ||
that looks and feels just like the iPhone keyboard | ||
with UIKeyboardTypeNumberPad as keyboardType. | ||
Also APNumberPad provides customizable left-function button. | ||
DESC | ||
|
||
s.homepage = 'https://github.com/podkovyrin/APNumberPad' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'Andrew Podkovyrin' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/podkovyrin/APNumberPad.git', :tag => s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/podkovyr' | ||
|
||
s.ios.deployment_target = '8.2' | ||
|
||
s.source_files = 'APNumberPad/Classes/**/*' | ||
s.resource_bundles = { | ||
'APNumberPad' => ['APNumberPad/Assets/*.png'] | ||
} | ||
|
||
s.frameworks = 'UIKit' | ||
end |
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
APNumberPad.xcodeproj/project.xcworkspace/xcshareddata/APNumberPad.xccheckout
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
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
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
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
Oops, something went wrong.