command_builder 0.0.5 → 0.0.6

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.
@@ -36,6 +36,7 @@ module CommandBuilder
36
36
  code_names = CommandCodeNames.new command, version
37
37
 
38
38
  model = {
39
+ command_builder_module_name: @module_name,
39
40
  module_name: code_names.command_module_name,
40
41
  factory_method_name: code_names.command_factory_method_name,
41
42
  command_name: command.command_name
@@ -50,7 +51,7 @@ module CommandBuilder
50
51
  code_names = CommandCodeNames.new command, version
51
52
 
52
53
  model = {
53
- module_name: @module_name,
54
+ command_builder_module_name: @module_name,
54
55
  command_factory_method_signature: code_names.command_factory_method_signature,
55
56
  version_factory_method_signature: code_names.version_factory_method_signature,
56
57
  command_initializer_call: code_names.command_initializer_call,
@@ -3,7 +3,7 @@
3
3
  require 'getversion'
4
4
  require_relative '../internal/underlying_builder'
5
5
 
6
- module <%= model[:module_name] %>
6
+ module <%= model[:command_builder_module_name] %>
7
7
  module <%= model[:module_name] %>
8
8
  COMMAND_NAME = '<%= model[:command_name] %>'
9
9
  def self.version(path=nil)
@@ -4,7 +4,7 @@ require_relative '../internal/command_base'
4
4
  require_relative '../internal/command_builder_config'
5
5
  require_relative '../internal/underlying_builder'
6
6
 
7
- module <%= model[:module_name] %>
7
+ module <%= model[:command_builder_module_name] %>
8
8
  module <%= model[:command_module_name] %>
9
9
  module <%= model[:version_module_name] %>
10
10
  VERSION = '<%= model[:version] %>'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: command_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: