Skip to content

Commit

Permalink
Merge pull request #15 from brototyp/feature/10_add_support_for_depen…
Browse files Browse the repository at this point in the history
…dency_manager

#10 added basic Podspec to support CocoaPod
  • Loading branch information
brototyp committed Jul 30, 2018
2 parents 0bae60b + 6a17dc3 commit 396b093
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
1 change: 1 addition & 0 deletions .swift-version
@@ -0,0 +1 @@
4.1
38 changes: 38 additions & 0 deletions Cauli.podspec
@@ -0,0 +1,38 @@
#
# Be sure to run `pod spec lint Cauli.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#

Pod::Spec.new do |s|

# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# These will help people to find your library, and whilst it
# can feel like a chore to fill in it's definitely to your advantage. The
# summary should be tweet-length, and the description more in depth.
#
s.name = "Cauli"
s.version = "1.0.0"
s.summary = "Helps you to intercept network requests. (under development)"
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
under development
DESC

s.homepage = "https://github.com/brototyp/cauli"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Cornelius Horstmann" => "cornelius@brototyp.de", "Pascal Stüdlein" => "mail@pascal-stuedlein.de" }
s.ios.deployment_target = "8.0"
s.watchos.deployment_target = "3.0"
s.tvos.deployment_target = "10.0"
s.source = { :git => "https://github.com/brototyp/cauli.git", :branch => "#{s.version}" }
s.source_files = "Cauli", "Cauli/**/*.{h,m}"

end
7 changes: 7 additions & 0 deletions LICENSE
@@ -0,0 +1,7 @@
Copyright 2018 Corenlius Horstmann and Pascal Stüdlein

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 comments on commit 396b093

Please sign in to comment.