-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNamingConventions.podspec
More file actions
26 lines (19 loc) · 1.05 KB
/
NamingConventions.podspec
File metadata and controls
26 lines (19 loc) · 1.05 KB
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
Pod::Spec.new do |s|
s.name = 'NamingConventions'
s.version = '1.1.5'
s.summary = 'This provides a solution to parse and convert name/ids from different conventions.'
s.swift_version = '4.0'
s.description = <<-DESC
This project defines a way to determine the naming convention has been used for a given string, and convert name/IDs with a specific naming-convention, to its equivalent name/ID in other naming-convention.
DESC
s.homepage = 'https://github.com/Acidmanic/SwiftNamingConventions'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Acidmanic' => 'acidmanic.moayedi@gmail.com' }
s.source = { :git => 'https://github.com/Acidmanic/SwiftNamingConventions.git', :tag => s.version }
s.social_media_url = 'https://about.me/moayedi'
s.ios.deployment_target = '9.3'
s.osx.deployment_target = '10.12'
s.watchos.deployment_target = "3.2"
s.tvos.deployment_target = '10.2'
s.source_files = 'NamingConventions/Classes/**/*'
end