Skip to content

Commit

Permalink
1.0.0版本
Browse files Browse the repository at this point in the history
  • Loading branch information
Coder-Star committed Jun 10, 2021
1 parent 768e128 commit 0d54c83
Show file tree
Hide file tree
Showing 103 changed files with 23,225 additions and 358 deletions.
73 changes: 56 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# OS X
### macOS ###

.DS_Store

# Xcode

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
Expand All @@ -12,26 +17,60 @@ build/
*.perspectivev3
!default.perspectivev3
xcuserdata/
*.xccheckout
profile

## Other
*.moved-aside
DerivedData
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

# Bundler
.bundle
# CocoaPods
Pods/

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

# Carthage
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/
# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output

iOSInjectionProject/

### Objective-C Patch ###

### Swift ###


## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
Packages/
Package.pins
Package.resolved
.build/


# Accio dependency management
Dependencies/
.accio/


## Xcode Patch
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings


14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

47 changes: 22 additions & 25 deletions CSPickerView.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,32 @@

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

# 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
TODO: Add long description of the pod here.
DESC

s.version = '1.0.0'
s.summary = 'CSPickerView'
s.description = "多样式底部弹出样式选择器"
s.homepage = 'https://github.com/Coder-Star/CSPickerView'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.screenshots = 'https://github.com/Coder-Star/CSPickerView/raw/main/Sceenshots/startAndEndDate.png', 'https://github.com/Coder-Star/CSPickerView/raw/main/Sceenshots/date.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Coder-Star' => 'litianxing@nowcoder.com' }
s.author = { 'CoderStar' => '1340529758@qq.com' }
s.source = { :git => 'https://github.com/Coder-Star/CSPickerView.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

s.social_media_url = 'https://coder-star.github.io/'
s.ios.deployment_target = '9.0'
s.swift_version = ["5","4.2"]

s.default_subspec = 'framework'

s.source_files = 'CSPickerView/Classes/**/*'

# s.resource_bundles = {
# 'CSPickerView' => ['CSPickerView/Assets/*.png']
# }
s.subspec 'source' do |source|
source.source_files = 'LTXiOSUtils/Classes/Util/**/*.swift'
source.source_files = 'CSPickerView/Classes/**/*'
source.resource_bundles = {
'CSPickerView' => ['CSPickerView/Assets/**/*']
}
source.frameworks = 'Foundation', 'UIKit'
end

# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
s.subspec 'framework' do |framework|
framework.frameworks = 'Foundation', 'UIKit'
framework.ios.vendored_framework = 'CSPickerView/Frameworks/*.framework'
framework.resources = 'CSPickerView/Frameworks/*.bundle'
end
end
Empty file removed CSPickerView/Assets/.gitkeep
Empty file.
Loading

0 comments on commit 0d54c83

Please sign in to comment.