instructions_list 1.0.8.2.beta → 1.0.8.3.beta
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/exe/il +4 -1
- data/lib/instructions_list/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8568dbe29cecc2a19f7ce0688219b822df34c2b
|
4
|
+
data.tar.gz: 2395ca1847f9373686a23f754008fe6e4f06dafb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 573f703a3a892f69d4a7b4e0112d2418fc09109c8dfb9b8182411f09ab026f3eafe01841c10444c3ac6aa68c008f7ed18429411985f5db58cc4bee93fa182a89
|
7
|
+
data.tar.gz: 15e17d65700717f7696a4378ce775f0b7a9d3f9368880df5f7de8bf220a7d21dd50cfc9f9fc295c7ba33822fe0029c259d700b473661b58266a985c47f9a606d
|
data/exe/il
CHANGED
@@ -17,6 +17,7 @@ module InstructionsList
|
|
17
17
|
system "mkdir -p #{INSTRUCTIONS_DIR}"
|
18
18
|
system "touch #{KEY_PATH}"
|
19
19
|
system "echo #{key} > #{KEY_PATH}"
|
20
|
+
invoke :sync
|
20
21
|
end
|
21
22
|
desc "reset", "reset state"
|
22
23
|
def reset
|
@@ -49,7 +50,7 @@ module InstructionsList
|
|
49
50
|
|
50
51
|
desc "list", "list all instructions"
|
51
52
|
def instructions
|
52
|
-
|
53
|
+
invoke :sync
|
53
54
|
if project?
|
54
55
|
list_from "Project", PROJECT_CACHE << '/' do |name|
|
55
56
|
say show_command_for name
|
@@ -88,6 +89,7 @@ module InstructionsList
|
|
88
89
|
desc "do", "do an instruction"
|
89
90
|
option :force
|
90
91
|
def do name
|
92
|
+
invoke :sync
|
91
93
|
if name.nil?
|
92
94
|
say "oops ! you need a name"
|
93
95
|
return
|
@@ -115,6 +117,7 @@ module InstructionsList
|
|
115
117
|
desc "undo", "undo an instruction"
|
116
118
|
option :force
|
117
119
|
def undo name
|
120
|
+
invoke :sync
|
118
121
|
if name.nil?
|
119
122
|
say "oops ! you need a name"
|
120
123
|
return
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: instructions_list
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.8.
|
4
|
+
version: 1.0.8.3.beta
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Coco Coder (aka Delaney Burke)
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-11-
|
11
|
+
date: 2017-11-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|