34 lines
1.4 KiB
Ruby
34 lines
1.4 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'iPhoneMK'
|
|
s.version = '1.2.0'
|
|
s.license = {
|
|
:type => 'Apache License 2.0',
|
|
:text => <<-LICENSE
|
|
Copyright (c) 2009 Michael F. Kamprath
|
|
michael@claireware.com
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
LICENSE
|
|
}
|
|
s.summary = 'iPhoneMK is a loose collection of Objective-C classes for the iPhone SDK.'
|
|
s.homepage = 'https://github.com/michaelkamprath/iPhoneMK'
|
|
s.author = { 'Michael F. Kamprath' => 'michael@claireware.com' }
|
|
# s.source = { :git => 'https://github.com/michaelkamprath/iPhoneMK.git', :tag => '1.2.0' }
|
|
s.source = { :git => 'https://github.com/michaelkamprath/iPhoneMK.git', :commit => '62413315bf82ffa492530121861fb3fd5b5e117e' }
|
|
s.platform = :ios
|
|
s.frameworks = ['AVFoundation', 'QuartzCore', 'Social']
|
|
s.source_files = '{TableViewCells,Views}/**/*.{h,m}'
|
|
s.resources = '{TableViewCells,Views}/**/*.png'
|
|
end
|
|
|