fluent_command_builder 0.9.1 → 0.9.2

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.
@@ -0,0 +1,533 @@
1
+ # Generated code. Do not modify.
2
+
3
+ require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
4
+ require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
5
+ require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
6
+
7
+ module FluentCommandBuilder
8
+ module NuGet
9
+ module V21
10
+ VERSION = '2.1'
11
+ @@config = CommandBuilderConfig.new FluentCommandBuilder::NuGet::COMMAND_NAME, VERSION
12
+ @@config.version_detector = FluentCommandBuilder::NuGet.version_detector
13
+ def configure_nuget
14
+ yield @@config
15
+ @@config.validate_path
16
+ @@config.validate_version
17
+ end
18
+ def nuget
19
+ b = UnderlyingBuilder.new @@config
20
+ c = NuGet.new(b)
21
+ yield b if block_given?
22
+ c
23
+ end
24
+ class NuGet < CommandBase
25
+ def initialize(underlying_builder)
26
+ super underlying_builder
27
+ end
28
+ def config
29
+ Config.new @b
30
+ end
31
+ def delete(package_id, package_version)
32
+ Delete.new @b, package_id, package_version
33
+ end
34
+ def help(command=nil)
35
+ Help.new @b, command
36
+ end
37
+ def install(package_id_or_path_to_packages_config)
38
+ Install.new @b, package_id_or_path_to_packages_config
39
+ end
40
+ def list(search_terms=nil)
41
+ List.new @b, search_terms
42
+ end
43
+ def pack(nuspec_or_project)
44
+ Pack.new @b, nuspec_or_project
45
+ end
46
+ def push(package_path)
47
+ Push.new @b, package_path
48
+ end
49
+ def set_api_key(api_key)
50
+ SetApiKey.new @b, api_key
51
+ end
52
+ def sources(action)
53
+ Sources.new @b, action
54
+ end
55
+ def spec(package_id)
56
+ Spec.new @b, package_id
57
+ end
58
+ def update(packages_config_or_solution)
59
+ Update.new @b, packages_config_or_solution
60
+ end
61
+ end
62
+ class Config < CommandBase
63
+ def initialize(underlying_builder)
64
+ super underlying_builder
65
+ @b.append ' config'
66
+ end
67
+ def set(name, value)
68
+ @b.append " -Set #{@b.format name}=#{@b.format value}"
69
+ yield @b if block_given?
70
+ self
71
+ end
72
+ def help
73
+ @b.append ' -Help'
74
+ yield @b if block_given?
75
+ self
76
+ end
77
+ def verbosity(verbosity)
78
+ @b.append " -Verbosity #{@b.format verbosity}"
79
+ yield @b if block_given?
80
+ self
81
+ end
82
+ def non_interactive
83
+ @b.append ' -NonInteractive'
84
+ yield @b if block_given?
85
+ self
86
+ end
87
+ end
88
+ class Delete < CommandBase
89
+ def initialize(underlying_builder, package_id, package_version)
90
+ super underlying_builder
91
+ @b.append " delete #{@b.format package_id} #{@b.format package_version}"
92
+ end
93
+ def source(source)
94
+ @b.append " -Source #{@b.format source}"
95
+ yield @b if block_given?
96
+ self
97
+ end
98
+ def no_prompt
99
+ @b.append ' -NoPrompt'
100
+ yield @b if block_given?
101
+ self
102
+ end
103
+ def api_key(api_key)
104
+ @b.append " -ApiKey #{@b.format api_key}"
105
+ yield @b if block_given?
106
+ self
107
+ end
108
+ def help
109
+ @b.append ' -Help'
110
+ yield @b if block_given?
111
+ self
112
+ end
113
+ def verbosity(verbosity)
114
+ @b.append " -Verbosity #{@b.format verbosity}"
115
+ yield @b if block_given?
116
+ self
117
+ end
118
+ def non_interactive
119
+ @b.append ' -NonInteractive'
120
+ yield @b if block_given?
121
+ self
122
+ end
123
+ end
124
+ class Help < CommandBase
125
+ def initialize(underlying_builder, command=nil)
126
+ super underlying_builder
127
+ @b.append ' help'
128
+ @b.append " #{@b.format command}" unless command.nil?
129
+ end
130
+ def all
131
+ @b.append ' -All'
132
+ yield @b if block_given?
133
+ self
134
+ end
135
+ def markdown
136
+ @b.append ' -Markdown'
137
+ yield @b if block_given?
138
+ self
139
+ end
140
+ def help
141
+ @b.append ' -Help'
142
+ yield @b if block_given?
143
+ self
144
+ end
145
+ def verbosity(verbosity)
146
+ @b.append " -Verbosity #{@b.format verbosity}"
147
+ yield @b if block_given?
148
+ self
149
+ end
150
+ def non_interactive
151
+ @b.append ' -NonInteractive'
152
+ yield @b if block_given?
153
+ self
154
+ end
155
+ end
156
+ class Install < CommandBase
157
+ def initialize(underlying_builder, package_id_or_path_to_packages_config)
158
+ super underlying_builder
159
+ @b.append " install #{@b.format package_id_or_path_to_packages_config}"
160
+ end
161
+ def source(source)
162
+ @b.append " -Source #{@b.format source}"
163
+ yield @b if block_given?
164
+ self
165
+ end
166
+ def output_directory(output_directory)
167
+ @b.append " -OutputDirectory #{@b.format output_directory}"
168
+ yield @b if block_given?
169
+ self
170
+ end
171
+ def version(version)
172
+ @b.append " -Version #{@b.format version}"
173
+ yield @b if block_given?
174
+ self
175
+ end
176
+ def exclude_version
177
+ @b.append ' -ExcludeVersion'
178
+ yield @b if block_given?
179
+ self
180
+ end
181
+ def prerelease
182
+ @b.append ' -Prerelease'
183
+ yield @b if block_given?
184
+ self
185
+ end
186
+ def no_cache
187
+ @b.append ' -NoCache'
188
+ yield @b if block_given?
189
+ self
190
+ end
191
+ def require_consent
192
+ @b.append ' -RequireConsent'
193
+ yield @b if block_given?
194
+ self
195
+ end
196
+ def solution_directory(solution_directory)
197
+ @b.append " -SolutionDirectory #{@b.format solution_directory}"
198
+ yield @b if block_given?
199
+ self
200
+ end
201
+ def help
202
+ @b.append ' -Help'
203
+ yield @b if block_given?
204
+ self
205
+ end
206
+ def verbosity(verbosity)
207
+ @b.append " -Verbosity #{@b.format verbosity}"
208
+ yield @b if block_given?
209
+ self
210
+ end
211
+ def non_interactive
212
+ @b.append ' -NonInteractive'
213
+ yield @b if block_given?
214
+ self
215
+ end
216
+ end
217
+ class List < CommandBase
218
+ def initialize(underlying_builder, search_terms=nil)
219
+ super underlying_builder
220
+ @b.append ' list'
221
+ @b.append " #{@b.format search_terms}" unless search_terms.nil?
222
+ end
223
+ def source(source)
224
+ @b.append " -Source #{@b.format source}"
225
+ yield @b if block_given?
226
+ self
227
+ end
228
+ def verbose
229
+ @b.append ' -Verbose'
230
+ yield @b if block_given?
231
+ self
232
+ end
233
+ def all_versions
234
+ @b.append ' -AllVersions'
235
+ yield @b if block_given?
236
+ self
237
+ end
238
+ def prerelease
239
+ @b.append ' -Prerelease'
240
+ yield @b if block_given?
241
+ self
242
+ end
243
+ def help
244
+ @b.append ' -Help'
245
+ yield @b if block_given?
246
+ self
247
+ end
248
+ def verbosity(verbosity)
249
+ @b.append " -Verbosity #{@b.format verbosity}"
250
+ yield @b if block_given?
251
+ self
252
+ end
253
+ def non_interactive
254
+ @b.append ' -NonInteractive'
255
+ yield @b if block_given?
256
+ self
257
+ end
258
+ end
259
+ class Pack < CommandBase
260
+ def initialize(underlying_builder, nuspec_or_project)
261
+ super underlying_builder
262
+ @b.append " pack #{@b.format nuspec_or_project}"
263
+ end
264
+ def output_directory(output_directory)
265
+ @b.append " -OutputDirectory #{@b.format output_directory}"
266
+ yield @b if block_given?
267
+ self
268
+ end
269
+ def base_path(base_path)
270
+ @b.append " -BasePath #{@b.format base_path}"
271
+ yield @b if block_given?
272
+ self
273
+ end
274
+ def verbose
275
+ @b.append ' -Verbose'
276
+ yield @b if block_given?
277
+ self
278
+ end
279
+ def version(version)
280
+ @b.append " -Version #{@b.format version}"
281
+ yield @b if block_given?
282
+ self
283
+ end
284
+ def exclude(pattern)
285
+ @b.append " -Exclude #{@b.format pattern}"
286
+ yield @b if block_given?
287
+ self
288
+ end
289
+ def symbols
290
+ @b.append ' -Symbols'
291
+ yield @b if block_given?
292
+ self
293
+ end
294
+ def tool
295
+ @b.append ' -Tool'
296
+ yield @b if block_given?
297
+ self
298
+ end
299
+ def build
300
+ @b.append ' -Build'
301
+ yield @b if block_given?
302
+ self
303
+ end
304
+ def no_default_excludes
305
+ @b.append ' -NoDefaultExcludes'
306
+ yield @b if block_given?
307
+ self
308
+ end
309
+ def no_package_analysis
310
+ @b.append ' -NoPackageAnalysis'
311
+ yield @b if block_given?
312
+ self
313
+ end
314
+ def exclude_empty_directories
315
+ @b.append ' -ExcludeEmptyDirectories'
316
+ yield @b if block_given?
317
+ self
318
+ end
319
+ def properties(properties)
320
+ @b.append " -Properties #{@b.format properties, ';'}"
321
+ yield @b if block_given?
322
+ self
323
+ end
324
+ def help
325
+ @b.append ' -Help'
326
+ yield @b if block_given?
327
+ self
328
+ end
329
+ def verbosity(verbosity)
330
+ @b.append " -Verbosity #{@b.format verbosity}"
331
+ yield @b if block_given?
332
+ self
333
+ end
334
+ def non_interactive
335
+ @b.append ' -NonInteractive'
336
+ yield @b if block_given?
337
+ self
338
+ end
339
+ end
340
+ class Push < CommandBase
341
+ def initialize(underlying_builder, package_path)
342
+ super underlying_builder
343
+ @b.append " push #{@b.format package_path}"
344
+ end
345
+ def source(source)
346
+ @b.append " -Source #{@b.format source}"
347
+ yield @b if block_given?
348
+ self
349
+ end
350
+ def api_key(api_key)
351
+ @b.append " -ApiKey #{@b.format api_key}"
352
+ yield @b if block_given?
353
+ self
354
+ end
355
+ def timeout(seconds)
356
+ @b.append " -Timeout #{@b.format seconds}"
357
+ yield @b if block_given?
358
+ self
359
+ end
360
+ def help
361
+ @b.append ' -Help'
362
+ yield @b if block_given?
363
+ self
364
+ end
365
+ def verbosity(verbosity)
366
+ @b.append " -Verbosity #{@b.format verbosity}"
367
+ yield @b if block_given?
368
+ self
369
+ end
370
+ def non_interactive
371
+ @b.append ' -NonInteractive'
372
+ yield @b if block_given?
373
+ self
374
+ end
375
+ end
376
+ class SetApiKey < CommandBase
377
+ def initialize(underlying_builder, api_key)
378
+ super underlying_builder
379
+ @b.append " setApiKey #{@b.format api_key}"
380
+ end
381
+ def source(source)
382
+ @b.append " -Source #{@b.format source}"
383
+ yield @b if block_given?
384
+ self
385
+ end
386
+ def help
387
+ @b.append ' -Help'
388
+ yield @b if block_given?
389
+ self
390
+ end
391
+ def verbosity(verbosity)
392
+ @b.append " -Verbosity #{@b.format verbosity}"
393
+ yield @b if block_given?
394
+ self
395
+ end
396
+ def non_interactive
397
+ @b.append ' -NonInteractive'
398
+ yield @b if block_given?
399
+ self
400
+ end
401
+ end
402
+ class Sources < CommandBase
403
+ def initialize(underlying_builder, action)
404
+ super underlying_builder
405
+ @b.append " sources #{@b.format action}"
406
+ end
407
+ def name(name)
408
+ @b.append " -Name #{@b.format name}"
409
+ yield @b if block_given?
410
+ self
411
+ end
412
+ def source(source)
413
+ @b.append " -Source #{@b.format source}"
414
+ yield @b if block_given?
415
+ self
416
+ end
417
+ def user_name(user_name)
418
+ @b.append " -UserName #{@b.format user_name}"
419
+ yield @b if block_given?
420
+ self
421
+ end
422
+ def password(password)
423
+ @b.append " -Password #{@b.format_password password}"
424
+ yield @b if block_given?
425
+ self
426
+ end
427
+ def help
428
+ @b.append ' -Help'
429
+ yield @b if block_given?
430
+ self
431
+ end
432
+ def verbosity(verbosity)
433
+ @b.append " -Verbosity #{@b.format verbosity}"
434
+ yield @b if block_given?
435
+ self
436
+ end
437
+ def non_interactive
438
+ @b.append ' -NonInteractive'
439
+ yield @b if block_given?
440
+ self
441
+ end
442
+ end
443
+ class Spec < CommandBase
444
+ def initialize(underlying_builder, package_id)
445
+ super underlying_builder
446
+ @b.append " spec #{@b.format package_id}"
447
+ end
448
+ def assembly_path(assembly_path)
449
+ @b.append " -AssemblyPath #{@b.format assembly_path}"
450
+ yield @b if block_given?
451
+ self
452
+ end
453
+ def force
454
+ @b.append ' -Force'
455
+ yield @b if block_given?
456
+ self
457
+ end
458
+ def help
459
+ @b.append ' -Help'
460
+ yield @b if block_given?
461
+ self
462
+ end
463
+ def verbosity(verbosity)
464
+ @b.append " -Verbosity #{@b.format verbosity}"
465
+ yield @b if block_given?
466
+ self
467
+ end
468
+ def non_interactive
469
+ @b.append ' -NonInteractive'
470
+ yield @b if block_given?
471
+ self
472
+ end
473
+ end
474
+ class Update < CommandBase
475
+ def initialize(underlying_builder, packages_config_or_solution)
476
+ super underlying_builder
477
+ @b.append " update #{@b.format packages_config_or_solution}"
478
+ end
479
+ def source(source)
480
+ @b.append " -Source #{@b.format source}"
481
+ yield @b if block_given?
482
+ self
483
+ end
484
+ def id(package_id)
485
+ @b.append " -Id #{@b.format package_id}"
486
+ yield @b if block_given?
487
+ self
488
+ end
489
+ def repository_path(repository_path)
490
+ @b.append " -RepositoryPath #{@b.format repository_path}"
491
+ yield @b if block_given?
492
+ self
493
+ end
494
+ def safe
495
+ @b.append ' -Safe'
496
+ yield @b if block_given?
497
+ self
498
+ end
499
+ def self
500
+ @b.append ' -Self'
501
+ yield @b if block_given?
502
+ self
503
+ end
504
+ def verbose
505
+ @b.append ' -Verbose'
506
+ yield @b if block_given?
507
+ self
508
+ end
509
+ def prerelease
510
+ @b.append ' -Prerelease'
511
+ yield @b if block_given?
512
+ self
513
+ end
514
+ def help
515
+ @b.append ' -Help'
516
+ yield @b if block_given?
517
+ self
518
+ end
519
+ def verbosity(verbosity)
520
+ @b.append " -Verbosity #{@b.format verbosity}"
521
+ yield @b if block_given?
522
+ self
523
+ end
524
+ def non_interactive
525
+ @b.append ' -NonInteractive'
526
+ yield @b if block_given?
527
+ self
528
+ end
529
+ end
530
+
531
+ end
532
+ end
533
+ end
@@ -1,5 +1,6 @@
1
1
  require File.expand_path(File.dirname(__FILE__) + '/../version_validator')
