Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

changed project/buildWrappers/ruby-proxy-object to */buildWrappers/ruby-... #17

Merged
merged 1 commit into from Aug 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -27,3 +27,7 @@ After updating RVM plugin, you *need to update* your project's configuration fil
```

The update script renames original configuration file to `<original file name>.bak` in case update fails.


Contributors:
[Daniel Foglio](https://github.com/danielfoglio)
2 changes: 1 addition & 1 deletion bin/convert.rb
Expand Up @@ -30,7 +30,7 @@ def convert(config_file)
new_config = nil
File.open(config_file, 'r') do |file|
doc = REXML::Document.new(file)
doc.elements.each('project/buildWrappers/ruby-proxy-object') do |proxy_object|
doc.elements.each('*/buildWrappers/ruby-proxy-object') do |proxy_object|
rewrite_proxy_class_name(proxy_object)
remove_unwanted_serialized_attributes(proxy_object)
end
Expand Down