Skip to content

Commit 6e884e7

Browse files
committed
adds test files
Signed-off-by: rpotter12 <rohitpotter12@gmail.com>
1 parent 5a0dc1c commit 6e884e7

6 files changed

Lines changed: 311 additions & 0 deletions

File tree

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#
2+
# Be sure to run `pod lib lint BadgeHub.podspec' to ensure this is a
3+
# valid spec before submitting.
4+
#
5+
# Any lines starting with a # are optional, but their use is encouraged
6+
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
7+
#
8+
9+
Pod::Spec.new do |s|
10+
s.name = 'BadgeHub'
11+
s.version = '0.1.1'
12+
s.summary = 'A way to quickly add a notification bedge icon to any view.'
13+
14+
# This description is used to generate tags and improve search results.
15+
# * Think: What does it do? Why did you write it? What is the focus?
16+
# * Try to keep it short, snappy and to the point.
17+
# * Write the description between the DESC delimiters below.
18+
# * Finally, don't worry about the indent, CocoaPods strips it!
19+
20+
s.description = <<-DESC
21+
Make any UIView a full fledged animated notification center. It is a way to quickly add a notification badge icon to a UIView. It make very easy to add badge to any view.
22+
DESC
23+
24+
s.homepage = 'https://github.com/jogendra/BadgeHub'
25+
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
26+
s.license = { :type => 'MIT', :file => 'LICENSE' }
27+
s.author = { 'jogendra' => 'imjog24@gmail.com' }
28+
s.source = { :git => 'https://github.com/jogendra/BadgeHub.git', :tag => s.version.to_s }
29+
s.social_media_url = 'https://twitter.com/jogendrafx'
30+
31+
s.ios.deployment_target = '10.0'
32+
s.swift_version = '5.0'
33+
34+
s.source_files = 'BadgeHub/Classes/**/*'
35+
36+
# s.resource_bundles = {
37+
# 'BadgeHub' => ['BadgeHub/Assets/*.png']
38+
# }
39+
40+
# s.public_header_files = 'Pod/Classes/**/*.h'
41+
s.frameworks = 'UIKit', 'QuartzCore'
42+
# s.dependency 'AFNetworking', '~> 2.3'
43+
end
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#
2+
# Be sure to run `pod lib lint LoadingShimmer.podspec' to ensure this is a
3+
# valid spec before submitting.
4+
#
5+
# Any lines starting with a # are optional, but their use is encouraged
6+
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
7+
#
8+
9+
Pod::Spec.new do |s|
10+
s.name = 'LoadingShimmer'
11+
s.version = '1.0.3'
12+
s.summary = 'An easy way to add a shimmering effect to any view with just one line of code. It is useful as an unobtrusive loading indicator.'
13+
14+
s.description = <<-DESC
15+
An easy way to add a shimmering effect to any view with just single line of code. It is useful as an unobtrusive loading indicator. This is a network request waiting for the framework, the framework to increase the dynamic effect, convenient and fast, a line of code can be used.
16+
DESC
17+
18+
s.homepage = 'https://github.com/jogendra/LoadingShimmer'
19+
# s.screenshots = 'https://github.com/jogendra/LoadingShimmer/blob/master/Screenshots/demo.png', 'https://github.com/jogendra/LoadingShimmer/blob/master/Screenshots/shimmer.png'
20+
s.license = { :type => 'MIT', :file => 'LICENSE' }
21+
s.author = { 'jogendra' => 'jogendrafx@gmail.com' }
22+
s.source = { :git => 'https://github.com/jogendra/LoadingShimmer.git', :tag => s.version.to_s }
23+
s.social_media_url = 'https://twitter.com/jogendrafx'
24+
25+
s.ios.deployment_target = '10.0'
26+
s.swift_version = '5.0'
27+
28+
s.source_files = 'LoadingShimmer/Classes/**/*'
29+
30+
# s.resource_bundles = {
31+
# 'LoadingShimmer' => ['LoadingShimmer/Assets/*.png']
32+
# }
33+
34+
# s.public_header_files = 'Pod/Classes/**/*.h'
35+
# s.frameworks = 'UIKit', 'MapKit'
36+
# s.dependency 'AFNetworking', '~> 2.3'
37+
end
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
Pod::Spec.new do |s|
2+
s.name = "Moya"
3+
s.version = "14.0.0"
4+
s.summary = "Network abstraction layer written in Swift"
5+
s.description = <<-EOS
6+
Moya abstracts network commands using Swift Generics to provide developers
7+
with more compile-time confidence.
8+
9+
ReactiveSwift and RxSwift extensions exist as well. Instructions for installation
10+
are in [the README](https://github.com/Moya/Moya).
11+
EOS
12+
s.homepage = "https://github.com/Moya/Moya"
13+
s.license = { :type => "MIT", :file => "License.md" }
14+
s.author = { "Ash Furrow" => "ash@ashfurrow.com" }
15+
s.social_media_url = "http://twitter.com/ashfurrow"
16+
s.ios.deployment_target = '10.0'
17+
s.osx.deployment_target = '10.12'
18+
s.tvos.deployment_target = '10.0'
19+
s.watchos.deployment_target = '3.0'
20+
s.source = { :git => "https://github.com/Moya/Moya.git", :tag => s.version }
21+
s.default_subspec = "Core"
22+
s.swift_version = '5.0'
23+
s.cocoapods_version = '>= 1.4.0'
24+
25+
s.subspec "Core" do |ss|
26+
ss.source_files = "Sources/Moya/", "Sources/Moya/Plugins/"
27+
ss.dependency "Alamofire", "~> 5.0"
28+
ss.framework = "Foundation"
29+
end
30+
31+
s.subspec "ReactiveSwift" do |ss|
32+
ss.source_files = "Sources/ReactiveMoya/"
33+
ss.dependency "Moya/Core"
34+
ss.dependency "ReactiveSwift", "~> 6.0"
35+
end
36+
37+
s.subspec "RxSwift" do |ss|
38+
ss.source_files = "Sources/RxMoya/"
39+
ss.dependency "Moya/Core"
40+
ss.dependency "RxSwift", "~> 5.0"
41+
end
42+
end
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Pod::Spec.new do |s|
2+
s.name = "Starscream"
3+
s.version = "4.0.3"
4+
s.summary = "A conforming WebSocket RFC 6455 client library in Swift."
5+
s.homepage = "https://github.com/daltoniam/Starscream"
6+
s.license = 'Apache License, Version 2.0'
7+
s.author = {'Dalton Cherry' => 'http://daltoniam.com', 'Austin Cherry' => 'http://austincherry.me'}
8+
s.source = { :git => 'https://github.com/daltoniam/Starscream.git', :tag => "#{s.version}"}
9+
s.social_media_url = 'http://twitter.com/daltoniam'
10+
s.ios.deployment_target = '8.0'
11+
s.osx.deployment_target = '10.10'
12+
s.tvos.deployment_target = '9.0'
13+
s.watchos.deployment_target = '2.0'
14+
s.source_files = 'Sources/**/*.swift'
15+
s.swift_version = '5.0'
16+
end
Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
#
2+
# Be sure to run `pod spec lint SwiftLib.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://docs.cocoapods.org/specification.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 = "SwiftLib"
19+
spec.version = "0.0.1"
20+
spec.summary = "A CocoaPods library written in Swift"
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
28+
This CocoaPods library helps you perform calculation.
29+
DESC
30+
31+
spec.homepage = "https://github.com/alizainprasla/swiftlib"
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 (example)"
43+
spec.license = { :type => "MIT", :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 = { "alizainprasla" => "alizainprasla@gmail.com" }
57+
# Or just: spec.author = "jeantimex"
58+
# spec.authors = { "jeantimex" => "jean.timex@gmail.com" }
59+
# spec.social_media_url = "https://twitter.com/jeantimex"
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 = "12.1"
72+
# spec.osx.deployment_target = "10.7"
73+
# spec.watchos.deployment_target = "2.0"
74+
# spec.tvos.deployment_target = "9.0"
75+
76+
spec.swift_version = "4.2"
77+
78+
79+
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
80+
#
81+
# Specify the location from where the source should be retrieved.
82+
# Supports git, hg, bzr, svn and HTTP.
83+
#
84+
85+
spec.source = { :git => "https://github.com/alizainprasla/swiftlib.git", :tag => "#{spec.version}" }
86+
87+
88+
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
89+
#
90+
# CocoaPods is smart about how it includes source code. For source files
91+
# giving a folder will include any swift, h, m, mm, c & cpp files.
92+
# For header files it will include any header in the folder.
93+
# Not including the public_header_files will make all headers public.
94+
#
95+
96+
spec.source_files = "SwiftLib/**/*.{h,m,swift}"
97+
# spec.exclude_files = "Classes/Exclude"
98+
99+
# spec.public_header_files = "Classes/**/*.h"
100+
101+
102+
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
103+
#
104+
# A list of resources included with the Pod. These are copied into the
105+
# target bundle with a build phase script. Anything else will be cleaned.
106+
# You can preserve files from being cleaned, please don't preserve
107+
# non-essential files like tests, examples and documentation.
108+
#
109+
110+
# spec.resource = "icon.png"
111+
# spec.resources = "Resources/*.png"
112+
113+
# spec.preserve_paths = "FilesToSave", "MoreFilesToSave"
114+
115+
116+
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
117+
#
118+
# Link your library with frameworks, or libraries. Libraries do not include
119+
# the lib prefix of their name.
120+
#
121+
122+
# spec.framework = "SomeFramework"
123+
# spec.frameworks = "SomeFramework", "AnotherFramework"
124+
125+
# spec.library = "iconv"
126+
# spec.libraries = "iconv", "xml2"
127+
128+
129+
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
130+
#
131+
# If your library depends on compiler flags you can set them in the xcconfig hash
132+
# where they will only apply to your library. If you depend on other Podspecs
133+
# you can include multiple dependencies to ensure it works.
134+
135+
# spec.requires_arc = true
136+
137+
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
138+
# spec.dependency "JSONKit", "~> 1.4"
139+
140+
end
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
Pod::Spec.new do |s|
2+
s.name = "nanopb"
3+
# CocoaPods minor version is minor * 10,000 + patch * 100 + fourth
4+
s.version = "1.30905.0"
5+
s.summary = "Protocol buffers with small code size."
6+
7+
s.description = <<-DESC
8+
Nanopb is a small code-size Protocol Buffers implementation
9+
in ansi C. It is especially suitable for use in
10+
microcontrollers, but fits any memory restricted system.
11+
DESC
12+
13+
s.homepage = "https://github.com/nanopb/nanopb"
14+
s.license = { :type => 'zlib', :file => 'LICENSE.txt' }
15+
s.author = { "Petteri Aimonen" => "jpa@nanopb.mail.kapsi.fi" }
16+
s.source = { :git => "https://github.com/nanopb/nanopb.git", :tag => "0.3.9.5" }
17+
18+
s.requires_arc = false
19+
s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1' }
20+
21+
s.source_files = '*.{h,c}'
22+
s.public_header_files = '*.h'
23+
24+
s.subspec 'encode' do |e|
25+
e.public_header_files = ['pb.h', 'pb_encode.h', 'pb_common.h']
26+
e.source_files = ['pb.h', 'pb_common.h', 'pb_common.c', 'pb_encode.h', 'pb_encode.c']
27+
end
28+
29+
s.subspec 'decode' do |d|
30+
d.public_header_files = ['pb.h', 'pb_decode.h', 'pb_common.h']
31+
d.source_files = ['pb.h', 'pb_common.h', 'pb_common.c', 'pb_decode.h', 'pb_decode.c']
32+
end
33+
end

0 commit comments

Comments
 (0)