We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The to_soap_value method seems to assume the DateTime object is in UTC.
irb(main):016:0> a = DateTime.now irb(main):017:0> puts a 2010-03-25T14:03:23-05:00 irb(main):018:0> puts a.to_soap_value 2010-03-25T14:03:23Z
The text was updated successfully, but these errors were encountered:
thanks for reporting this issue. published v0.7.9 to solve this problem.
Sorry, something went wrong.
fix for issue savonrb#53
a322461
DateTime.to_soap_value now returns the correct timezone instead of just defaulting to UTC.
No branches or pull requests
The to_soap_value method seems to assume the DateTime object is in UTC.
irb(main):016:0> a = DateTime.now
irb(main):017:0> puts a
2010-03-25T14:03:23-05:00
irb(main):018:0> puts a.to_soap_value
2010-03-25T14:03:23Z
The text was updated successfully, but these errors were encountered: