-
Notifications
You must be signed in to change notification settings - Fork 9
/
DeluxeInjection.podspec
24 lines (20 loc) · 1 KB
/
DeluxeInjection.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "DeluxeInjection"
s.version = "0.8.6"
s.summary = "Simplest Objective-C Dependency Injection (DI:syringe:) implementation ever"
s.description = <<-DESC
DeluxeInjection allows you simply inject any property of any class by defining value or
getter of this property with a block. This should be the simplest DI library ever.
DESC
s.homepage = "https://github.com/k06a/DeluxeInjection"
s.license = 'MIT'
s.author = { "Anton Bukov" => "[email protected]" }
s.source = { :git => "https://github.com/k06a/DeluxeInjection.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/k06a'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.8'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'DeluxeInjection/Classes/**/*'
s.dependency 'RuntimeRoutines', '~> 0.3.2'
end