Skip to content
New issue

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

Make Array handling in payload values more compact to reflect subsequent equal tags #21

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on Sep 29, 2015

  1. Major change in Array handling in Ebayr::Request.xml

    In order to create "<a>1</a><a><b>1</b><b>2</b></a>", you used
    to to call .xml([{ :a => 1 }, { :a => [{:b => 1 }, { :b => 2 }] }]).
    
    Now you will only need to call .xml(a: [1, { b: [1, 2] } ])
    meismann committed Sep 29, 2015
    Configuration menu
    Copy the full SHA
    b04ce62 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2015

  1. Refactor; privatise/rename methods Request.xml, .serialize_input, .ca…

    …melize and #input_xml
    
    This will break code that relies on Ebayr::Request methods
    made private. You should not rely on these methods anyway,
    since they are, though not private, class internals.
    meismann committed Sep 30, 2015
    Configuration menu
    Copy the full SHA
    423a237 View commit details
    Browse the repository at this point in the history
  2. Remove deprecation warning

    meismann committed Sep 30, 2015
    Configuration menu
    Copy the full SHA
    f0d46f8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    43a9d49 View commit details
    Browse the repository at this point in the history