foreman 0.85.0 → 0.86.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/foreman/cli.rb +3 -3
  4. data/lib/foreman/vendor/thor/lib/thor.rb +492 -0
  5. data/lib/foreman/vendor/thor/lib/thor/actions.rb +318 -0
  6. data/lib/foreman/vendor/thor/lib/thor/actions/create_file.rb +103 -0
  7. data/lib/foreman/vendor/thor/lib/thor/actions/create_link.rb +59 -0
  8. data/lib/foreman/vendor/thor/lib/thor/actions/directory.rb +118 -0
  9. data/lib/foreman/vendor/thor/lib/thor/actions/empty_directory.rb +135 -0
  10. data/lib/foreman/vendor/thor/lib/thor/actions/file_manipulation.rb +327 -0
  11. data/lib/foreman/vendor/thor/lib/thor/actions/inject_into_file.rb +103 -0
  12. data/lib/foreman/vendor/thor/lib/thor/base.rb +656 -0
  13. data/lib/foreman/vendor/thor/lib/thor/command.rb +133 -0
  14. data/lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +85 -0
  15. data/lib/foreman/vendor/thor/lib/thor/core_ext/io_binary_read.rb +12 -0
  16. data/lib/foreman/vendor/thor/lib/thor/core_ext/ordered_hash.rb +129 -0
  17. data/lib/foreman/vendor/thor/lib/thor/error.rb +32 -0
  18. data/lib/foreman/vendor/thor/lib/thor/group.rb +281 -0
  19. data/lib/foreman/vendor/thor/lib/thor/invocation.rb +177 -0
  20. data/lib/foreman/vendor/thor/lib/thor/line_editor.rb +17 -0
  21. data/lib/foreman/vendor/thor/lib/thor/line_editor/basic.rb +35 -0
  22. data/lib/foreman/vendor/thor/lib/thor/line_editor/readline.rb +88 -0
  23. data/lib/foreman/vendor/thor/lib/thor/parser.rb +4 -0
  24. data/lib/foreman/vendor/thor/lib/thor/parser/argument.rb +70 -0
  25. data/lib/foreman/vendor/thor/lib/thor/parser/arguments.rb +175 -0
  26. data/lib/foreman/vendor/thor/lib/thor/parser/option.rb +146 -0
  27. data/lib/foreman/vendor/thor/lib/thor/parser/options.rb +220 -0
  28. data/lib/foreman/vendor/thor/lib/thor/rake_compat.rb +71 -0
  29. data/lib/foreman/vendor/thor/lib/thor/runner.rb +322 -0
  30. data/lib/foreman/vendor/thor/lib/thor/shell.rb +81 -0
  31. data/lib/foreman/vendor/thor/lib/thor/shell/basic.rb +436 -0
  32. data/lib/foreman/vendor/thor/lib/thor/shell/color.rb +149 -0
  33. data/lib/foreman/vendor/thor/lib/thor/shell/html.rb +126 -0
  34. data/lib/foreman/vendor/thor/lib/thor/util.rb +268 -0
  35. data/lib/foreman/vendor/thor/lib/thor/version.rb +3 -0
  36. data/lib/foreman/version.rb +1 -1
  37. data/man/foreman.1 +1 -1
  38. metadata +36 -19
@@ -0,0 +1,3 @@
1
+ class Foreman::Thor
2
+ VERSION = "0.19.4"
3
+ end
@@ -1,5 +1,5 @@
1
1
  module Foreman
2
2
 
3
- VERSION = "0.85.0"
3
+ VERSION = "0.86.0"
4
4
 
5
5
  end
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "FOREMAN" "1" "March 2017" "Foreman 0.85.0" "Foreman Manual"
4
+ .TH "FOREMAN" "1" "July 2019" "Foreman 0.86.0" "Foreman Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBforeman\fR \- manage Procfile\-based applications
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.85.0
4
+ version: 0.86.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Dollar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-18 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: thor
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: 0.19.1
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: 0.19.1
11
+ date: 2019-10-09 00:00:00.000000000 Z
12
+ dependencies: []
27
13
  description: Process manager for applications with multiple components
28
14
  email: ddollar@gmail.com
29
15
  executables:
@@ -75,6 +61,38 @@ files:
75
61
  - lib/foreman/helpers.rb
76
62
  - lib/foreman/process.rb
77
63
  - lib/foreman/procfile.rb
64
+ - lib/foreman/vendor/thor/lib/thor.rb
65
+ - lib/foreman/vendor/thor/lib/thor/actions.rb
66
+ - lib/foreman/vendor/thor/lib/thor/actions/create_file.rb
67
+ - lib/foreman/vendor/thor/lib/thor/actions/create_link.rb
68
+ - lib/foreman/vendor/thor/lib/thor/actions/directory.rb
69
+ - lib/foreman/vendor/thor/lib/thor/actions/empty_directory.rb
70
+ - lib/foreman/vendor/thor/lib/thor/actions/file_manipulation.rb
71
+ - lib/foreman/vendor/thor/lib/thor/actions/inject_into_file.rb
72
+ - lib/foreman/vendor/thor/lib/thor/base.rb
73
+ - lib/foreman/vendor/thor/lib/thor/command.rb
74
+ - lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
75
+ - lib/foreman/vendor/thor/lib/thor/core_ext/io_binary_read.rb
76
+ - lib/foreman/vendor/thor/lib/thor/core_ext/ordered_hash.rb
77
+ - lib/foreman/vendor/thor/lib/thor/error.rb
78
+ - lib/foreman/vendor/thor/lib/thor/group.rb
79
+ - lib/foreman/vendor/thor/lib/thor/invocation.rb
80
+ - lib/foreman/vendor/thor/lib/thor/line_editor.rb
81
+ - lib/foreman/vendor/thor/lib/thor/line_editor/basic.rb
82
+ - lib/foreman/vendor/thor/lib/thor/line_editor/readline.rb
83
+ - lib/foreman/vendor/thor/lib/thor/parser.rb
84
+ - lib/foreman/vendor/thor/lib/thor/parser/argument.rb
85
+ - lib/foreman/vendor/thor/lib/thor/parser/arguments.rb
86
+ - lib/foreman/vendor/thor/lib/thor/parser/option.rb
87
+ - lib/foreman/vendor/thor/lib/thor/parser/options.rb
88
+ - lib/foreman/vendor/thor/lib/thor/rake_compat.rb
89
+ - lib/foreman/vendor/thor/lib/thor/runner.rb
90
+ - lib/foreman/vendor/thor/lib/thor/shell.rb
91
+ - lib/foreman/vendor/thor/lib/thor/shell/basic.rb
92
+ - lib/foreman/vendor/thor/lib/thor/shell/color.rb
93
+ - lib/foreman/vendor/thor/lib/thor/shell/html.rb
94
+ - lib/foreman/vendor/thor/lib/thor/util.rb
95
+ - lib/foreman/vendor/thor/lib/thor/version.rb
78
96
  - lib/foreman/version.rb
79
97
  - man/foreman.1
80
98
  - spec/foreman/cli_spec.rb
@@ -152,8 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
170
  - !ruby/object:Gem::Version
153
171
  version: '0'
154
172
  requirements: []
155
- rubyforge_project:
156
- rubygems_version: 2.7.3
173
+ rubygems_version: 3.0.3
157
174
  signing_key:
158
175
  specification_version: 4
159
176
  summary: Process manager for applications with multiple components