install_gem_local 0.1.10 → 0.1.11

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
  SHA256:
3
- metadata.gz: e95eaf1add788ed287e60e43b3a6a2fa4e3f18cab8456541b290fdc646a5aaab
4
- data.tar.gz: 9d14764e7ff8ea580c812912387ebef5d5883a41c26d87ffae956b345e5777fe
3
+ metadata.gz: cf8905403eccc61cb1cd73a12b47bac80b7c3ea2e6219754b2d36df9123cb9c0
4
+ data.tar.gz: a10e794837d9ca1fed06f6cc1cd94fdb27254fab2d68767f7f3d120496fffd67
5
5
  SHA512:
6
- metadata.gz: 0fc4343902cdf09d61772f864c8920b8f51714f6f11c4a52aeff04ba5f35340ea80613e4f6d93fa3e9bc1d0463be2a8d5d4dece8f59d3a5da4427689c7a7b78f
7
- data.tar.gz: e6a20b7ccd1c7c2bb07c35890f594d827a79ed3a3a9a64af3c897ce370b1c947bd832001778877df9e690faac2a5250ab244c5e3e7937fc0ecbf275fd66def03
6
+ metadata.gz: 75261c8ff5ddae2a27aa61554edb958764940d7895d43446a0675cce8f3855bbcc733f90507744a1b291151a081a61939c28b4c89ddb54d8c2accc5af2998030
7
+ data.tar.gz: 9c078824c0102e1b96f2ca414ad7e4b6c02ecb4054b9532ea41e668f7603c7f829f8c951d6e3399cecef922703247fc0ce30ebfd39c7432c1b022a451fbbbbf8
data/Gemfile CHANGED
@@ -7,3 +7,6 @@ gemspec
7
7
 
8
8
  # cops
9
9
  gem 'rubocop'
10
+
11
+ gem 'i18n'
12
+ gem 'tty-command'
data/Gemfile.lock CHANGED
@@ -1,20 +1,22 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- install_gem_local (0.1.10)
4
+ install_gem_local (0.1.11)
5
5
  awesome_print (~> 1.8, >= 1.8.0)
6
6
  downup (~> 0.11, >= 0.11.7)
7
7
  thor (~> 0.20, >= 0.20.3)
8
- tty-command (~> 0.8, >= 0.8.2)
9
8
 
10
9
  GEM
11
10
  remote: https://rubygems.org/
12
11
  specs:
13
12
  ast (2.4.0)
14
13
  awesome_print (1.8.0)
14
+ concurrent-ruby (1.1.5)
15
15
  diff-lcs (1.3)
16
16
  downup (0.11.7)
17
17
  equatable (0.5.0)
18
+ i18n (1.6.0)
19
+ concurrent-ruby (~> 1.0)
18
20
  jaro_winkler (1.5.2)
19
21
  parallel (1.17.0)
20
22
  parser (2.6.3.0)
@@ -56,10 +58,12 @@ PLATFORMS
56
58
 
57
59
  DEPENDENCIES
58
60
  bundler (~> 2.0)
61
+ i18n
59
62
  install_gem_local!
60
63
  rake (~> 10.0)
61
64
  rspec (~> 3.0)
62
65
  rubocop
66
+ tty-command
63
67
 
64
68
  BUNDLED WITH
65
69
  2.0.1
@@ -35,5 +35,5 @@ Gem::Specification.new do |spec|
35
35
  # CLI
36
36
  spec.add_dependency 'thor', '~> 0.20', '>= 0.20.3'
37
37
  # Execute shell commands with pretty output
38
- spec.add_dependency 'tty-command', '~> 0.8', '>= 0.8.2'
38
+ #spec.add_dependency 'tty-command', '~> 0.8', '>= 0.8.2'
39
39
  end
@@ -14,10 +14,10 @@ module InstallGemLocal
14
14
  def flash_message(title: "")
15
15
  message = <<-STR
16
16
  █████ ███████ █
17
- █ █
18
- █ █
19
- ███ █
20
- █ █
17
+ ██
18
+ ██
19
+ ██ ███ █
20
+ ██ █ █
21
21
  █████ ███████ ███████ #{title}
22
22
  STR
23
23
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module InstallGemLocal
4
- VERSION = '0.1.10'
4
+ VERSION = '0.1.11'
5
5
  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.10
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dhanabal T
@@ -112,26 +112,6 @@ dependencies:
112
112
  - - ">="
113
113
  - !ruby/object:Gem::Version
114
114
  version: 0.20.3
115
- - !ruby/object:Gem::Dependency
116
- name: tty-command
117
- requirement: !ruby/object:Gem::Requirement
118
- requirements:
119
- - - "~>"
120
- - !ruby/object:Gem::Version
121
- version: '0.8'
122
- - - ">="
123
- - !ruby/object:Gem::Version
124
- version: 0.8.2
125
- type: :runtime
126
- prerelease: false
127
- version_requirements: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - "~>"
130
- - !ruby/object:Gem::Version
131
- version: '0.8'
132
- - - ">="
133
- - !ruby/object:Gem::Version
134
- version: 0.8.2
135
115
  description: to build and install the gem in my local
136
116
  email:
137
117
  - vel.dhanabal@gmail.com