Commit 527037fce586ec50bad5ab8c0709b6b8ffbecb6f
1 parent
4e7a06d5
提交更改
Showing
28 changed files
with
4 additions
and
52 deletions
CNLiveAVCamera/CNLiveAVCamera.podspec renamed to CNLiveAVCamera.podspec
CNLiveAVCamera/.gitignore deleted
100644 → 0
| 1 | -# OS X | ||
| 2 | -.DS_Store | ||
| 3 | - | ||
| 4 | -# Xcode | ||
| 5 | -build/ | ||
| 6 | -*.pbxuser | ||
| 7 | -!default.pbxuser | ||
| 8 | -*.mode1v3 | ||
| 9 | -!default.mode1v3 | ||
| 10 | -*.mode2v3 | ||
| 11 | -!default.mode2v3 | ||
| 12 | -*.perspectivev3 | ||
| 13 | -!default.perspectivev3 | ||
| 14 | -xcuserdata/ | ||
| 15 | -*.xccheckout | ||
| 16 | -profile | ||
| 17 | -*.moved-aside | ||
| 18 | -DerivedData | ||
| 19 | -*.hmap | ||
| 20 | -*.ipa | ||
| 21 | - | ||
| 22 | -# Bundler | ||
| 23 | -.bundle | ||
| 24 | - | ||
| 25 | -# Add this line if you want to avoid checking in source code from Carthage dependencies. | ||
| 26 | -# Carthage/Checkouts | ||
| 27 | - | ||
| 28 | -Carthage/Build | ||
| 29 | - | ||
| 30 | -# We recommend against adding the Pods directory to your .gitignore. However | ||
| 31 | -# you should judge for yourself, the pros and cons are mentioned at: | ||
| 32 | -# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control | ||
| 33 | -# | ||
| 34 | -# Note: if you ignore the Pods directory, make sure to uncomment | ||
| 35 | -# `pod install` in .travis.yml | ||
| 36 | -# | ||
| 37 | -# Pods/ |
CNLiveAVCamera/.travis.yml deleted
100644 → 0
| 1 | -# references: | ||
| 2 | -# * https://www.objc.io/issues/6-build-tools/travis-ci/ | ||
| 3 | -# * https://github.com/supermarin/xcpretty#usage | ||
| 4 | - | ||
| 5 | -osx_image: xcode7.3 | ||
| 6 | -language: objective-c | ||
| 7 | -# cache: cocoapods | ||
| 8 | -# podfile: Example/Podfile | ||
| 9 | -# before_install: | ||
| 10 | -# - gem install cocoapods # Since Travis is not always on latest version | ||
| 11 | -# - pod install --project-directory=Example | ||
| 12 | -script: | ||
| 13 | -- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/CNLiveAVCamera.xcworkspace -scheme CNLiveAVCamera-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty | ||
| 14 | -- pod lib lint |
CNLiveAVCamera/CNLiveAVCamera/Assets/.gitkeep renamed to CNLiveAVCamera/Assets/.gitkeep
CNLiveAVCamera/CNLiveAVCamera/Classes/.gitkeep renamed to CNLiveAVCamera/Classes/.gitkeep
CNLiveAVCamera/CNLiveAVCamera/Classes/ReplaceMe.m renamed to CNLiveAVCamera/Classes/ReplaceMe.m
CNLiveAVCamera/_Pods.xcodeproj deleted
120000 → 0
CNLiveAVCamera/Example/CNLiveAVCamera.xcodeproj/project.pbxproj renamed to Example/CNLiveAVCamera.xcodeproj/project.pbxproj
CNLiveAVCamera/Example/CNLiveAVCamera.xcodeproj/xcshareddata/xcschemes/CNLiveAVCamera-Example.xcscheme renamed to Example/CNLiveAVCamera.xcodeproj/xcshareddata/xcschemes/CNLiveAVCamera-Example.xcscheme
CNLiveAVCamera/Example/CNLiveAVCamera/Base.lproj/LaunchScreen.storyboard renamed to Example/CNLiveAVCamera/Base.lproj/LaunchScreen.storyboard
CNLiveAVCamera/Example/CNLiveAVCamera/Base.lproj/Main.storyboard renamed to Example/CNLiveAVCamera/Base.lproj/Main.storyboard
CNLiveAVCamera/Example/CNLiveAVCamera/CNLiveAVCamera-Info.plist renamed to Example/CNLiveAVCamera/CNLiveAVCamera-Info.plist
CNLiveAVCamera/Example/CNLiveAVCamera/CNLiveAVCamera-Prefix.pch renamed to Example/CNLiveAVCamera/CNLiveAVCamera-Prefix.pch
CNLiveAVCamera/Example/CNLiveAVCamera/CNLiveAppDelegate.h renamed to Example/CNLiveAVCamera/CNLiveAppDelegate.h
CNLiveAVCamera/Example/CNLiveAVCamera/CNLiveAppDelegate.m renamed to Example/CNLiveAVCamera/CNLiveAppDelegate.m
CNLiveAVCamera/Example/CNLiveAVCamera/CNLiveViewController.h renamed to Example/CNLiveAVCamera/CNLiveViewController.h
CNLiveAVCamera/Example/CNLiveAVCamera/CNLiveViewController.m renamed to Example/CNLiveAVCamera/CNLiveViewController.m
CNLiveAVCamera/Example/CNLiveAVCamera/Images.xcassets/AppIcon.appiconset/Contents.json renamed to Example/CNLiveAVCamera/Images.xcassets/AppIcon.appiconset/Contents.json
CNLiveAVCamera/Example/CNLiveAVCamera/en.lproj/InfoPlist.strings renamed to Example/CNLiveAVCamera/en.lproj/InfoPlist.strings
CNLiveAVCamera/Example/CNLiveAVCamera/main.m renamed to Example/CNLiveAVCamera/main.m
CNLiveAVCamera/Example/Podfile renamed to Example/Podfile
| @@ -4,9 +4,12 @@ platform :ios, '8.0' | @@ -4,9 +4,12 @@ platform :ios, '8.0' | ||
| 4 | 4 | ||
| 5 | target 'CNLiveAVCamera_Example' do | 5 | target 'CNLiveAVCamera_Example' do |
| 6 | pod 'CNLiveAVCamera', :path => '../' | 6 | pod 'CNLiveAVCamera', :path => '../' |
| 7 | + pod 'Masonry', '~> 1.0.2' | ||
| 7 | 8 | ||
| 8 | target 'CNLiveAVCamera_Tests' do | 9 | target 'CNLiveAVCamera_Tests' do |
| 9 | inherit! :search_paths | 10 | inherit! :search_paths |
| 11 | + pod 'Masonry', '~> 1.0.2' | ||
| 12 | + | ||
| 10 | 13 | ||
| 11 | 14 | ||
| 12 | end | 15 | end |
CNLiveAVCamera/Example/Tests/Tests-Info.plist renamed to Example/Tests/Tests-Info.plist
CNLiveAVCamera/Example/Tests/Tests-Prefix.pch renamed to Example/Tests/Tests-Prefix.pch
CNLiveAVCamera/Example/Tests/Tests.m renamed to Example/Tests/Tests.m
CNLiveAVCamera/Example/Tests/en.lproj/InfoPlist.strings renamed to Example/Tests/en.lproj/InfoPlist.strings
CNLiveAVCamera/LICENSE renamed to LICENSE
CNLiveAVCamera/README.md renamed to README.md
_Pods.xcodeproj
0 → 120000