Skip to content

Commit

Permalink
AlamofireKit - Version - 0.1.0
Browse files Browse the repository at this point in the history
AlamofireKit - Version - 0.1.0
  • Loading branch information
arzrasel committed Jan 24, 2021
1 parent 6f75d42 commit 7ddb982
Show file tree
Hide file tree
Showing 51 changed files with 2,651 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# OS X
.DS_Store

# Xcode
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
*.xccheckout
profile
*.moved-aside
DerivedData
*.hmap
*.ipa

# Bundler
.bundle

# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
#
# Note: if you ignore the Pods directory, make sure to uncomment
# `pod install` in .travis.yml
#
# Pods/
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# references:
# * https://www.objc.io/issues/6-build-tools/travis-ci/
# * https://github.com/supermarin/xcpretty#usage

osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/AlamofireKit.xcworkspace -scheme AlamofireKit-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
58 changes: 58 additions & 0 deletions AlamofireKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
#
# Be sure to run `pod lib lint AlamofireKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
# CREATE
# * pod lib create AlamofireKit
# * ios>swift>yes>None>No
# * Push to git and release
# * pod trunk register rashedgit@gmail.com 'Rz Rasel'
# * pod lib lint AlamofireKit.podspec --allow-warnings
# * pod trunk push --allow-warnings
# UPDATE
# * pod lib lint --allow-warnings
# * Push to git and release
# * pod trunk push --allow-warnings ORRR>> pod trunk push AlamofireKit.podspec --allow-warnings
# AlamofireKit Version = 0.1.0


Pod::Spec.new do |s|
s.name = 'AlamofireKit'
s.version = '0.1.0'
s.summary = 'A short description of AlamofireKit.'

# 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
'A short description of AlamofireKit.'
DESC

s.homepage = 'https://github.com/arzrasel/AlamofireKit'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Rz Rasel' => 'rashedgit@gmail.com' }
s.source = { :git => 'https://github.com/arzrasel/AlamofireKit.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

#s.ios.deployment_target = '9.0'

s.ios.deployment_target = '11.0'

s.source_files = 'Source/**/*.swift'

# s.resource_bundles = {
# 'AlamofireKit' => ['AlamofireKit/Assets/*.png']
# }

# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
s.dependency 'Alamofire', '~> 5.1'
end
Empty file added AlamofireKit/Assets/.gitkeep
Empty file.
Empty file added AlamofireKit/Classes/.gitkeep
Empty file.
Loading

0 comments on commit 7ddb982

Please sign in to comment.