Skip to content

Commit

Permalink
added podspec and license file
Browse files Browse the repository at this point in the history
  • Loading branch information
cerenali committed Jul 21, 2014
1 parent aa696ba commit 2d4ebd8
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
13 changes: 13 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2014 The MITRE Corporation

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
25 changes: 25 additions & 0 deletions SecurityCheck.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Pod::Spec.new do |s|
s.name = 'SecurityCheck'
s.version = '1.0'
s.license = 'Apache License 2.0'

s.summary = 'Application-level attached debug detect and jailbreak checking'
s.description = %[
The iMAS security-check security control offers a continuous jailbreak detect and debug attach checking. With this information, one can programatically decide to shutdown the app or other loss prevention techniques.
]
s.homepage = 'https://github.com/project-imas/security-check'
s.authors = {
'MITRE' => '[email protected]'
}

s.source = {
:git => 'https://github.com/project-imas/security-check.git',
:tag => s.version.to_s
}
s.source_files = 'SecurityCheck/*.{m,h,s}'
s.exclude_files = 'SecurityCheck/*Template*'

s.platform = :ios
s.ios.deployment_target = '6.1'
s.requires_arc = true
end

0 comments on commit 2d4ebd8

Please sign in to comment.