Skip to content

Commit

Permalink
Moves around files to follow cocoa pod structure
Browse files Browse the repository at this point in the history
  • Loading branch information
JVillella committed Jan 16, 2015
1 parent 3da65b9 commit 8a25337
Show file tree
Hide file tree
Showing 53 changed files with 191 additions and 21 deletions.
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ DerivedData
# 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/
Pods/
15 changes: 15 additions & 0 deletions .travis.yml
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 added Example/.DS_Store
Binary file not shown.

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions Example/JVFloatingDrawer.xcworkspace/contents.xcworkspacedata

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

Binary file added Example/JVFloatingDrawer/.DS_Store
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.
10 changes: 10 additions & 0 deletions Example/Podfile
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

14 changes: 14 additions & 0 deletions Example/Podfile.lock
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
38 changes: 38 additions & 0 deletions JVFloatingDrawer.podspec
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.

0 comments on commit 8a25337

Please sign in to comment.