-
Notifications
You must be signed in to change notification settings - Fork 1
/
VBMathParser.podspec
34 lines (30 loc) · 1.12 KB
/
VBMathParser.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
29
30
31
32
33
34
#
# Be sure to run `pod lib lint MyLib.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 = "VBMathParser"
s.version = "1.0.0"
s.summary = "VBMathParser is a library for mathematical expressions parsing."
s.description = <<-DESC
VBMathParser is a library for mathematical expressions parsing.
Supported features
1. brackets: (, )
2. operations: +, - (unary/binary), *, /, ^(power)
3. functions: abs, sin, cos, tan
4. variables
5. constants: pi
DESC
s.homepage = "https://github.com/valnoc/VBMathParser"
s.license = 'MIT'
s.author = { "Valeriy Bezuglyy" => "[email protected]" }
s.source = { :git => "https://github.com/valnoc/VBMathParser.git", :tag => "v#{s.version}" }
s.platform = :ios, '8.1'
s.requires_arc = true
s.source_files = 'VBMathParser/**/*'
s.dependency 'VBException', '~> 1.0'
end