install_gem_local 0.1.8 → 0.1.9
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/lib/install_gem_local.rb +5 -2
- data/lib/install_gem_local/utilization.rb +33 -0
- data/lib/install_gem_local/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '087c77ad9ec2f03a39c060f95f9bc63424185fc99fb6adec354c233eea236949'
|
4
|
+
data.tar.gz: d83cf95d827d5b63baef1741a503ae8ce521c3b77b069cb543206ae071a779d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19a41dc5d69f694dcd315dddde27f6c5971cfed49f2c1b191cd4bed027aae2e7edf8d5dd4afb8fbbae382b0e171ef9adcc36af7861a2b3844063f2aebc26b7d1
|
7
|
+
data.tar.gz: 26dbc901324e139324873d058a5bddedc98efe344fb8bb2f073ae45205e2ac29477ef8cc6b3d59e378733df29854c733e96ce357fa181f6e18b3cef21231e0a3
|
data/Gemfile.lock
CHANGED
data/lib/install_gem_local.rb
CHANGED
@@ -14,7 +14,10 @@ Dir[File.join(File.expand_path(__dir__), 'install_gem_local', '**/*.rb')].each {
|
|
14
14
|
|
15
15
|
module InstallGemLocal
|
16
16
|
class App < Thor
|
17
|
-
|
18
|
-
|
17
|
+
|
18
|
+
desc 'methods_description', 'list all methods description'
|
19
|
+
def methods_desc
|
20
|
+
puts InstallGemLocal::Utilization.show_methods
|
21
|
+
end
|
19
22
|
end
|
20
23
|
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module InstallGemLocal
|
2
|
+
class Utilization
|
3
|
+
class << self
|
4
|
+
def show_methods
|
5
|
+
long_desc = <<-STR
|
6
|
+
*******************************************
|
7
|
+
|
8
|
+
CLI to manage your own gems
|
9
|
+
|
10
|
+
*******************************************
|
11
|
+
Available Methods
|
12
|
+
*******************************************
|
13
|
+
|
14
|
+
Remove old Gem version
|
15
|
+
|
16
|
+
Build new Gem version
|
17
|
+
|
18
|
+
Install new Gem version
|
19
|
+
|
20
|
+
Copy gem to folder
|
21
|
+
|
22
|
+
Build the latest version and push the gem
|
23
|
+
|
24
|
+
Remove old version, build and install the new version
|
25
|
+
|
26
|
+
Remove old version, build, install and copy the new version
|
27
|
+
|
28
|
+
*******************************************
|
29
|
+
STR
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: install_gem_local
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dhanabal T
|
@@ -162,6 +162,7 @@ files:
|
|
162
162
|
- lib/install_gem_local/action/remove_gem.rb
|
163
163
|
- lib/install_gem_local/helper.rb
|
164
164
|
- lib/install_gem_local/navigation.rb
|
165
|
+
- lib/install_gem_local/utilization.rb
|
165
166
|
- lib/install_gem_local/version.rb
|
166
167
|
homepage: https://github.com/dhanabalt/install_gem_local
|
167
168
|
licenses:
|