-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathASCIImage.podspec
More file actions
16 lines (16 loc) · 809 Bytes
/
ASCIImage.podspec
File metadata and controls
16 lines (16 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "ASCIImage"
s.version = "1.0.0"
s.summary = "Easily generate images from ASCII representations."
s.description = <<-DESC
Create UIImage / NSImage instances from NSString, by combining ASCII art and Kindergarten skills.
DESC
s.homepage = "https://github.com/cparnot/ASCIImage"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "cparnot" => "charles.parnot@gmail.com" }
s.source = { :git => "https://github.com/cparnot/ASCIImage.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/cparnot'
s.requires_arc = true
s.source_files = 'Core/**/*'
s.public_header_files = 'Core/**/*.h'
end