2
2
  require File.expand_path(File.dirname(__FILE__) + '/../version_detectors/default_version_detector')
3
+ require File.expand_path(File.dirname(__FILE__) + '/path')
3
4
  require File.expand_path(File.dirname(__FILE__) + '/path_validator')
4
5
 
5
6
  module FluentCommandBuilder
@@ -29,30 +30,13 @@ module FluentCommandBuilder
29
30
  def validate_version
30
31
  return unless @version
31
32
  v = @version_validator || VersionValidator.new(@command_name, @version_detector)
32
- v.validate @version, evaluated_path
33
+ p = Path.new @path
34
+ v.validate @version, p.evaluated_path
33
35
  end
34
36
 
35
37
  def executable
36
- e = @path ? File.join(@path, @command_name) : @command_name
37
- normalise_path e
38
- end
39
-
40
- def evaluated_executable
41
- evaluate_path executable
42
- end
43
-
44
- def evaluated_path
45
- evaluate_path @path if @path
46
- end
47
-
48
- private
49
-
50
- def evaluate_path(path)
51
- `echo #{normalise_path path}`.strip
52
- end
53
-
54
- def normalise_path(path)
55
- @is_windows ? path.gsub('/', '\\') : path.gsub('\\', '/')
38
+ p = Path.new @path.to_s, @command_name
39
+ p.normalised_path
56
40
  end
