-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathNora.podspec
More file actions
19 lines (19 loc) · 803 Bytes
/
Nora.podspec
File metadata and controls
19 lines (19 loc) · 803 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 = 'Nora'
s.version = '1.1.1'
s.summary = 'An abstraction layer for FirebaseDatabase and FirebaseStorage.'
s.homepage = 'https://github.com/SD10/Nora'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'Steven Deutsch' => 'stevensdeutsch@yahoo.com' }
s.social_media_url = 'https://twitter.com/_SD10_'
s.source = { :git => "https://github.com/SD10/Nora.git", :tag => s.version }
s.source_files = 'Sources/*.swift'
s.platform = :ios, '9.0'
s.swift_version = '4.1'
s.static_framework = true
s.requires_arc = true
s.dependency "Firebase/Core"
s.dependency "Firebase/Database"
s.dependency "Firebase/Storage"
s.dependency "Result", "~> 3.0"
end