Skip to content

Commit

Permalink
Merge pull request #2 from Babylonpartners/intro
Browse files Browse the repository at this point in the history
Introducing DrawerKit
  • Loading branch information
andersio committed Oct 17, 2017
2 parents b132524 + b1a2f1a commit 15b789f
Show file tree
Hide file tree
Showing 37 changed files with 2,643 additions and 0 deletions.
190 changes: 190 additions & 0 deletions .gitignore
@@ -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/
1 change: 1 addition & 0 deletions .swift-version
@@ -0,0 +1 @@
4.0
21 changes: 21 additions & 0 deletions DrawerKit.podspec
@@ -0,0 +1,21 @@
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"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Wagner Truppel" => "ios-developers@babylonhealth.com" }
s.platform = :ios, "10.0"
s.source = { :git => "github.com/Babylonpartners/DrawerKit.git", :tag => "#{s.version}" }
s.source_files = "DrawerKit/**/*.{swift}"

end
10 changes: 10 additions & 0 deletions DrawerKit.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 15b789f

Please sign in to comment.