forked from ApplauseArchives/Swifjection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwifjection.podspec
More file actions
19 lines (19 loc) · 953 Bytes
/
Swifjection.podspec
File metadata and controls
19 lines (19 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'Swifjection'
s.version = '0.7.0'
s.summary = 'Dependency Injection library for Swift'
s.description = <<-DESC
Lightweight and simplistic dependency injection framework written in Swift for Swift .
DESC
s.homepage = 'https://github.com/ApplauseOSS/Swifjection'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Łukasz Przytuła' => 'lprzytula@applause.com',
'Aleksander Zubala' => 'azubala@applause.com' }
s.source = { :git => 'https://github.com/ApplauseOSS/Swifjection.git', :tag => s.version.to_s }
s.platforms = { :ios => "8.0", :osx => "10.9", :watchos => "2.0", :tvos => "9.0" }
s.source_files = 'Sources/Swifjection/Classes/**/*'
s.exclude_files = [
'Sources/Swifjection/Classes/**/*Spec.swift',
'Sources/Swifjection/Classes/**/*Tests.swift'
]
end