Last active
August 29, 2015 14:10
-
-
Save kaiinui/25662e9e32dffbb0ebcb to your computer and use it in GitHub Desktop.
template.podspec
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>--company-id</key> | |
<string>#{DOMAIN}</string> | |
<key>--project-company</key> | |
<string>#{ORGANIZATION}</string> | |
<key>--project-name</key> | |
<string>#{PROJECT}</string> | |
<key>--templates</key> | |
<string>#{APPLEDOC_TEMPLATE}</string> | |
<key>--output</key> | |
<string>#{APPLEDOC_OUTPUT}</string> | |
<key>--ignore</key> | |
<array> | |
<string>.m</string> | |
<string>Pods</string> | |
</array> | |
<key>--index-desc</key> | |
<key>README.md</key> | |
<key>--prefix-merged-sections</key> | |
<true/> | |
<key>--keep-undocumented-objects</key> | |
<true/> | |
<key>--keep-undocumented-members</key> | |
<true/> | |
<key>--create-html</key> | |
<true/> | |
<key>--no-create-docset</key> | |
<true/> | |
</dict> | |
</plist> | |
This file contains hidden or 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
# Xcode | |
# | |
build/ | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 | |
*.perspectivev3 | |
!default.perspectivev3 | |
xcuserdata | |
*.xccheckout | |
*.moved-aside | |
DerivedData | |
*.hmap | |
*.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/ |
This file contains hidden or 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
platform :ios, '7.0' | |
target "#{PROJECT}Tests" do | |
pod "OCMock" | |
end |
This file contains hidden or 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
Pod::Spec.new do |s| | |
s.name = "#{PROJECT}" | |
s.version = "0.1.0" | |
s.summary = "[iOS] #{PROJECT}" | |
s.homepage = "#{GITHUB}" | |
s.license = "MIT" | |
s.author = { "kaiinui" => "[email protected]" } | |
s.source = { :git => "#{GITHUB}.git", :tag => "v0.1.0" } | |
s.source_files = "#{PROJECT}/Classes/**/*.{h,m}" | |
s.requires_arc = true | |
s.platform = "ios", '7.0' | |
end |
This file contains hidden or 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
language: objective-c | |
osx_image: xcode61 | |
branches: | |
only: | |
- master | |
notifications: | |
email: false | |
before_install: | |
- gem install xcpretty | |
before_script: pod install | |
script: make test | |
after_success: | |
- make coveralls | |
~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment