drydock 0.6.9 → 1.0.0
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 +7 -0
- data/CHANGES.txt +26 -21
- data/LICENSE.txt +2 -2
- data/README.md +92 -0
- data/Rakefile +40 -58
- data/bin/example +92 -96
- data/drydock.gemspec +41 -37
- data/lib/drydock.rb +265 -281
- metadata +52 -48
- data/README.rdoc +0 -92
data/drydock.gemspec
CHANGED
@@ -1,38 +1,42 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'lib/drydock'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'drydock'
|
7
|
+
spec.version = Drydock::VERSION
|
8
|
+
spec.authors = ['Delano Mandelbaum']
|
9
|
+
spec.email = ['delano@solutious.com']
|
10
|
+
|
11
|
+
spec.summary = 'Build seaworthy command-line apps like a Captain with a powerful Ruby DSL.'
|
12
|
+
spec.description = 'Drydock provides a powerful DSL for building command-line applications with ease.'
|
13
|
+
spec.homepage = 'https://github.com/delano/drydock'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.required_ruby_version = '>= 3.2.0'
|
17
|
+
|
18
|
+
spec.files = %w[
|
19
|
+
CHANGES.txt
|
20
|
+
LICENSE.txt
|
21
|
+
README.md
|
22
|
+
Rakefile
|
23
|
+
bin/example
|
24
|
+
drydock.gemspec
|
25
|
+
lib/drydock.rb
|
26
|
+
lib/drydock/console.rb
|
27
|
+
lib/drydock/mixins.rb
|
28
|
+
lib/drydock/mixins/object.rb
|
29
|
+
lib/drydock/mixins/string.rb
|
30
|
+
lib/drydock/screen.rb
|
31
|
+
]
|
32
|
+
|
33
|
+
spec.bindir = 'bin'
|
34
|
+
spec.executables = ['example']
|
35
|
+
spec.require_paths = ['lib']
|
36
|
+
|
37
|
+
# Runtime dependencies
|
38
|
+
spec.add_runtime_dependency 'ostruct', '~> 0.6'
|
39
|
+
|
40
|
+
spec.extra_rdoc_files = %w[README.md LICENSE.txt CHANGES.txt]
|
41
|
+
spec.rdoc_options = ['--line-numbers', '--title', 'Drydock', '--main', 'README.md']
|
38
42
|
end
|