-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFrog.podspec
More file actions
21 lines (19 loc) · 927 Bytes
/
Copy pathFrog.podspec
File metadata and controls
21 lines (19 loc) · 927 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 |s|
s.name = 'Frog'
s.version = '1.3.0'
s.summary = 'Tiny utility for read and write file line by line in Swift.'
s.description = <<-DESC
I wrote this for easier work with files in some algorithms implementations.
In some cases read and write line by line in Swift take a lot of part of an implementation.
DESC
s.homepage = 'https://github.com/artFintch/Frog'
s.screenshots = 'https://pbs.twimg.com/media/DsYELTUXQAEZ1zx.jpg'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Vyacheslav Khorkov' => 'artfintch@ya.ru' }
s.source = { :git => 'https://github.com/artFintch/Frog.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/swiftyfinch'
s.platform = :osx
s.osx.deployment_target = "10.15"
s.swift_version = "5.0"
s.source_files = 'Frog/Classes/**/*'
end