57
41
 
58
42
  end
@@ -0,0 +1,27 @@
1
+ module FluentCommandBuilder
2
+ class Path
3
+
4
+ attr_accessor :path, :is_windows
5
+
6
+ def initialize(*path)
7
+ path.select! { |p| p unless p == '' }
8
+ @path = File.join path
9
+ @is_windows = !ENV['WINDIR'].nil?
10
+ end
11
+
12
+ def evaluated_path
13
+ return unless @path
14
+ `echo #{normalised_path}`.strip
15
+ end
16
+
17
+ def normalised_path
18
+ return unless @path
19
+ @is_windows ? @path.gsub('/', '\\') : @path.gsub('\\', '/')
20
+ end
21
+
22
+ def to_s
23
+ evaluated_path
24
+ end
25
+
26
+ end
27
+ end
@@ -1,3 +1,4 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/path')
1
2
  require File.expand_path(File.dirname(__FILE__) + '/printer')
2
3
 
3
4
  module FluentCommandBuilder
@@ -17,9 +18,10 @@ module FluentCommandBuilder
17
18
  return if validation_level == :off
18
19
 
19
20
  if @c.path
20
- path = @c.evaluated_path
21
- return if File.exist? path
22
- message = %Q[Path for command "#{@c.command_name}", version "#{@c.version}" does not exist. Path: #{path}]
21
+ p = Path.new @c.path
22
+ evaluated_path = p.evaluated_path
23
+ return if File.exist? evaluated_path
24
+ message = %Q[Path for command "#{@c.command_name}", version "#{@c.version}" does not exist. Path: #{evaluated_path}]
23
25
  else
24
26
  return if @path_finder.find_path @c.command_name
25
27
  message = %Q[Command "#{@c.command_name}" was not found on the PATH.]
@@ -1,4 +1,5 @@
1
1
  require File.expand_path(File.dirname(__FILE__) + '/argument_formatter')
2
+ require File.expand_path(File.dirname(__FILE__) + '/path')
2
3
  require File.expand_path(File.dirname(__FILE__) + '/../execution_context')
3
4
 
4
5
  module FluentCommandBuilder
@@ -33,7 +34,8 @@ module FluentCommandBuilder
33
34
  end
34
35
 
35
36
  def to_s
36
- "#{quote_if_includes_space @c.evaluated_executable} #{@args}".strip
37
+ p = Path.new @c.executable
38
+ "#{quote_if_includes_space p.evaluated_path} #{@args}".strip
37
39
  end
38
40
 
39
41
  private
@@ -1,3 +1,4 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../internal/path')
1
2
  require File.expand_path(File.dirname(__FILE__) + '/../internal/path_finder')
2
3
  require File.expand_path(File.dirname(__FILE__) + '/../internal/version')
3
4
  require File.expand_path(File.dirname(__FILE__) + '/../command_executors/backticks_executor')
@@ -17,12 +18,12 @@ module FluentCommandBuilder
17
18
  def version(path=nil)
18
19
  path ||= @path_finder.find_path @command_name
19
20
  return unless path && File.exist?(path)
20
- Dir.chdir path do
21
- command = %Q["#{@command_name}" #{@command_arg} 2>&1]
22
- output = @backticks_executor.execute command
23
- v = Version.match(output)
24
- v ? v.version : nil
25
- end
21
+ path = nil if path == '.'
22
+ executable = path ? Path.new(path, @command_name).evaluated_path : @command_name
23
+ command = %Q["#{executable}" #{@command_arg} 2>&1]
24
+ output = @backticks_executor.execute(command).to_s
25
+ v = Version.match(output)
26
+ v ? v.version : nil
26
27
  end
27
28
 
28
29
  end
@@ -1,4 +1,5 @@
1
1
  require File.expand_path(File.dirname(__FILE__) + '/internal/printer')
2
+ require File.expand_path(File.dirname(__FILE__) + '/internal/path')
2
3
 
3
4
  module FluentCommandBuilder
4
5
  class VersionValidator
@@ -17,8 +18,9 @@ module FluentCommandBuilder
17
18
  validate_validation_level
18
19
  return if @validation_level == :off
19
20
 
21
+ p = Path.new path
20
22
  @expected_version_string = expected_version_string
21
- @actual_version_string = @version_detector.version path
23
+ @actual_version_string = @version_detector.version p.evaluated_path
22
24
 
23
25
  unless actual_version
24
26
  @printer.print_warning error_message('unable to determine actual version')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent_command_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-25 00:00:00.000000000 Z
12
+ date: 2012-10-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
16
- requirement: &70183412696920 !ruby/object:Gem::Requirement
16
+ requirement: &70282337803860 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70183412696920
24
+ version_requirements: *70282337803860
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: term-ansicolor
27
- requirement: &70183412696480 !ruby/object:Gem::Requirement
27
+ requirement: &70282337803420 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70183412696480
35
+ version_requirements: *70282337803420
36
36
  description: Fluent Command Builder makes building command lines easy and clean.
37
37
  email: matthew-github@matthewriley.name
38
38
  executables: []
@@ -82,6 +82,7 @@ files:
82
82
  - lib/fluent_command_builder/command_builders/netsh_61.rb
83
83
  - lib/fluent_command_builder/command_builders/nuget.rb
84
84
  - lib/fluent_command_builder/command_builders/nuget_20.rb
85
+ - lib/fluent_command_builder/command_builders/nuget_21.rb
85
86
  - lib/fluent_command_builder/command_builders/nunit.rb
86
87
  - lib/fluent_command_builder/command_builders/nunit_25.rb
87
88
  - lib/fluent_command_builder/command_builders/nunit_26.rb
@@ -112,6 +113,7 @@ files:
112
113
  - lib/fluent_command_builder/internal/argument_formatter.rb
113
114
  - lib/fluent_command_builder/internal/command_base.rb
114
115
  - lib/fluent_command_builder/internal/command_builder_config.rb
116
+ - lib/fluent_command_builder/internal/path.rb
115
117
  - lib/fluent_command_builder/internal/path_finder.rb
116
118
  - lib/fluent_command_builder/internal/path_finders/unix_path_finder.rb
117
119
  - lib/fluent_command_builder/internal/path_finders/windows_path_finder.rb