Skip to content

Commit 225686e

Browse files
Merge pull request #7 from monksoftware/feature/cocoapods
fix license
2 parents f47c8f2 + 9273170 commit 225686e

File tree

2 files changed

+26
-135
lines changed

2 files changed

+26
-135
lines changed

LICENSE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2018 Webmonks S.r.l.
2+
3+
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:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
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.

Marvin.podspec

Lines changed: 19 additions & 135 deletions
Original file line numberDiff line numberDiff line change
@@ -1,138 +1,22 @@
1-
#
2-
# Be sure to run `pod spec lint Marvin.podspec' to ensure this is a
3-
# valid spec and to remove all comments including this before submitting the spec.
4-
#
5-
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
6-
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
7-
#
8-
9-
Pod::Spec.new do |spec|
10-
11-
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
12-
#
13-
# These will help people to find your library, and whilst it
14-
# can feel like a chore to fill in it's definitely to your advantage. The
15-
# summary should be tweet-length, and the description more in depth.
16-
#
17-
18-
spec.name = "Marvin"
19-
spec.version = "0.4.0"
20-
spec.summary = "Marvin, the missing toolkit for your iOS library."
21-
22-
# This description is used to generate tags and improve search results.
23-
# * Think: What does it do? Why did you write it? What is the focus?
24-
# * Try to keep it short, snappy and to the point.
25-
# * Write the description between the DESC delimiters below.
26-
# * Finally, don't worry about the indent, CocoaPods strips it!
27-
spec.description = <<-DESC
1+
Pod::Spec.new do |s|
2+
3+
s.name = "Marvin"
4+
s.version = "0.4.1"
5+
6+
s.license = 'MIT'
7+
s.swift_versions = '5.0'
8+
s.summary = "Marvin, the missing toolkit for your iOS library."
9+
s.homepage = "http://www.monksoftware.it/"
10+
11+
s.description = <<-DESC
2812
Marvin is a toolkit designed to work with EIMe. It contains helper classes for networking.
2913
DESC
30-
31-
spec.homepage = "http://EXAMPLE/Marvin"
32-
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
33-
34-
35-
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
36-
#
37-
# Licensing your code is important. See https://choosealicense.com for more info.
38-
# CocoaPods will detect a license file if there is a named LICENSE*
39-
# Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
40-
#
41-
42-
spec.license = "MIT"
43-
# spec.license = { :type => "MIT", :file => "FILE_LICENSE" }
44-
45-
46-
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
47-
#
48-
# Specify the authors of the library, with email addresses. Email addresses
49-
# of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
50-
# accepts just a name if you'd rather not provide an email address.
51-
#
52-
# Specify a social_media_url where others can refer to, for example a twitter
53-
# profile URL.
54-
#
55-
56-
spec.author = { "Alessio Arsuffi" => "[email protected]" }
57-
# Or just: spec.author = "Alessio Arsuffi"
58-
# spec.authors = { "Alessio Arsuffi" => "[email protected]" }
59-
# spec.social_media_url = "https://twitter.com/Alessio Arsuffi"
60-
61-
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
62-
#
63-
# If this Pod runs only on iOS or OS X, then specify the platform and
64-
# the deployment target. You can optionally include the target after the platform.
65-
#
66-
67-
# spec.platform = :ios
68-
# spec.platform = :ios, "5.0"
69-
70-
# When using multiple platforms
71-
# spec.ios.deployment_target = "5.0"
72-
# spec.osx.deployment_target = "10.7"
73-
# spec.watchos.deployment_target = "2.0"
74-
# spec.tvos.deployment_target = "9.0"
75-
76-
77-
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
78-
#
79-
# Specify the location from where the source should be retrieved.
80-
# Supports git, hg, bzr, svn and HTTP.
81-
#
82-
83-
spec.source = { :git => "https://github.com/monksoftware/Marvin", :tag => "#{spec.version}" }
84-
85-
86-
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
87-
#
88-
# CocoaPods is smart about how it includes source code. For source files
89-
# giving a folder will include any swift, h, m, mm, c & cpp files.
90-
# For header files it will include any header in the folder.
91-
# Not including the public_header_files will make all headers public.
92-
#
93-
94-
spec.source_files = "Sources", "Sources/**/*.{swift}"
95-
# spec.exclude_files = "Classes/Exclude"
96-
97-
# spec.public_header_files = "Classes/**/*.h"
98-
99-
100-
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
101-
#
102-
# A list of resources included with the Pod. These are copied into the
103-
# target bundle with a build phase script. Anything else will be cleaned.
104-
# You can preserve files from being cleaned, please don't preserve
105-
# non-essential files like tests, examples and documentation.
106-
#
107-
108-
# spec.resource = "icon.png"
109-
# spec.resources = "Resources/*.png"
110-
111-
# spec.preserve_paths = "FilesToSave", "MoreFilesToSave"
112-
113-
114-
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
115-
#
116-
# Link your library with frameworks, or libraries. Libraries do not include
117-
# the lib prefix of their name.
118-
#
119-
120-
# spec.framework = "SomeFramework"
121-
# spec.frameworks = "SomeFramework", "AnotherFramework"
122-
123-
# spec.library = "iconv"
124-
# spec.libraries = "iconv", "xml2"
125-
126-
127-
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
128-
#
129-
# If your library depends on compiler flags you can set them in the xcconfig hash
130-
# where they will only apply to your library. If you depend on other Podspecs
131-
# you can include multiple dependencies to ensure it works.
132-
133-
# spec.requires_arc = true
134-
135-
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
136-
# spec.dependency "JSONKit", "~> 1.4"
137-
14+
15+
s.author = { "Webmonks SRL" => "[email protected]" }
16+
s.source = { :git => "https://github.com/monksoftware/Marvin.git", :tag => "#{s.version}" }
17+
18+
s.swift_versions = ['5', '5.1']
19+
s.ios.deployment_target = '9.0'
20+
21+
s.source_files = "Sources/**/*.{swift}"
13822
end

0 commit comments

Comments
 (0)