pod_updater 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c271472eb4aa787e38c252b519c13bddc4a0d832
4
+ data.tar.gz: 1806cc07abef4fd5b80a48862d0f13d17509ec33
5
+ SHA512:
6
+ metadata.gz: d673d962bbb35ecae5b031c76cfc2a07854f33471589162b433ad2c79ba76f39c37269c9b6b23ef3c8762f2579a42442d63021ae531cc93391fc7acb79c91ba8
7
+ data.tar.gz: 67a1ef6a4008900d442ae888c7dc05c616a1753393018049b5487201f91c547f709878e8d6cdd2a81c22ef05a4e60f483d8b45266b8ca08cb37e70ead828c936
data/.DS_Store ADDED
Binary file
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at 1833361588@qq.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in podUpdater.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 hwzss
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # PodUpdater
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/podUpdater`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'podUpdater'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install podUpdater
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/podUpdater. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
40
+
41
+ ## Code of Conduct
42
+
43
+ Everyone interacting in the PodUpdater project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/podUpdater/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/.DS_Store ADDED
Binary file
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "podUpdater"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/podUpdater ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "podUpdater.rb"
4
+
5
+
6
+ PodUpdater.run(ARGV[0])
7
+
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/lib/.DS_Store ADDED
Binary file
Binary file
@@ -0,0 +1,27 @@
1
+
2
+ module PodUpdater
3
+
4
+ # 提供路径,然后将项目打包上git,标记tag
5
+ def git_tag_flow(path,msg,tag_version)
6
+
7
+ cmd = []
8
+
9
+ cmd << %(cd #{path})
10
+ cmd << 'git add .'
11
+ cmd << %(git commit -m "#{msg}")
12
+ cmd << 'git push'
13
+ cmd << %(git tag -a #{tag_version} -m "#{msg}")
14
+ cmd << 'git push --tags'
15
+
16
+ # TODO: 尝试在每次即将执行该命令时,打印出这次的命令
17
+ IO.popen(cmd.join(" && ")) do |io|
18
+ io.each do |line|
19
+ puts line
20
+ end
21
+ io.close
22
+ end
23
+
24
+ end
25
+
26
+ module_function :git_tag_flow
27
+ end
@@ -0,0 +1,90 @@
1
+
2
+ module PodUpdater
3
+
4
+ # 修改podspec的s.verison的值
5
+ def modifyPodspec(path:"",version:"0.0.0")
6
+
7
+ if version == "0.0.0"
8
+ puts "请指定版本好的值,如 modifyPodspec version:#{version}"
9
+ return
10
+ end
11
+ unless version =~ /^\d{1,}.\d.\d$|^\d{1,}.\d$|^\d{1,}$/
12
+ puts "version:#{version}的格式不对"
13
+ return 
14
+ end
15
+
16
+ # DEBUG:这里写死了路径是为了方便调试,正式用的话需去掉
17
+ # path = "/Users/qwkj/Documents/WZ_GitHub/Ruby_Learning/day_7/QW_Http.podspec"
18
+ # END
19
+
20
+ unless File.exist?path
21
+ puts "路径不存在"
22
+ return
23
+ end
24
+
25
+ puts "***修改podspec文件***"
26
+ File.open(path, "r+") do |f|
27
+ s = ""
28
+ f.each_line do |line|
29
+ # puts "#{line}"
30
+ if line.to_s =~ /s\.version\s*=\s*"(\d{1,}.\d.\d|\d{1,}.\d|\d{1,})"/
31
+ # puts "匹配到了"
32
+ temp = $1.to_s
33
+ line = line.sub(/\d{1,}.\d.\d|\d{1,}.\d|\d{1,}/) do |match|
34
+ version.to_s
35
+ end
36
+ end
37
+ s += line
38
+ end
39
+ puts "#{s}"
40
+ File.open(path, "w+") do |f| f.write(s) end
41
+ end
42
+
43
+ end
44
+
45
+ # 找到指定路径下的podspec文件名
46
+ def pathWithPodspecSuffix(path)
47
+
48
+ # path = "/Users/qwkj/Desktop/IOS_Pod_Spec_Repo/千网PodRepo/QWCrashReporter/1.0.8/"
49
+ path = File.expand_path(path)
50
+ return nil unless File.exist?(path)
51
+
52
+ unless path =~ /.podspec$/
53
+
54
+ if File.directory?(path)
55
+ podfiles = Dir.glob("#{path}/*.podspec")
56
+ puts "#{podfiles}"
57
+ if podfiles.length == 0
58
+ puts %('#{path}'下无法找到'.podspec'文件)
59
+ return nil
60
+ elsif podfiles.length == 1
61
+ path = podfiles.first
62
+ else
63
+ puts "目录下找到多个podspec文件!"
64
+ podfiles.each_with_index do |elem, index|
65
+ basename = File.basename(elem)
66
+ puts %(#{index}.#{basename} )
67
+ end
68
+ puts "请指定您当前需要的操作的文件,输入它的序号:"
69
+ i = gets.to_i
70
+
71
+ case i
72
+ when 0 .. (podfiles.length-1)
73
+ path = podfiles[i.to_i]
74
+ else
75
+ puts "输入错误❌"
76
+ path = nil
77
+ end
78
+
79
+ end
80
+ end
81
+ end
82
+
83
+ path
84
+
85
+ end
86
+
87
+ module_function :pathWithPodspecSuffix
88
+ module_function :modifyPodspec
89
+
90
+ end
@@ -0,0 +1,45 @@
1
+
2
+ # require "/Users/qwkj/Documents/WZ_GitHub/podUpdater/podUpdater/lib/podUpdater/git_tag_flow.rb"
3
+ # require "/Users/qwkj/Documents/WZ_GitHub/podUpdater/podUpdater/lib/podUpdater/modify_podspec.rb"
4
+ require "podUpdater/git_tag_flow"
5
+ require "podUpdater/modify_podspec"
6
+
7
+ module PodUpdater
8
+
9
+ def sayHi
10
+ puts "heiehieheihehie"
11
+ aPath = File.expand_path('./');puts "哈哈哈#{aPath}"
12
+ end
13
+ # 给定pod库项目的路径,以及新版pod库的版本,将自己的pod提交到git,然后打上tag,再push trunk到pod服务器去
14
+ def pushPodToSevice(path,version)
15
+ # FOR_DEBUG:
16
+ # path = "/Users/qwkj/Documents/WZ_GitHub/WZ_Framework"
17
+ # END
18
+
19
+ podFilePath = pathWithPodspecSuffix(path)
20
+
21
+ unless podFilePath
22
+ puts "未找到相应的podspec文件"
23
+ return
24
+ end
25
+
26
+ msg = "for pod version:#{version}"
27
+
28
+ modifyPodspec(path:podFilePath,version:version)
29
+
30
+ git_tag_flow(path,msg,version)
31
+
32
+ cmd = []
33
+ cmd << %(pod trunk push #{podFilePath} --allow-warnings)
34
+
35
+ IO.popen(cmd.join('')) do |io|
36
+ io.each do |line|
37
+ puts line
38
+ end
39
+ end
40
+
41
+ end
42
+
43
+ module_function :pushPodToSevice
44
+ module_function :sayHi
45
+ end
@@ -0,0 +1,3 @@
1
+ module PodUpdater
2
+ VERSION = "0.2.2"
3
+ end
data/lib/podUpdater.rb ADDED
@@ -0,0 +1,19 @@
1
+
2
+ # lib = File.expand_path('../', __FILE__)
3
+ # $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ require "podUpdater/version"
6
+ require "podUpdater/pod_push"
7
+
8
+
9
+ module PodUpdater
10
+
11
+ def self.run(version)
12
+ path = File.expand_path(Dir.pwd)
13
+ pushPodToSevice(path,version)
14
+ end
15
+
16
+ end
17
+
18
+
19
+
@@ -0,0 +1,36 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "podUpdater/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "pod_updater"
8
+ spec.version = PodUpdater::VERSION
9
+ spec.authors = ["hwzss"]
10
+ spec.email = ["1833361588@qq.com"]
11
+
12
+ spec.summary = %q{pod tool for iOS dev}
13
+ spec.description = %q{pod tool for iOS dev}
14
+ spec.homepage = "https://github.com/hwzss/podUpdater"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "bin"
30
+ # spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.executables = "podUpdater"
32
+ spec.require_paths = ["lib"]
33
+
34
+ spec.add_development_dependency "bundler", "~> 1.16"
35
+ spec.add_development_dependency "rake", "~> 10.0"
36
+ end
metadata ADDED
@@ -0,0 +1,93 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pod_updater
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.2
5
+ platform: ruby
6
+ authors:
7
+ - hwzss
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-12-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: pod tool for iOS dev
42
+ email:
43
+ - 1833361588@qq.com
44
+ executables:
45
+ - podUpdater
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - .DS_Store
50
+ - .gitignore
51
+ - CODE_OF_CONDUCT.md
52
+ - Gemfile
53
+ - LICENSE.txt
54
+ - README.md
55
+ - Rakefile
56
+ - bin/.DS_Store
57
+ - bin/console
58
+ - bin/podUpdater
59
+ - bin/setup
60
+ - lib/.DS_Store
61
+ - lib/podUpdater.rb
62
+ - lib/podUpdater/.DS_Store
63
+ - lib/podUpdater/git_tag_flow.rb
64
+ - lib/podUpdater/modify_podspec.rb
65
+ - lib/podUpdater/pod_push.rb
66
+ - lib/podUpdater/version.rb
67
+ - podUpdater.gemspec
68
+ homepage: https://github.com/hwzss/podUpdater
69
+ licenses:
70
+ - MIT
71
+ metadata:
72
+ allowed_push_host: 'TODO: Set to ''http://mygemserver.com'''
73
+ post_install_message:
74
+ rdoc_options: []
75
+ require_paths:
76
+ - lib
77
+ required_ruby_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - '>='
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - '>='
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ requirements: []
88
+ rubyforge_project:
89
+ rubygems_version: 2.0.14.1
90
+ signing_key:
91
+ specification_version: 4
92
+ summary: pod tool for iOS dev
93
+ test_files: []