-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuildEnvironment.podspec
25 lines (23 loc) · 1.15 KB
/
BuildEnvironment.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
Pod::Spec.new do |s|
s.name = "BuildEnvironment"
s.version = "0.1.7"
s.summary = "Bundles a couple of useful build scripts, and a way of keeping environment dependent properties"
s.description = <<-DESC
BuildEnvironment bundles a couple of useful build scripts
* Upload app to HockeyApp
* Translate storyboard strings
* Check software licenses of the used CocoaPod dependencies
* Automatically increment build number
DESC
s.homepage = "https://github.com/cegeka/BuildEnvironment"
s.license = 'MIT'
s.author = { "Jan Sabbe" => "[email protected]" }
s.source = { :git => "https://github.com/cegeka/BuildEnvironment.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/jansabbe'
s.requires_arc = true
s.source_files = 'Classes'
s.preserve_paths = '*.sh'
s.xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) HOCKEYAPP_APP_ID="@\"$(HOCKEYAPP_APP_ID)\"" BUILD_ENVIRONMENT="@\"$(CONFIGURATION)\""'
}
end