instructions_list 0.1.5.beta → 0.1.6.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 +3 -3
- data/lib/instructions_list/version.rb +1 -1
- data/tags +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c3bdcf94af319c27a4c82deef12eceac3eccca8
|
|
4
|
+
data.tar.gz: ab09d72347e73dce9c1016da205c2c7fb3dda972
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19089832ba0bec958f1ffa1af3120e6f8c8549ac4b892f10ed829ca45cb8cdb7f17e497787e2e1b103e829cb1eb0eca0f729cd1e24fd9c6dc88250429ad43f90
|
|
7
|
+
data.tar.gz: fce229fed58ab331e84d412298fcc59ca8a4a4f927cf55b10122f8d00864ad063aef5cce2d90fc23e596846aefcb52c0f726c0c89897d961970ec31614c03d78
|
data/exe/il
CHANGED
|
@@ -55,16 +55,16 @@ module InstructionsList
|
|
|
55
55
|
|
|
56
56
|
no_tasks do
|
|
57
57
|
def load_from name, path
|
|
58
|
-
puts "search in #{name}"
|
|
58
|
+
#puts "search in #{name}"
|
|
59
59
|
|
|
60
60
|
if Dir["#{path}*.rb"].any?
|
|
61
61
|
Dir["#{path}*.rb"].each {|file|
|
|
62
62
|
pn = Pathname.new(file)
|
|
63
63
|
require file
|
|
64
|
-
puts " #{File.basename(pn)}".gsub(".rb","")
|
|
64
|
+
#puts " #{File.basename(pn)}".gsub(".rb","")
|
|
65
65
|
}
|
|
66
66
|
else
|
|
67
|
-
puts " none"
|
|
67
|
+
#puts " none"
|
|
68
68
|
end
|
|
69
69
|
end
|
|
70
70
|
def execute instruction
|
data/tags
CHANGED
|
@@ -25,4 +25,4 @@ instructed? lib/instructions_list.rb /^ def instructed? &block$/;" f class:In
|
|
|
25
25
|
instruction lib/instructions_list.rb /^ def instruction name,&block$/;" f class:InstructionsList.DSL
|
|
26
26
|
on lib/instructions_list.rb /^ def on os$/;" f class:InstructionsList.DSL
|
|
27
27
|
running lib/instructions_list.rb /^ def self.running? name$/;" F class:InstructionsList.ItIs
|
|
28
|
-
|
|
28
|
+
sss lib/package_manager.rb /^ def self.yum?$/;" F class:InstructionsList.PackageManager
|