vagrant-config_builder 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,6 +1,14 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 0.3.1
5
+ -----
6
+
7
+ This is a backwards compatible bugfix release.
8
+
9
+ * Fixed the whole missing variable for ClassRegistry::DuplicateEntry.
10
+ This time, for realsies.
11
+
4
12
  0.3.0
5
13
  -----
6
14
 
@@ -29,8 +29,7 @@ module ConfigBuilder
29
29
  def register(identifier, klass)
30
30
  if @klasses[identifier]
31
31
  raise DuplicateEntry, :registry => @name,
32
- :identifier => identifier.inspect,
33
- :identifiers => @klasses.keys
32
+ :identifier => identifier.inspect
34
33
  else
35
34
  @klasses[identifier] = klass
36
35
  end
@@ -1,3 +1,3 @@
1
1
  module ConfigBuilder
2
- VERSION = '0.3.0'
2
+ VERSION = '0.3.1'
3
3
  end
@@ -7,5 +7,5 @@ en:
7
7
  %{registry}. The relevant plugin may have not loaded the config_builder extension.
8
8
  The identifiers registered with %{registry} are %{identifiers}.
9
9
  duplicate_entry: |-
10
- The class registry %{registry} already has a class registered with identifier %{identifer}
10
+ The class registry %{registry} already has a class registered with identifier %{identifier}
11
11
  and cannot replace the existing entry.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-config_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-08-19 00:00:00.000000000 Z
12
+ date: 2013-08-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec