Skip to content

Commit

Permalink
Proper nested modules names (fixes #103)
Browse files Browse the repository at this point in the history
  • Loading branch information
inossidabile committed Aug 6, 2013
1 parent 188d768 commit f0e4b81
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 2 deletions.
109 changes: 109 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
GIT
remote: git://github.com/savonrb/httpi.git
revision: 6ca1151f691a6ae8599838b404605aac62ad23c9
specs:
httpi (2.1.0)
rack
rubyntlm (~> 0.3.2)

PATH
remote: .
specs:
wash_out (0.8.1)
nori (>= 2.0.0)

GEM
remote: http://rubygems.org/
specs:
akami (1.2.0)
gyoku (>= 0.4.0)
nokogiri (>= 1.4.0)
appraisal (0.5.2)
bundler
rake
builder (3.2.2)
coderay (1.0.9)
colored (1.2)
diff-lcs (1.1.3)
ffi (1.9.0)
formatador (0.2.4)
guard (1.8.2)
formatador (>= 0.2.4)
listen (>= 1.0.0)
lumberjack (>= 1.0.2)
pry (>= 0.9.10)
thor (>= 0.14.6)
guard-rspec (1.2.1)
guard (>= 1.1)
gyoku (1.1.0)
builder (>= 2.1.2)
listen (1.2.2)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
rb-kqueue (>= 0.2)
lumberjack (1.0.4)
method_source (0.8.2)
multi_json (1.7.8)
nokogiri (1.5.10)
nori (2.3.0)
pry (0.9.12.2)
coderay (~> 1.0.5)
method_source (~> 0.8)
slop (~> 3.4)
rack (1.5.2)
rake (10.1.0)
rb-fsevent (0.9.3)
rb-inotify (0.9.0)
ffi (>= 0.5.0)
rb-kqueue (0.2.0)
ffi (>= 0.5.0)
rspec (2.1.0)
rspec-core (~> 2.1.0)
rspec-expectations (~> 2.1.0)
rspec-mocks (~> 2.1.0)
rspec-core (2.1.0)
rspec-expectations (2.1.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.1.0)
rspec-rails (2.1.0)
rspec (~> 2.1.0)
rubyntlm (0.3.3)
savon (2.3.0)
akami (~> 1.2.0)
builder (>= 2.1.2)
gyoku (~> 1.1.0)
httpi (~> 2.1.0)
nokogiri (>= 1.4.0, < 1.6)
nori (~> 2.3.0)
wasabi (~> 3.2.0)
simplecov (0.7.1)
multi_json (~> 1.0)
simplecov-html (~> 0.7.1)
simplecov-html (0.7.1)
simplecov-summary (0.0.4)
colored
simplecov
slop (3.4.6)
thor (0.18.1)
tzinfo (1.0.1)
wasabi (3.2.0)
httpi (~> 2.0)
nokogiri (>= 1.4.0, < 1.6)

PLATFORMS
ruby

DEPENDENCIES
appraisal
guard
guard-rspec
httpi!
pry
rb-fsevent
rspec-rails
savon (>= 2.0.0)
simplecov
simplecov-summary
tzinfo
wasabi
wash_out!
2 changes: 1 addition & 1 deletion lib/wash_out/type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def self.wash_out_param_map
end

def self.wash_out_param_name
@param_type_name ||= name.underscore
@param_type_name ||= name.underscore.gsub '/', '.'

if WashOut::Engine.camelize_wsdl.to_s == 'lower'
@param_type_name = @param_type_name.camelize(:lower)
Expand Down
2 changes: 1 addition & 1 deletion lib/wash_out/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module WashOut
VERSION = "0.8.0"
VERSION = "0.8.1"
end

0 comments on commit f0e4b81

Please sign in to comment.