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.
Files changed (5) hide show
  1. data/README.rdoc +1 -1
  2. data/VERSION +1 -1
  3. data/duke.gemspec +1 -1
  4. data/lib/duke.rb +1 -1
  5. 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 config.yml in the root of the duke installation directory will override the defaults.
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.3
1
+ 0.1.4
data/duke.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{duke}
8
- s.version = "0.1.3"
8
+ s.version = "0.1.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Justin Marney"]
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)
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 3
9
- version: 0.1.3
8
+ - 4
9
+ version: 0.1.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Justin Marney