mt_tool 0.1.1 → 0.1.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 +4 -4
- data/Gemfile.lock +1 -1
- data/bin/mt_tool +7 -0
- data/lib/mt_tool/version.rb +1 -1
- data/mt_tool.gemspec +3 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 466b8868490b3f9b799559c3c4213b3ca4ab91f2a87dbc5df5d7db34091be194
|
|
4
|
+
data.tar.gz: 712bdb6715c3cd7213652f3104c6ed4b285c5ddb903bbbd0a5cec22c7bd3ba74
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46c1cb718b27f665c220c0f1341f3cf2b686f7d4181565594d7b9426f00b5e5053dc73ac51574cfebe575b5895fdb70245f3daa0db0a350a87a8466bfdb14b24
|
|
7
|
+
data.tar.gz: 61ad9301171acc6fc238570114d9d597d56a09fa047d40feebdf7d8baac38eeb54f4f6efc68e5c0d97f37a8f24b1f1c95e7d774cbb832269415c0de0a29a5471
|
data/Gemfile.lock
CHANGED
data/bin/mt_tool
ADDED
data/lib/mt_tool/version.rb
CHANGED
data/mt_tool.gemspec
CHANGED
|
@@ -22,9 +22,11 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
24
|
spec.bindir = "bin"
|
|
25
|
-
spec.executables = spec.files.grep(%r{\Abin/}) { |f| File.basename(f) }
|
|
25
|
+
# spec.executables = spec.files.grep(%r{\Abin/}) { |f| File.basename(f) }
|
|
26
|
+
spec.executables << 'mt_tool'
|
|
26
27
|
spec.require_paths = ["lib"]
|
|
27
28
|
|
|
29
|
+
|
|
28
30
|
# Uncomment to register a new dependency of your gem
|
|
29
31
|
# spec.add_dependency "example-gem", "~> 1.0"
|
|
30
32
|
spec.add_development_dependency 'bundler'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mt_tool
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- LyleLH
|
|
@@ -195,7 +195,8 @@ dependencies:
|
|
|
195
195
|
description: 常用工具 -- 快速创建模版代码.
|
|
196
196
|
email:
|
|
197
197
|
- v2top1lyle@gmail.com
|
|
198
|
-
executables:
|
|
198
|
+
executables:
|
|
199
|
+
- mt_tool
|
|
199
200
|
extensions: []
|
|
200
201
|
extra_rdoc_files: []
|
|
201
202
|
files:
|
|
@@ -209,6 +210,7 @@ files:
|
|
|
209
210
|
- Gemfile.lock
|
|
210
211
|
- README.md
|
|
211
212
|
- Rakefile
|
|
213
|
+
- bin/mt_tool
|
|
212
214
|
- lib/mt_tool.rb
|
|
213
215
|
- lib/mt_tool/analyze.rb
|
|
214
216
|
- lib/mt_tool/commands.rb
|