forked from mrataj/BBCodeParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BBCodeParser.podspec
28 lines (25 loc) · 1.17 KB
/
BBCodeParser.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# Be sure to run `pod lib lint BBCodeParser.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "BBCodeParser"
s.version = "0.1.2"
s.summary = "BBCodeParser is open source objective C library for parsing BBCode (Bulletin Board Code)."
s.description = <<-DESC
To use this library in your project, copy files in BBCodeParser folder into your project. Then, include "BBCodeParser.h" file wherever you want to parse your code.
DESC
s.homepage = "https://github.com/mrataj/BBCodeParser"
s.license = 'MIT'
s.author = { "Miha Rataj" => "[email protected]" }
s.source = { :git => "https://github.com/mrataj/BBCodeParser.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/miharataj'
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
end