forked from JVillella/JVFloatingDrawer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moves around files to follow cocoa pod structure
- Loading branch information
Showing
53 changed files
with
191 additions
and
21 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
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,15 @@ | ||
# references: | ||
# * http://www.objc.io/issue-6/travis-ci.html | ||
# * https://github.com/supermarin/xcpretty#usage | ||
|
||
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 | ||
install: | ||
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet | ||
script: | ||
- set -o pipefail && xcodebuild test -workspace Example/JVFloatingDrawer.xcworkspace -scheme JVFloatingDrawer-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c | ||
- pod lib lint --quick |
Binary file not shown.
123 changes: 103 additions & 20 deletions
123
JVFloatingDrawer.xcodeproj/project.pbxproj → ...VFloatingDrawer.xcodeproj/project.pbxproj
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
10 changes: 10 additions & 0 deletions
10
Example/JVFloatingDrawer.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
source 'https://github.com/CocoaPods/Specs.git' | ||
|
||
target 'JVFloatingDrawer', :exclusive => true do | ||
pod "JVFloatingDrawer", :path => "../" | ||
end | ||
|
||
target 'JVFloatingDrawerTests', :exclusive => true do | ||
pod "JVFloatingDrawer", :path => "../" | ||
end | ||
|
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 @@ | ||
PODS: | ||
- JVFloatingDrawer (0.1.0) | ||
|
||
DEPENDENCIES: | ||
- JVFloatingDrawer (from `../`) | ||
|
||
EXTERNAL SOURCES: | ||
JVFloatingDrawer: | ||
:path: ../ | ||
|
||
SPEC CHECKSUMS: | ||
JVFloatingDrawer: 40289d95a44671d721ac46fef7e913f51940f4bf | ||
|
||
COCOAPODS: 0.35.0 |
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,38 @@ | ||
# | ||
# Be sure to run `pod lib lint JVFloatingDrawer.podspec' to ensure this is a | ||
# valid spec and remove all comments before submitting the spec. | ||
# | ||
# Any lines starting with a # are optional, but encouraged | ||
# | ||
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "JVFloatingDrawer" | ||
s.version = "0.1.0" | ||
s.summary = "A short description of JVFloatingDrawer." | ||
s.description = <<-DESC | ||
An optional longer description of JVFloatingDrawer | ||
* Markdown format. | ||
* Don't worry about the indent, we strip it! | ||
DESC | ||
s.homepage = "https://github.com/JVillella/JVFloatingDrawer" | ||
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" | ||
s.license = 'MIT' | ||
s.author = { "JVillella" => "[email protected]" } | ||
s.source = { :git => "https://github.com/JVillella/JVFloatingDrawer.git", :tag => s.version.to_s } | ||
|
||
|
||
s.platform = :ios, '7.0' | ||
s.requires_arc = true | ||
|
||
s.source_files = 'Pod/Classes' | ||
s.resource_bundles = { | ||
'JVFloatingDrawer' => ['Pod/Assets/*.png'] | ||
} | ||
|
||
# s.public_header_files = 'Pod/Classes/**/*.h' | ||
# s.frameworks = 'UIKit', 'MapKit' | ||
# s.dependency 'AFNetworking', '~> 2.3' | ||
end |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.