empezar 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -15,3 +15,5 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
+ log/*
19
+ config/*
@@ -9,7 +9,7 @@ module Empezar
9
9
  unless File.exist? argument
10
10
  raise ConfigurationFileMissingException, "The configuration file is missing from '#{argument}'"
11
11
  end
12
- Empezar::Configuration.instance.merge SymbolMatrix.new argument
12
+ Empezar::Configuration.instance.merge! SymbolMatrix.new argument
13
13
  end
14
14
 
15
15
  def self.start_logger
@@ -1,3 +1,3 @@
1
1
  module Empezar
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -55,7 +55,7 @@ describe Empezar::Runner do
55
55
  File.stub :exist? => true
56
56
  config_stub = stub 'config'
57
57
  SymbolMatrix.should_receive(:new).with('config/main.yaml').and_return config_stub
58
- Empezar::Configuration.instance.should_receive(:merge).with(config_stub)
58
+ Empezar::Configuration.instance.should_receive(:merge!).with(config_stub)
59
59
 
60
60
  Empezar::Runner.start_configuration 'config/main.yaml'
61
61
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: empezar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: