Skip to content

Commit

Permalink
Merge pull request #5 from tschob/projectRenaming
Browse files Browse the repository at this point in the history
Project renaming
  • Loading branch information
tschob authored Sep 30, 2016
2 parents 23fce0c + cf12564 commit 9ee7113
Show file tree
Hide file tree
Showing 34 changed files with 626 additions and 640 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ osx_image: xcode7.3
sudo: false
env:
global:
- FRAMEWORK_NAME=AudioPlayer
- FRAMEWORK_NAME=AudioPlayerManager
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE=AudioPlayer.xcworkspace
- IOS_FRAMEWORK_SCHEME="AudioPlayer"
- WORKSPACE=AudioPlayerManager.xcworkspace
- IOS_FRAMEWORK_SCHEME="AudioPlayerManager"
- IOS_SDK=iphonesimulator
- IOS_EXAMPLE_SCHEME="Example"
matrix:
Expand Down
25 changes: 0 additions & 25 deletions AudioPlayer/Core/Private/AudioPlayerLog.swift

This file was deleted.

133 changes: 0 additions & 133 deletions AudioPlayer/Core/Private/AudioPlayerQueue.swift

This file was deleted.

70 changes: 0 additions & 70 deletions AudioPlayer/Core/Public/Player/AudioPlayer+MPMediaItem.swift

This file was deleted.

67 changes: 0 additions & 67 deletions AudioPlayer/Core/Public/Player/AudioPlayer+URL.swift

This file was deleted.

18 changes: 0 additions & 18 deletions AudioPlayer/Headers/AudioPlayer.h

This file was deleted.

12 changes: 6 additions & 6 deletions AudioPlayer.podspec → AudioPlayerManager.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@
#

Pod::Spec.new do |s|
s.name = 'AudioPlayer'
s.name = 'AudioPlayerManager'
s.version = File.read('VERSION')
s.summary = 'Small Wrapper around AVPlayer which let you play local and remote songs using a build in queue.'
s.description = 'AudioPlayer is a small audio player which takes care of the AVPlayer setup and usage. It uses an internal queue to play multiple items automatically in a row. All path based items which are supported from AVPlayer can be used (MPMediaItems and remote URLs).'
s.homepage = 'https://github.com/tschob/AudioPlayer'
s.description = 'AudioPlayerManager is a small audio player which takes care of the AVPlayer setup and usage. It uses an internal queue to play multiple items automatically in a row. All path based items which are supported from AVPlayer can be used (MPMediaItems and remote URLs).'
s.homepage = 'https://github.com/tschob/AudioPlayerManager'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Hans Seiffert' => '[email protected]' }

s.source = { :git => 'https://github.com/tschob/AudioPlayer.git', :tag => s.version.to_s }
s.source = { :git => 'https://github.com/tschob/AudioPlayerManager.git', :tag => s.version.to_s }

s.platform = :ios
s.ios.deployment_target = '8.0'

s.source_files = 'AudioPlayer/**/*.{swift,h}'
s.public_header_files = 'AudioPlayer/**/*.h'
s.source_files = 'AudioPlayerManager/**/*.{swift,h}'
s.public_header_files = 'AudioPlayerManager/**/*.h'

s.frameworks = 'UIKit'
s.frameworks = 'MediaPlayer'
Expand Down

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

File renamed without changes.
Loading

0 comments on commit 9ee7113

Please sign in to comment.