Skip to content

Commit

Permalink
Added Swift version.
Browse files Browse the repository at this point in the history
  • Loading branch information
hermanolsson committed Oct 21, 2015
1 parent b53e0be commit e8f4a13
Show file tree
Hide file tree
Showing 7 changed files with 728 additions and 0 deletions.
15 changes: 15 additions & 0 deletions MTMigrationSwift.podspec
@@ -0,0 +1,15 @@
Pod::Spec.new do |s|
s.name = "MTMigrationSwift"
s.version = "0.0.5"
s.summary = "Manages blocks of code that only need to run once on version updates in iOS apps."
s.homepage = "https://github.com/mysterioustrousers/MTMigration"
s.license = 'MIT'
s.author = { "Parker Wightman" => "parkerwightman@gmail.com" }
s.source = { :git => "https://github.com/mysterioustrousers/MTMigration.git", :tag => "#{s.version}" }
s.source_files = 'Swift/MTMigration/Migration.swift'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.requires_arc = true
s.pod_target_xcconfig = { 'SWIFT_WHOLE_MODULE_OPTIMIZATION' => 'YES',
'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
end

0 comments on commit e8f4a13

Please sign in to comment.