-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRealmSwiftService.podspec
More file actions
20 lines (20 loc) · 1003 Bytes
/
RealmSwiftService.podspec
File metadata and controls
20 lines (20 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::s.new do |s|
s.name = "RealmSwiftService"
s.version = "0.0.1"
s.summary = "RealmSwiftService Supports Realm standard CRUD functions"
s.description = <<-DESC
RealmService Supports Realm standard CRUD functions.
You can do actions(find, save, delete) to Realm Object.
DESC
s.homepage = "https://github.com/yokurin/RealmSwiftService"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Tsubasa Hayashi" => "yoku.rin.99@gmail.com" }
s.social_media_url = "https://twitter.com/_yokurin"
s.platform = :ios
s.source = { :git => "http://github.com/yokurin/RealmSwiftService.git", :tag => "#{s.version}" }
s.source_files = "RealmSwiftService", "RealmSwiftService/**/*.{h,swift}"
# s.exclude_files = "RealmSwiftService/Exclude"
s.dependency "RealmSwift", "~> 3.11"
# s.ios.deployment_target = '8.0'
# s.osx.deployment_target = '10.10'
end