ZMediumToMarkdown 1.4.0 → 1.4.1
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 +4 -4
- data/bin/ZMediumToMarkdown +4 -2
- data/lib/Helper.rb +4 -20
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34291a687f27e5574c6b62f7cedce434d3d47c4c3733ae1ac4e9828e2d2752a3
|
4
|
+
data.tar.gz: 7bb3d0c05ec07545063254cc5cabadc14ba9ef8792c0f35ccfab9b9f0d953e12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 899bfab86c7ed2b1000a609dda46b718774d09422d85ef03b4273a300c0624d724d878b0e25702dc043e0761ccaefdb1c8c34c5531f2d7e6fe58ccb73abb1b8e
|
7
|
+
data.tar.gz: 54ffaf7cc0e7f7bd078b929bac128096c92b1e6fc9d25e3ae1c980db962ce9729966d614a2d2cbd7c013b8f7b9d947522f5b7a48bbdf83eb7429da66463046e9
|
data/bin/ZMediumToMarkdown
CHANGED
@@ -32,7 +32,7 @@ class Main
|
|
32
32
|
end
|
33
33
|
|
34
34
|
opts.on('-n', '--new', 'Update to latest version') do
|
35
|
-
if Helper.
|
35
|
+
if Helper.getRemoteVersionFromGithub() > Helper.getLocalVersion()
|
36
36
|
Helper.downloadLatestVersion()
|
37
37
|
else
|
38
38
|
puts "You're using the latest version :)"
|
@@ -47,8 +47,10 @@ class Main
|
|
47
47
|
end
|
48
48
|
|
49
49
|
opts.on('-v', '--version', 'Print current ZMediumToMarkdown Version') do
|
50
|
-
puts "Version:#{Helper.
|
50
|
+
puts "Version:#{Helper.getLocalVersion().to_s}"
|
51
51
|
puts "Output Path:#{outputFilePath.getAbsolutePath(nil)}"
|
52
|
+
|
53
|
+
Helper.printNewVersionMessageIfExists()
|
52
54
|
end
|
53
55
|
|
54
56
|
end.parse!
|
data/lib/Helper.rb
CHANGED
@@ -11,20 +11,6 @@ require 'zip'
|
|
11
11
|
|
12
12
|
class Helper
|
13
13
|
|
14
|
-
class Version
|
15
|
-
attr_accessor :major, :minor, :patch
|
16
|
-
|
17
|
-
def initialize(major, minor, patch)
|
18
|
-
@major = major.to_i
|
19
|
-
@minor = minor.to_i
|
20
|
-
@patch = patch.to_i
|
21
|
-
end
|
22
|
-
|
23
|
-
def to_string()
|
24
|
-
"#{major.to_s}.#{minor.to_s}.#{patch.to_s}"
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
14
|
def self.createDirIfNotExist(dirPath)
|
29
15
|
dirs = dirPath.split("/")
|
30
16
|
currentDir = ""
|
@@ -103,7 +89,7 @@ class Helper
|
|
103
89
|
end
|
104
90
|
|
105
91
|
def self.printNewVersionMessageIfExists()
|
106
|
-
if Helper.
|
92
|
+
if Helper.getRemoteVersionFromGithub() > Helper.getLocalVersion()
|
107
93
|
puts "##########################################################"
|
108
94
|
puts "##### New Version Available!!! #####"
|
109
95
|
puts "##### Please type `bin/ZMediumToMarkdown -n` to update!!##"
|
@@ -111,7 +97,7 @@ class Helper
|
|
111
97
|
end
|
112
98
|
end
|
113
99
|
|
114
|
-
def self.
|
100
|
+
def self.getLocalVersion()
|
115
101
|
rootPath = File.expand_path('../', File.dirname(__FILE__))
|
116
102
|
|
117
103
|
result = nil
|
@@ -123,8 +109,7 @@ class Helper
|
|
123
109
|
end
|
124
110
|
|
125
111
|
if !result.nil?
|
126
|
-
|
127
|
-
Version.new(versions[0],versions[1],versions[2])
|
112
|
+
Gem::Version.new(result)
|
128
113
|
else
|
129
114
|
nil
|
130
115
|
end
|
@@ -146,8 +131,7 @@ class Helper
|
|
146
131
|
end
|
147
132
|
|
148
133
|
if !tagName.nil?
|
149
|
-
|
150
|
-
Version.new(versions[0],versions[1],versions[2])
|
134
|
+
Gem::Version.new(tagName.downcase.gsub! 'v','')
|
151
135
|
else
|
152
136
|
nil
|
153
137
|
end
|