duke 0.1.3 → 0.1.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.
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/duke.gemspec +1 -1
- data/lib/duke.rb +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
|
@@ -44,7 +44,7 @@ Options in the campfire hash are used to configure a new repo.
|
|
|
44
44
|
|
|
45
45
|
=== Custom Configuration
|
|
46
46
|
|
|
47
|
-
A
|
|
47
|
+
A duke.yml in the config directory will override the defaults.
|
|
48
48
|
|
|
49
49
|
=== Per-Project Runner
|
|
50
50
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4
|
data/duke.gemspec
CHANGED
data/lib/duke.rb
CHANGED
|
@@ -24,7 +24,7 @@ module Duke
|
|
|
24
24
|
:log_dir => "log",
|
|
25
25
|
:campfire => {}
|
|
26
26
|
}
|
|
27
|
-
config_path = File.join('config.yml')
|
|
27
|
+
config_path = File.join('config', 'duke.yml')
|
|
28
28
|
config_yml = File.exist?(config_path) ? YAML.load_file(config_path) : {}
|
|
29
29
|
config = CONFIG_DEFAULT.merge(config_yml)
|
|
30
30
|
Config = OpenStruct.new(config)
|