Skip to content

Commit

Permalink
update generator
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdanRada committed Dec 13, 2016
1 parent d27d9aa commit c0906dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/washout_builder/document/generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def argument_types(type)
types = []
unless soap_actions.blank?
soap_actions.each do |_operation, formats|
(formats[format_type.to_sym]).each do |p|
(formats[format_type.to_sym] || []).each do |p|
types << p
end
end
Expand Down
4 changes: 2 additions & 2 deletions lib/washout_builder/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ module VERSION
# the minor version of the gem
MINOR = 7
# the tiny version of the gem
TINY = 0
TINY = 1
# if the version should be a prerelease
PRE = nil

# the full version of the gem composed from major minor tiny and prerelease versions
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down

0 comments on commit c0906dc

Please sign in to comment.