Skip to content

Commit

Permalink
Setup project and import proof of concept codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjarne Mogstad committed Oct 4, 2015
1 parent a7fe18d commit 9640d7a
Show file tree
Hide file tree
Showing 19 changed files with 1,240 additions and 17 deletions.
17 changes: 2 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Xcode
#
build/
*.pbxuser
!default.pbxuser
Expand All @@ -17,17 +15,6 @@ DerivedData
*.ipa
*.xcuserstate

# CocoaPods
#
# 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
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Pods/
Carthage/Checkouts
Carthage/Build
18 changes: 18 additions & 0 deletions Bankside.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Pod::Spec.new do |spec|
spec.name = "Bankside"
spec.version = "0.1.0"
spec.license = "MIT"
spec.summary = "Simple fixture generation tool for your tests"
spec.homepage = "https://github.com/mogstad/Bankside"
spec.authors = { "Bjarne Mogstad" => "me@mogstad.co" }
spec.source = {
:git => "https://github.com/Bankside/Bankside.git",
:tag => spec.version
}
spec.ios.deployment_target = "8.0"
spec.osx.deployment_target = "10.10"

spec.source_files = "sources/*.swift"

spec.requires_arc = true
end
Loading

0 comments on commit 9640d7a

Please sign in to comment.