ec2launcher 1.7.3 → 1.7.4
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.
@@ -4,8 +4,6 @@
|
|
4
4
|
require 'rubygems'
|
5
5
|
require 'log4r'
|
6
6
|
|
7
|
-
include Log4r
|
8
|
-
|
9
7
|
module EC2Launcher
|
10
8
|
module DirectoryProcessing
|
11
9
|
# Attempts to build a list of valid directories.
|
@@ -18,7 +16,7 @@ module EC2Launcher
|
|
18
16
|
# @return [Array<String] list of directories that exist
|
19
17
|
#
|
20
18
|
def process_directory_list(base_directory, target_directories, default_directory, name, fail_on_error = false)
|
21
|
-
log = Logger['ec2launcher']
|
19
|
+
log = Log4r::Logger['ec2launcher']
|
22
20
|
dirs = []
|
23
21
|
if target_directories.nil?
|
24
22
|
dirs << File.join(base_directory, default_directory)
|
data/lib/ec2launcher/version.rb
CHANGED