forked from uber/needle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NeedleFoundation.podspec
15 lines (13 loc) · 1013 Bytes
/
NeedleFoundation.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'NeedleFoundation'
s.version = '0.24.0'
s.summary = 'Compile-time safe Swift dependency injection framework with real code.'
s.description = 'Needle is a dependency injection (DI) system for Swift. Unlike other DI frameworks, such as Cleanse, Swinject, Needle encourages hierarchical DI structure and utilizes code generation to ensure compile-time safety. This allows us to develop our apps and make changes with confidence. If it compiles, it works. In this aspect, Needle is more similar to Android Dagger.'
s.homepage = 'https://github.com/uber/needle'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
s.author = { 'Yi Wang' => '[email protected]' }
s.source = { :git => 'https://github.com/uber/needle.git', :tag => "v" + s.version.to_s }
s.source_files = 'Sources/**/*.swift'
s.ios.deployment_target = '9.0'
s.swift_versions = ['5.2', '5.3', '5.4', '5.5', '5.6']
end