-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInjection.podspec
More file actions
21 lines (17 loc) · 836 Bytes
/
Injection.podspec
File metadata and controls
21 lines (17 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = "Injection"
spec.version = "0.0.4"
spec.summary = "Injection, a Swift Lightweight dependency manager library."
spec.description = <<-DESC
Swift Lightweight dependency manager library based on modules and components.
DESC
spec.homepage = "https://github.com/JulianAlonso/Injection"
spec.license = { :type => "MIT", :file => "LICENSE.md" }
spec.author = { "Julian Alonso" => "julian.alonso.dev@gmail.com" }
spec.social_media_url = "https://twitter.com/maisterjuli"
spec.platform = :ios, "11.0"
spec.source = { :git => "https://github.com/JulianAlonso/Injection.git", :tag => "v#{spec.version}" }
spec.swift_version = "5.1"
spec.source_files = "Injection/Sources/**/*"
spec.requires_arc = true
end