mdt 0.0.1

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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +32 -0
  3. data/lib/mdt/version.rb +5 -0
  4. data/lib/mdt.rb +2 -0
  5. metadata +97 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2f7379faee11cc0535a86282865c4578702c1ed2936f1d7d10756c8aabe72508
4
+ data.tar.gz: da257a8d3b21e5b937f082b77e438007d520bb50f98d2805e64aa7258340d04f
5
+ SHA512:
6
+ metadata.gz: c31cdfbbb2b9a5b49c1669809ad8ba7fdc1c88219e70832d303ab5e4ff90edf92e1ef1ddb335eaa32d3f0e95f24283aab647fb58a6c86210c68e10ba35c94159
7
+ data.tar.gz: dc0c53bc9093574cbc847984acd6db23fde4d1278194f15b0be6db4faf1565a2d67e26c14242bbf24cf8e11aedfcd92065691b7b916fdbe0d93e487af0fd111b
data/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # MDT - Modular Deployment Tool
2
+
3
+ MDT is a deployment automation tool that is designed to be simple and easily extended by additional modules. It is written in Ruby and takes advantage of Ruby tools, but it can be used to deploy almost anything if there is a module for it.
4
+
5
+ ## This gem
6
+
7
+ The `mdt` gem is a convenience gem that depends on:
8
+
9
+ * [mdt-core](https://github.com/Phitherek/mdt-core "mdt-core") >= 0.0.1
10
+ * [mdt-dummy](https://github.com/Phitherek/mdt-dummy "mdt-dummy") >= 0.0.1
11
+ * [mdt-simple](https://github.com/Phitherek/mdt-simple "mdt-simple") >= 0.0.1
12
+
13
+ ## Requirements
14
+
15
+ * Ruby (tested with 2.5.0, earlier versions down to 2.0 may also work)
16
+ * RubyGems
17
+
18
+ ## Installation
19
+
20
+ `gem install mdt`
21
+
22
+ ## Usage
23
+
24
+ Please refer to the [mdt-core](https://github.com/Phitherek/mdt-core "mdt-core") documentation.
25
+
26
+ ## Contributing
27
+
28
+ Please refer to the [mdt-core](https://github.com/Phitherek/mdt-core "mdt-core") documentation.
29
+
30
+ ## Documentation
31
+
32
+ Generated RDoc documentation can be found [here](https://rubydoc.info/github/Phitherek/mdt "here").
@@ -0,0 +1,5 @@
1
+ # Global MDT module
2
+ module MDT
3
+ # mdt gem version
4
+ VERSION = '0.0.1'
5
+ end
data/lib/mdt.rb ADDED
@@ -0,0 +1,2 @@
1
+ require_relative 'mdt/version'
2
+ require 'mdt-core'
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mdt
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Phitherek_
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-03-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: mdt-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.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.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: mdt-dummy
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: mdt-simple
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.0'
55
+ description: Modular Deployment Tool
56
+ email:
57
+ - phitherek@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files:
61
+ - README.md
62
+ files:
63
+ - README.md
64
+ - lib/mdt.rb
65
+ - lib/mdt/version.rb
66
+ homepage: https://github.com/Phitherek/mdt
67
+ licenses:
68
+ - MIT
69
+ metadata:
70
+ documentation_uri: http://www.rubydoc.info/github/Phitherek/mdt
71
+ source_code_uri: https://github.com/Phitherek/mdt
72
+ post_install_message:
73
+ rdoc_options:
74
+ - "--title"
75
+ - MDT
76
+ - "--main"
77
+ - README.md
78
+ - "--line-numbers"
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubyforge_project:
93
+ rubygems_version: 2.7.6
94
+ signing_key:
95
+ specification_version: 4
96
+ summary: MDT
97
+ test_files: []