Class: Ykutils::Nginxconfigfiles

Inherits:
Object
  • Object
show all
Defined in:
lib/ykutils/nginxconfigfiles.rb

Instance Method Summary collapse

Instance Method Details

#get_file_list(start_dir_pn, reg) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
# File 'lib/ykutils/nginxconfigfiles.rb', line 3

def get_file_list(start_dir_pn, reg)
  @file_list = []

  start_dir_pn.find { |x|
    next unless x.to_s =~ reg

    # puts x
    @file_list << x
  }
  @file_list
end

#output(file_list) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/ykutils/nginxconfigfiles.rb', line 15

def output(file_list)
  file_list.map do |fname|
    parent_dir_pn = Pathname.new(fname).cleanpath.parent
    vdomain = parent_dir_pn.basename
    output_fname = "#{vdomain}.conf"
    cli = Nginxconfig.new(fname)
    scope = nil
    File.open(output_fname, "w") do |f|
      x = cli.extract(scope)
      f.write(x)
    end
  end
end