forked from davedelong/DDMathParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDDMathParser.podspec
More file actions
23 lines (20 loc) · 823 Bytes
/
DDMathParser.podspec
File metadata and controls
23 lines (20 loc) · 823 Bytes
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 = 'DDMathParser'
s.version = '2.0.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'String → Number'
s.description = <<-DESC
An extensible and flexible library to parse a string
as a mathematical expression and evaluate it.
DESC
s.homepage = 'https://github.com/davedelong/DDMathParser'
s.social_media_url = 'https://twitter.com/davedelong'
s.authors = { 'Dave DeLong' => 'me@davedelong.com' }
s.source = { :git => 'https://github.com/davedelong/DDMathParser.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.source_files = 'MathParser/*.{h,m,swift}'
s.requires_arc = true
s.module_name = 'MathParser'
end