Minor change

This commit is contained in:
Kaunteya Suryawanshi
2015-09-30 20:18:53 +05:30
parent 230fdcdd4f
commit 76897d0e48
3 changed files with 15 additions and 15 deletions
+11 -11
View File
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = 'ProgressKit'
s.version = '0.0.1'
s.license = 'MIT'
s.summary = 'ProgressViews for Mac'
s.homepage = 'https://github.com/kaunteya/ProgressKit'
s.authors = { 'Kaunteya Suryawanshi' => 'k.suryawanshi@gmail.com' }
s.source = { :git => 'https://github.com/kaunteya/ProgressKit.git', :tag => s.version }
Pod::Spec.new do |spec|
spec.name = 'ProgressKit'
spec.version = '0.0.1'
spec.license = 'MIT'
spec.summary = 'ProgressViews for Mac'
spec.homepage = 'https://github.com/kaunteya/ProgressKit'
spec.authors = { 'Kaunteya Suryawanshi' => 'k.suryawanshi@gmail.com' }
spec.source = { :git => 'https://github.com/kaunteya/ProgressKit.git', :tag => spec.version }
s.platform = :osx, '10.9'
s.requires_arc = true
spec.platform = :osx, '10.9'
spec.requires_arc = true
s.source_files = 'InfoButton.swift'
spec.source_files = 'Determinate/*.swift', 'InDeterminate/*.swift', 'ProgressUtils.swift'
end