snippet_cli 0.3.2 → 0.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/exe/snippet_cli +0 -0
- data/lib/Setup.rb +7 -5
- data/lib/snippet_cli/version.rb +1 -1
- data/snippet_cli.gemspec +0 -1
- metadata +1 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e25141ab39fae936abcf0a874788babb6c1221d7ca3b9f7c825b9f8509e5838
|
4
|
+
data.tar.gz: e7349f468d60d572ea3f996f9c8840e36e00912e73d5554a5cbf115689eed275
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df7918fc45a58b683e9a39dbeacb5b7d55ce7ab360d6885d6ae5b942ed8b74b3c09a95dcd525b6819dff7560a3170f9122cd48ad2ce6aef43de30470351ac23f
|
7
|
+
data.tar.gz: 92fe9fef37c4ac6224f97bfaf72a61d10076bc2f64e91a319b9fc67a0798dc00947712f2bc59dfb257d10885ffed3bdf0fbc82fee724947ed7885a73bdcdab1c
|
data/exe/snippet_cli
CHANGED
File without changes
|
data/lib/Setup.rb
CHANGED
@@ -62,13 +62,15 @@ class Setup
|
|
62
62
|
end
|
63
63
|
|
64
64
|
def generate_config()
|
65
|
-
if File.exist?("#{ENV["HOME"]}
|
65
|
+
if File.exist?("#{ENV["HOME"]}\\snippet_cli_config.txt") then
|
66
66
|
|
67
67
|
else
|
68
|
-
|
69
|
-
|
70
|
-
File.open("#{ENV["HOME"]}
|
71
|
-
File.open("#{ENV["HOME"]}
|
68
|
+
FileUtils.cd("#{ENV["HOME"]}")
|
69
|
+
FileUtils.touch("#{ENV["HOME"]}\\snippet_cli_config.txt")
|
70
|
+
File.open("#{ENV["HOME"]}\\snippet_cli_config.txt", "w") { |f| f.write "NAME = #{self.user_name}\n"}
|
71
|
+
File.open("#{ENV["HOME"]}\\snippet_cli_config.txt", "w") { |f| f.write "OS = #{self.user_os}\n"}
|
72
|
+
File.open("#{ENV["HOME"]}\\snippet_cli_config.txt", "w") { |f| f.write "STORAGE = #{self.user_storage}\n"}
|
73
|
+
File.open("#{ENV["HOME"]}\\snippet_cli_config.txt", "w") { |f| f.write "CONFIG_PRESENT = TRUE\n"}
|
72
74
|
end
|
73
75
|
end
|
74
76
|
end
|
data/lib/snippet_cli/version.rb
CHANGED
data/snippet_cli.gemspec
CHANGED
@@ -11,7 +11,6 @@ Gem::Specification.new do |spec|
|
|
11
11
|
spec.description = "You can write to your espanso config directly using this gem"
|
12
12
|
spec.homepage = "https://github.com/ajmarkow/snippet_cli"
|
13
13
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
14
|
-
spec.add_runtime_dependency "thor"
|
15
14
|
spec.add_runtime_dependency "tty-prompt"
|
16
15
|
spec.add_runtime_dependency "tty-box"
|
17
16
|
spec.add_runtime_dependency "tty-platform"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: snippet_cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- AJ Markow
|
@@ -10,20 +10,6 @@ bindir: exe
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2021-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: thor
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '0'
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: tty-prompt
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|