-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introducing DrawerKit #2
Changes from 63 commits
4be3003
b392cca
4895d95
632633d
5c186e9
aa0f36f
1e79e2f
752abad
3c0b91c
878ca27
0255cbe
5ff1a8a
8c83b60
55da51d
dbcf49e
6e98524
dced881
a422b3d
3e736d1
f9ec01e
a0baa3b
39ca74d
69bf74f
88def74
c15c77f
4d18a70
21c030e
04cd82c
1801863
2490d08
b1afd54
79261da
d8d2271
bb5377f
e90bf24
4ecf66c
ac7c5ff
6787d07
eebde02
d15f081
37c1aad
88cf9dc
907befc
63233cd
1833625
bb77e30
ab99b5e
2ec596d
7b2a304
355d67a
a3f545b
7efb133
01b1974
53476c3
3cabcd6
412a27e
f52a637
d6734eb
a1ff7d7
0dda897
882795b
d096649
f590dc8
59fb582
561b449
557798a
c3b09d6
d42f7c7
60085af
e4fa1c7
6a3e3fd
942318c
eb46380
a2883fc
56bc186
9b4ba38
ed3decd
7fb4034
d9d81f5
122463f
f1338bf
12c5940
df37082
21e39d4
b1a2f1a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,190 @@ | ||
##### | ||
# OS X temporary files that should never be committed | ||
# | ||
# c.f. http://www.westwind.com/reference/os-x/invisibles.html | ||
|
||
.DS_Store | ||
|
||
# c.f. http://www.westwind.com/reference/os-x/invisibles.html | ||
|
||
.Trashes | ||
|
||
# c.f. http://www.westwind.com/reference/os-x/invisibles.html | ||
|
||
*.swp | ||
|
||
# *.lock - this is used and abused by many editors for many different things. | ||
# For the main ones I use (e.g. Eclipse), it should be excluded | ||
# from source-control, but YMMV | ||
|
||
*.lock | ||
|
||
# | ||
# profile - REMOVED temporarily (on double-checking, this seems incorrect; I can't find it in OS X docs?) | ||
#profile | ||
|
||
|
||
#### | ||
# Xcode temporary files that should never be committed | ||
# | ||
# NB: NIB/XIB files still exist even on Storyboard projects, so we want this... | ||
|
||
*~.nib | ||
|
||
|
||
#### | ||
# Xcode build files - | ||
# | ||
# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "DerivedData" | ||
|
||
DerivedData/ | ||
|
||
# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "build" | ||
|
||
build/ | ||
|
||
|
||
##### | ||
# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups) | ||
# | ||
# This is complicated: | ||
# | ||
# SOMETIMES you need to put this file in version control. | ||
# Apple designed it poorly - if you use "custom executables", they are | ||
# saved in this file. | ||
# 99% of projects do NOT use those, so they do NOT want to version control this file. | ||
# ..but if you're in the 1%, comment out the line "*.pbxuser" | ||
|
||
# .pbxuser: http://lists.apple.com/archives/xcode-users/2004/Jan/msg00193.html | ||
|
||
*.pbxuser | ||
|
||
# .mode1v3: http://lists.apple.com/archives/xcode-users/2007/Oct/msg00465.html | ||
|
||
*.mode1v3 | ||
|
||
# .mode2v3: http://lists.apple.com/archives/xcode-users/2007/Oct/msg00465.html | ||
|
||
*.mode2v3 | ||
|
||
# .perspectivev3: http://stackoverflow.com/questions/5223297/xcode-projects-what-is-a-perspectivev3-file | ||
|
||
*.perspectivev3 | ||
|
||
# NB: also, whitelist the default ones, some projects need to use these | ||
!default.pbxuser | ||
!default.mode1v3 | ||
!default.mode2v3 | ||
!default.perspectivev3 | ||
|
||
|
||
#### | ||
# Xcode 4 - semi-personal settings | ||
# | ||
# | ||
# OPTION 1: --------------------------------- | ||
# throw away ALL personal settings (including custom schemes! | ||
# - unless they are "shared") | ||
# | ||
# NB: this is exclusive with OPTION 2 below | ||
xcuserdata | ||
|
||
# OPTION 2: --------------------------------- | ||
# get rid of ALL personal settings, but KEEP SOME OF THEM | ||
# - NB: you must manually uncomment the bits you want to keep | ||
# | ||
# NB: this is exclusive with OPTION 1 above | ||
# | ||
#xcuserdata/**/* | ||
|
||
# (requires option 2 above): Personal Schemes | ||
# | ||
#!xcuserdata/**/xcschemes/* | ||
|
||
#### | ||
# XCode 4 workspaces - more detailed | ||
# | ||
# Workspaces are important! They are a core feature of Xcode - don't exclude them :) | ||
# | ||
# Workspace layout is quite spammy. For reference: | ||
# | ||
# /(root)/ | ||
# /(project-name).xcodeproj/ | ||
# project.pbxproj | ||
# /project.xcworkspace/ | ||
# contents.xcworkspacedata | ||
# /xcuserdata/ | ||
# /(your name)/xcuserdatad/ | ||
# UserInterfaceState.xcuserstate | ||
# /xcsshareddata/ | ||
# /xcschemes/ | ||
# (shared scheme name).xcscheme | ||
# /xcuserdata/ | ||
# /(your name)/xcuserdatad/ | ||
# (private scheme).xcscheme | ||
# xcschememanagement.plist | ||
# | ||
# | ||
|
||
#### | ||
# Xcode 4 - Deprecated classes | ||
# | ||
# Allegedly, if you manually "deprecate" your classes, they get moved here. | ||
# | ||
# We're using source-control, so this is a "feature" that we do not want! | ||
|
||
*.moved-aside | ||
|
||
#### | ||
# UNKNOWN: recommended by others, but I can't discover what these files are | ||
# | ||
# ...none. Everything is now explained. | ||
|
||
#### | ||
# | ||
# Pods and Gems | ||
# | ||
/pods | ||
.bundle/ | ||
|
||
# Builds | ||
*.ipa | ||
|
||
# ssl certificates | ||
*.crt | ||
.idea/.name | ||
.idea/babylon-partners.iml | ||
.idea/encodings.xml | ||
.idea/misc.xml | ||
.idea/modules.xml | ||
.idea/runConfigurations/Babylon.xml | ||
.idea/runConfigurations/BabylonAnalysis.xml | ||
.idea/scopes/scope_settings.xml | ||
.idea/vcs.xml | ||
.idea/workspace.xml | ||
.idea/xcode.xml | ||
|
||
Iconr\n | ||
Crashlytics.framework | ||
Crashlytics.framework/ | ||
Crashlytics.* | ||
Crashlytics | ||
Babylon/dist/ | ||
dist.zip | ||
Babylon.xcworkspace | ||
Babylon.xcworkspace/ | ||
Pods/ | ||
Pods | ||
|
||
# Orig files skipped | ||
*.orig | ||
|
||
Carthage/Checkouts/* | ||
backboneLocalizationBuilder | ||
.idea/babylon-ios.iml | ||
.idea/runConfigurations/Babylon_STAGING1.xml | ||
|
||
# Fastlane | ||
fastlane/README.md | ||
fastlane/report.xml | ||
vendor/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "DrawerKit" | ||
s.version = "0.0.1" | ||
s.summary = "An implementation of an interactive and animated view, similar to what you see in Apple Maps" | ||
|
||
s.description = <<-DESC | ||
DrawerKit allows you to modally present a view controller from another, in such a way that the | ||
presented view controller slides up as a "drawer", much like what happens when you tap on a location | ||
in the map when using the Apple Maps app. The library is highly configurable, with a few more options | ||
coming soon. | ||
DESC | ||
|
||
s.homepage = "https://github.com/Babylonpartners/DrawerKit/blob/master/README.md" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Wagner Truppel" => "[email protected]" } | ||
s.platform = :ios, "10.3" | ||
s.source = { :git => "github.com/Babylonpartners/DrawerKit.git", :tag => "#{s.version}" } | ||
s.source_files = "Classes/**/*.{swift}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Podspec needs an update. Please loosen the deployment target, and update the author field too. Possibly There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed in 56bc186. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see your point about updating the author and I agree with it but, if I'm not mistaken, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In fact, I'll make that change anyway. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed in df37082. |
||
s.exclude_files = "Classes/Exclude" | ||
|
||
end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️ For including Appcod related files