pod_updater 0.3.1 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1988af78a8875536422658836289b787dbb5c9e2
4
- data.tar.gz: 7e041b182ad6667b1fb4992dcd0d79bf9c68c41f
3
+ metadata.gz: 96bceeb06fbf7c78bdba2763e9939283e5739bf1
4
+ data.tar.gz: a16397c6bcf4fc22697e9f6d4569a1dcb1cf4cb7
5
5
  SHA512:
6
- metadata.gz: e54339684c9e4c8a38340aaa8454f31f12b919e0dbff23ba35f6ba5dd82dd90be071579d7533421eeb7df1a842dc95b83fbeec1f55f4da685a0492eeaa87498d
7
- data.tar.gz: ae87d36effbca20228bb89cc86e267d3a4c3a87bd715fd222221ecaffdc3d34ed0a6d8c41f99823edd2838a138d7d0762af295ce5b4a90e0b8fdc424abc5e12d
6
+ metadata.gz: d22c3dcd2ff46c4abd75949ef533a393550870ddec6409aa2f6f12df73716c33bac64b6cf5e84c03d579be14f485b7f0270d5900acb7d2e86a0e2fde371771b3
7
+ data.tar.gz: 17737a57b05efdbd2bdd533ca6cf7fd56b4aed500d8e7f9871a8cca4ce33348f93e3b298b64d87c03ad1b451b7e360fdb1971ffc7e833a9bc87ac946c10e0766
data/lib/pod_updater.rb CHANGED
@@ -1,5 +1,5 @@
1
- require "podUpdater/version"
2
- require "podUpdater/pod_push"
1
+ require "pod_updater/version"
2
+ require "pod_updater/pod_push"
3
3
 
4
4
 
5
5
  module PodUpdater
@@ -11,24 +11,3 @@ module PodUpdater
11
11
 
12
12
  end
13
13
 
14
- require 'optparse'
15
-
16
- options = {}
17
- option_parser = OptionParser.new do |opts|
18
-
19
- opts.banner = 'here is help messages of the command line tool'
20
-
21
- options[:version] = nil
22
- opts.on('-v', '--version [version]', String, 'the podspec\'s version') do |version|
23
- options[:version] = version
24
- end
25
-
26
- end.parse!
27
-
28
- unless options[:version]
29
-
30
- abort("ABORTED! You forgot pass a version value with command \'-v [version]\'")
31
- exit
32
- end
33
- puts "哈哈哈开始"
34
- PodUpdater.run(options[:version])
@@ -1,5 +1,5 @@
1
- require "podUpdater/git_tag_flow"
2
- require "podUpdater/modify_podspec"
1
+ require "pod_updater/git_tag_flow"
2
+ require "pod_updater/modify_podspec"
3
3
 
4
4
  module PodUpdater
5
5
 
@@ -1,3 +1,3 @@
1
1
  module PodUpdater
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pod_updater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - hwzss