instructions_list 0.1.2.beta → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 151b8455e61cbe69566f0cdacfb54f0deb4055a0
4
- data.tar.gz: 348e8cf4f6bfa97f7ca965bb853007473b5a5e15
3
+ metadata.gz: 6a1cdc864a1501d7cf3027d034aab9d32d113d7d
4
+ data.tar.gz: 3c88a79d6147ecc6a9bf69c686dd2f6016be8edc
5
5
  SHA512:
6
- metadata.gz: 459dd9de3084ff6383ee109e05f0e906f7d20a3b9507e39d00a9ebd8390475e0878b4199d179fef0f55265dd32c308bc07edcfe9dc671d05f13882b537cd6558
7
- data.tar.gz: 9eb93b6c9e7e9527a76625b50c48b5daa977d9755f5654b42e440a2e9a96bdecca54c7c8c582977b6f6d0369d203b21e27736d707c1436ab6f86a3265683d6e2
6
+ metadata.gz: 63248a11eb800ab0e1120fb89ce63fe51cd33f09a4e1f3f720461c83a03d0b2d4aeac8c50f0ad2a1211e49c13e3dec802d0963308c4053a9f2e67b74f80380d6
7
+ data.tar.gz: ee56fcb10284df6f511ecb5698f07b2ca1d57fcba20d3eb450ae60eed7360110eb7821e9f7cb0b538c4649d7011bfd0e4cbb92fb3b31f1edb8517e813c6798a6
@@ -1,3 +1,3 @@
1
1
  module InstructionsList
2
- VERSION = "0.1.2.beta"
2
+ VERSION = "0.1.3.beta"
3
3
  end
@@ -60,8 +60,8 @@ module InstructionsList
60
60
  end
61
61
 
62
62
  def done(name)
63
- `mkdir -p "il/"`
64
- `echo #{name} >> il/state`
63
+ `mkdir -p "./.instructions/"`
64
+ `echo #{name} >> ./.instructions/state`
65
65
  check name
66
66
  end
67
67
 
data/tags CHANGED
@@ -4,5 +4,25 @@
4
4
  !_TAG_PROGRAM_NAME Exuberant Ctags //
5
5
  !_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
6
6
  !_TAG_PROGRAM_VERSION 5.8 //
7
+ DSL lib/instructions_list.rb /^ module DSL$/;" m class:InstructionsList
8
+ Instruction lib/instructions_list.rb /^ class Instruction$/;" c class:InstructionsList
7
9
  InstructionsList lib/instructions_list.rb /^module InstructionsList$/;" m
8
10
  InstructionsList lib/instructions_list/version.rb /^module InstructionsList$/;" m
11
+ InstructionsList lib/package_manager.rb /^module InstructionsList do$/;" m
12
+ ItIs lib/instructions_list.rb /^ class ItIs$/;" c class:InstructionsList
13
+ PackageManager lib/package_manager.rb /^ class PackageManager$/;" c class:InstructionsList
14
+ aptget lib/package_manager.rb /^ def self.aptget?$/;" F class:InstructionsList.PackageManager
15
+ brew lib/package_manager.rb /^ def self.brew?$/;" F class:InstructionsList.PackageManager
16
+ check lib/instructions_list.rb /^ def check name$/;" f class:InstructionsList.DSL
17
+ depends_on lib/instructions_list.rb /^ def depends_on name$/;" f class:InstructionsList.DSL
18
+ done lib/instructions_list.rb /^ def done(name)$/;" f class:InstructionsList.DSL
19
+ done lib/instructions_list.rb /^ def self.done? name$/;" F class:InstructionsList.ItIs
20
+ exists lib/instructions_list.rb /^ def self.exists? context,path$/;" F class:InstructionsList.ItIs
21
+ initialize lib/instructions_list.rb /^ def initialize$/;" f class:InstructionsList.Instruction
22
+ installed lib/instructions_list.rb /^ def self.installed? exe_path$/;" F class:InstructionsList.ItIs
23
+ instruct lib/instructions_list.rb /^ def instruct &block$/;" f class:InstructionsList.DSL
24
+ instructed? lib/instructions_list.rb /^ def instructed? &block$/;" f class:InstructionsList.DSL
25
+ instruction lib/instructions_list.rb /^ def instruction name,&block$/;" f class:InstructionsList.DSL
26
+ on lib/instructions_list.rb /^ def on os$/;" f class:InstructionsList.DSL
27
+ running lib/instructions_list.rb /^ def self.running? name$/;" F class:InstructionsList.ItIs
28
+ yum lib/package_manager.rb /^ def self.yum?$/;" F class:InstructionsList.PackageManager
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: instructions_list
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2.beta
4
+ version: 0.1.3.beta
5
5
  platform: ruby
6
6
  authors:
7
7
  - Coco Coder (aka Delaney Burke)