Skip to content

Commit

Permalink
Merge pull request #2 from MeetYouDevs/master
Browse files Browse the repository at this point in the history
SyncMaster
  • Loading branch information
dabing1022 authored Jan 12, 2021
2 parents 1c491b0 + 9577ad7 commit 749c87a
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 809 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
.idea/
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@


### 更新

- 2021-01-12

v0.3.1.2 fix some bugs

- 2020-11-02

v0.3.0.11 支持纯Swift、纯Object-C、Swift-OC混编
Expand Down
2 changes: 1 addition & 1 deletion cocoapods-imy-bin/cocoapods-imy-bin.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|

spec.add_dependency 'parallel'
spec.add_dependency 'cocoapods'
spec.add_dependency 'cocoapods-generate'
spec.add_dependency "cocoapods-generate",'~>2.0.1'

spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
Expand Down
11 changes: 8 additions & 3 deletions cocoapods-imy-bin/lib/cocoapods-imy-bin/command/bin/auto.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,14 @@ def initialize(argv)
super
end

def validate!
help! "未找到 podspec文件" unless @podspec
super
end

def run
@specification = Specification.from_file(@podspec)

unless @podspec
raise Informative, "未找到 podspec文件"
end
sources_sepc = run_archive

fail_push_specs = []
Expand Down Expand Up @@ -175,6 +178,7 @@ def spec_file

#Dir.glob 可替代
def find_podspec
name = nil
Pathname.pwd.children.each do |child|
puts child
if File.file?(child)
Expand All @@ -186,6 +190,7 @@ def find_podspec
end
end
end
return name
end

end
Expand Down
165 changes: 0 additions & 165 deletions cocoapods-imy-bin/lib/cocoapods-imy-bin/command/bin/local.rb

This file was deleted.

2 changes: 1 addition & 1 deletion cocoapods-imy-bin/lib/cocoapods-imy-bin/gem_version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

module CBin
VERSION = '0.3.0.12'
VERSION = '0.3.1.2'
end

module Pod
Expand Down

This file was deleted.

Loading

0 comments on commit 749c87a

Please sign in to comment.