Skip to content

Commit

Permalink
Merge pull request #9 from BenchR267/add-cocoapods
Browse files Browse the repository at this point in the history
Added cocoapods integration.
  • Loading branch information
dasdom committed Jan 24, 2016
2 parents dc0a8bc + 4de0780 commit df8225e
Show file tree
Hide file tree
Showing 45 changed files with 1,268 additions and 290 deletions.
22 changes: 22 additions & 0 deletions BreakOutToRefresh.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Pod::Spec.new do |s|
s.name = "BreakOutToRefresh"
s.version = "1.0.0"
s.summary = "Play BreakOut while loading - A playable pull to refresh view using SpriteKit"

s.description = <<-DESC
BreakOutToRefresh uses SpriteKit to add a playable mini game to the pull to refresh view in a table view. In this case the mini game is BreakOut but a lot of other mini games could be presented in this space.
DESC

s.homepage = "https://github.com/dasdom/BreakOutToRefresh"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.author = { "Dominik Hauser" => "dominik.hauser@dasdom.de" }
s.source = { :git => "https://github.com/dasdom/BreakOutToRefresh.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/dasdom'

s.platform = :ios, '8.0'
s.requires_arc = true

s.source_files = 'BreakOutToRefresh/**/*'

s.frameworks = 'UIKit', 'SpriteKit'
end
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ class BreakOutScene: SKScene, SKPhysicsContactDelegate {
}
}
}

func isGameWon() -> Bool {
var numberOfBricks = 0
self.enumerateChildNodesWithName(blockName) { node, stop in
Expand Down
6 changes: 6 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!

target 'PullToRefreshDemo', :exclusive => true do
pod "BreakOutToRefresh", :path => "../"
end
14 changes: 14 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
PODS:
- BreakOutToRefresh (1.0.0)

DEPENDENCIES:
- BreakOutToRefresh (from `../`)

EXTERNAL SOURCES:
BreakOutToRefresh:
:path: "../"

SPEC CHECKSUMS:
BreakOutToRefresh: 6585099c95f5277fe7fe17b612bf7c5cbe7b8c77

COCOAPODS: 0.39.0
24 changes: 24 additions & 0 deletions Example/Pods/Local Podspecs/BreakOutToRefresh.podspec.json

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

14 changes: 14 additions & 0 deletions Example/Pods/Manifest.lock

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

519 changes: 519 additions & 0 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

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

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

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

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

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

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

26 changes: 26 additions & 0 deletions Example/Pods/Target Support Files/BreakOutToRefresh/Info.plist

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

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

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

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

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

Loading

0 comments on commit df8225e

Please sign in to comment.