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

Introducing Cukes #431

Merged
merged 156 commits into from Jan 24, 2014
Merged

Introducing Cukes #431

merged 156 commits into from Jan 24, 2014

Commits on Dec 13, 2013

  1. Nuke everything 💣

    Also, start over again with Cucumber, and import the fixture schemas
    from before.
    steveklabnik committed Dec 13, 2013
    Copy the full SHA
    29c4da7 View commit details
    Browse the repository at this point in the history
  2. "Tokenize a card without a secret" works.

    There's a teeny bit of extra infrastructure to get a token. I built it by
    accident, but we'll need it eventually, so I just left it in.
    steveklabnik committed Dec 13, 2013
    Copy the full SHA
    0249dca View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2013

  1. Set up rake tasks to make running features easier

    Three things here:
    
    1. I'm going to translate features over, and mark them as failing when
    they are failing. I'll also tag them with gh-N to mark GitHub issue #N
    that they go along with.
    2. `bin/rake cruise` has been set up to run for CI. Basically, it runs all
    the things that aren't failing, and makes sure they pass. Then, it runs
    all thet hings that are supposed to be failing, and makes sure they
    fail. If either of those are not true, it fails the build, and if
    they both pass, they pass. This way we know when something starts
    passing again, and to remove the failing tag.
    3. `bin/rake focus` is added when developing new scenarios. You just tag
    the scenario you're working on with `@focus`, and then `bin/rake focus`
    will run just that one scenario.
    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    999670a View commit details
    Browse the repository at this point in the history
  2. New feature: creating API keys.

    There was no existing schemas for the API key response, so I made one.
    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    e48738e View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    e494c51 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    82780ea View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    c3e3f5b View commit details
    Browse the repository at this point in the history
  6. Refactor/reorganize steps for clarity.

    It's important not to refactor steps _too_ much, but these were certainly
    http steps and not card steps.
    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    7a8e23a View commit details
    Browse the repository at this point in the history
  7. Update README.

    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    65a81b8 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    424c741 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    8397390 View commit details
    Browse the repository at this point in the history
  10. adding card tokens schema

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    6f28333 View commit details
    Browse the repository at this point in the history
  11. Refactor schema error handling, reintroduce failure

    We should handle these errors better, and now that we are,
    let's reintroduce the failing second half of the scenario.
    
    I'm actually not entirely sure that flunk-ing with the message
    is any different than just bubbling up the error, but at least
    it's a real assertion failure error, rather than a JSON API
    parsing error.
    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    f4328d5 View commit details
    Browse the repository at this point in the history
  12. basic create customer scenario

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    224b089 View commit details
    Browse the repository at this point in the history
  13. Copy the full SHA
    43349be View commit details
    Browse the repository at this point in the history
  14. New feature: Customer index

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    c318fb3 View commit details
    Browse the repository at this point in the history
  15. clean up some whitespace

    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    26bbee3 View commit details
    Browse the repository at this point in the history
  16. Copy the full SHA
    f385d4f View commit details
    Browse the repository at this point in the history
  17. 'fix' failing address spec.

    This was failing, but for the wrong reasons. Let's fail for the right ones.
    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    aeb357e View commit details
    Browse the repository at this point in the history
  18. Clean up some small formatting issues.

    I missed these in my earlier cleanups.
    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    c66f665 View commit details
    Browse the repository at this point in the history
  19. Copy the full SHA
    4d05364 View commit details
    Browse the repository at this point in the history
  20. Copy the full SHA
    146c870 View commit details
    Browse the repository at this point in the history
  21. Copy the full SHA
    6b9aae4 View commit details
    Browse the repository at this point in the history
  22. refactor to use the client

    Thanks @matthewfl
    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    767de1e View commit details
    Browse the repository at this point in the history
  23. Copy the full SHA
    c88e3e7 View commit details
    Browse the repository at this point in the history
  24. New feature: get a card

    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    9a4cb93 View commit details
    Browse the repository at this point in the history
  25. Copy the full SHA
    9a6603e View commit details
    Browse the repository at this point in the history
  26. client library refactor.

    I took @matthewfl's work on the client library and fixed it up a bit.
    There were some idiom issues, some conventions that we're followed,
    and a couple of OOP things that _really_ bugged me.
    
    I'm happy with this now, other than two things: we are doing OO terribly
    with this whole response thing, and we should also implement DELETE.
    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    35776fa View commit details
    Browse the repository at this point in the history
  27. adding hydrater

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    1e61843 View commit details
    Browse the repository at this point in the history
  28. start changing over to hydrater

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    bbb2eff View commit details
    Browse the repository at this point in the history
  29. feature: debiting a card

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    7caf6fd View commit details
    Browse the repository at this point in the history
  30. Copy the full SHA
    e7eaf45 View commit details
    Browse the repository at this point in the history
  31. Copy the full SHA
    26878a3 View commit details
    Browse the repository at this point in the history
  32. New feature: update card

    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    647f631 View commit details
    Browse the repository at this point in the history
  33. Fix broken callback scenario.

    Thanks for setting me straight, @mjallday
    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    ea7a736 View commit details
    Browse the repository at this point in the history
  34. feature: debit a customer

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    7c2c8e6 View commit details
    Browse the repository at this point in the history
  35. Copy the full SHA
    72b5546 View commit details
    Browse the repository at this point in the history
  36. spacing is hard

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    492b2f8 View commit details
    Browse the repository at this point in the history
  37. Copy the full SHA
    b6cfe2b View commit details
    Browse the repository at this point in the history
  38. credit bank account feature

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    ca0e231 View commit details
    Browse the repository at this point in the history
  39. basic crud for bank accounts

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    125f31b View commit details
    Browse the repository at this point in the history
  40. Copy the full SHA
    45654ef View commit details
    Browse the repository at this point in the history
  41. Move features into rest

    We'll keep these CRUD ones here, and do more intersting cases in the main folder.
    steveklabnik committed Dec 18, 2013
    Copy the full SHA
    24c22bb View commit details
    Browse the repository at this point in the history
  42. bank account verification feature

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    aaa5fc4 View commit details
    Browse the repository at this point in the history
  43. Copy the full SHA
    fe968e5 View commit details
    Browse the repository at this point in the history
  44. refund features

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    e52e3f9 View commit details
    Browse the repository at this point in the history
  45. customer add card/bank account

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    6ecfbee View commit details
    Browse the repository at this point in the history
  46. credits features

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    b7e3b68 View commit details
    Browse the repository at this point in the history
  47. reversal features

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    07fe36d View commit details
    Browse the repository at this point in the history
  48. events schemas

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    8db133e View commit details
    Browse the repository at this point in the history
  49. events features

    matthewfl authored and steveklabnik committed Dec 18, 2013
    Copy the full SHA
    12689e8 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2013

  1. Add an alias for requests using different language

    The phrase "I POST to /foo" and "Make a GET request to /foo" both
    sound 'correct.' So let's support both, depending on whichever
    sounds better.
    steveklabnik committed Dec 19, 2013
    Copy the full SHA
    f06b356 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    bce3379 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    f21ca0d View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2013

  1. minor spelling updates

    dclausen committed Dec 20, 2013
    Copy the full SHA
    cf4036b View commit details
    Browse the repository at this point in the history
  2. Better error messages on status code failure.

    Basically, "Got a 409, expected a 201" isn't actually very helpful.
    We can grab the error description out of the body and print it out,
    and it's way more helpful.
    steveklabnik committed Dec 20, 2013
    Copy the full SHA
    d5c1a3e View commit details
    Browse the repository at this point in the history
  3. New feature: create a reversal.

    This is probably the worst commit I've made in a while. I'm basically
    not happy with any real part of it. But it works.
    
    We use the url_template gem to handle url templating, but it isn't
    expanding variable names correctly, so I'm doing that myself. With
    gsub. Hopefully I can clean that up.
    
    Furthermore, we need to sort of store an 'environment' of mappings
    of ivars to the template names. Global-ish mutable state makes me
    very uneasy...
    
    @matthewfl, I want your opinion on how to not make this suck.
    steveklabnik committed Dec 20, 2013
    Copy the full SHA
    8e820bf View commit details
    Browse the repository at this point in the history
  4. New feature: failed reversal.

    Issue #455 is tracking the failure.
    steveklabnik committed Dec 20, 2013
    Copy the full SHA
    967a193 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2013

  1. New feature: failed reversal on bank account.

    Issue #456 is tracking the failure.
    steveklabnik committed Dec 21, 2013
    Copy the full SHA
    b89b6e3 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    ed9340d View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    b2a5c7c View commit details
    Browse the repository at this point in the history
  4. make a distinction between having a card and a customer card.

    We were doing it the wrong way before.
    steveklabnik committed Dec 21, 2013
    Copy the full SHA
    8325137 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    1627bab View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    602214e View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2013

  1. Copy the full SHA
    ef2eecb View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    71d9ae0 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2013

  1. Add HTTP PATCH to tiny client.

    We need this for increasingly more scenarios
    steveklabnik committed Dec 27, 2013
    Copy the full SHA
    2a70aac View commit details
    Browse the repository at this point in the history
  2. Log secret and marketplace ID

    This is needed for debugging when things go sideways.
    steveklabnik committed Dec 27, 2013
    Copy the full SHA
    3d1c8bf View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    27ed2d1 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2013

  1. New feature: refunds go to original funding source.

    I made the last scenario mis-understanding the way that the YAML scenarios worked.
    
    Often, they have duplicate stuff with new names just to make sure that things work.
    That means I don't need to translate them 1-1, I have to figure out which
    thing is actually important and just do that.
    steveklabnik committed Dec 28, 2013
    4
    Copy the full SHA
    a9d699e View commit details
    Browse the repository at this point in the history
  2. New feature: create a failing refund

    This is currently not working. #459 is tracking it.
    steveklabnik committed Dec 28, 2013
    Copy the full SHA
    44512a5 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    e866535 View commit details
    Browse the repository at this point in the history
  4. New feature: debits to unverified bank accounts fail.

    Note that this is different than the old spec, which was incorrect.
    steveklabnik committed Dec 28, 2013
    Copy the full SHA
    40f037d View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    b6bd5a7 View commit details
    Browse the repository at this point in the history
  6. New feature: fail to debit a customer

    I don't know why this is failing. #460 is tracking it.
    steveklabnik committed Dec 28, 2013
    Copy the full SHA
    49ece83 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2013

  1. Merge pull request #454 from dclausen/patch-1

    minor spelling updates
    matin committed Dec 31, 2013
    Copy the full SHA
    0d11bf3 View commit details
    Browse the repository at this point in the history
  2. New feature: default funding source.

    This is failing due to the content-type issue
    steveklabnik committed Dec 31, 2013
    Copy the full SHA
    c7068e6 View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2014

  1. Copy the full SHA
    859d9e7 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2014

  1. Convert more scenarios

    rserna2010 authored and steveklabnik committed Jan 4, 2014
    Copy the full SHA
    bf531fc View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2014

  1. Copy the full SHA
    3830fea View commit details
    Browse the repository at this point in the history
  2. number of minor fixes

    matthewfl committed Jan 6, 2014
    1
    Copy the full SHA
    f528307 View commit details
    Browse the repository at this point in the history
  3. Some movement toward #467

    steveklabnik committed Jan 6, 2014
    Copy the full SHA
    7736c9e View commit details
    Browse the repository at this point in the history
  4. Passing: reverse a credit on a bank account.

    I had the wrong fixture data, so it was creating a failed credit, rather than a succeeded one.
    steveklabnik committed Jan 6, 2014
    Copy the full SHA
    d0d02c1 View commit details
    Browse the repository at this point in the history
  5. remove 'set the default funding source

    In 1.1, only instruments can be credited, so a default funding source doesn't make sense.
    
    See #460
    steveklabnik committed Jan 6, 2014
    Copy the full SHA
    59337e0 View commit details
    Browse the repository at this point in the history
  6. Some movement on underwriting a customer

    See #468 for more.
    steveklabnik committed Jan 6, 2014
    Copy the full SHA
    e11eda8 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2014

  1. Moving forward on 'create an order'

    There's still a failure, unsure which part is right or wrong.
    steveklabnik committed Jan 7, 2014
    Copy the full SHA
    0536af7 View commit details
    Browse the repository at this point in the history
  2. progress on checking escrow on orders.

    Same delivery address issue
    steveklabnik committed Jan 7, 2014
    Copy the full SHA
    a68ddd8 View commit details
    Browse the repository at this point in the history
  3. Add in debugging steps.

    Previously, @matthewfl had added some logging stuff, this is a bit
    heavier, but often useful.
    steveklabnik committed Jan 7, 2014
    Copy the full SHA
    f7a6c77 View commit details
    Browse the repository at this point in the history
  4. Making some progress on 'checking escrow of order'

    Erroring for the same reason the other Orders are.
    steveklabnik committed Jan 7, 2014
    Copy the full SHA
    fba6285 View commit details
    Browse the repository at this point in the history
  5. Making progress on 'orders can't be credited more...

    ... than escrow balance.
    steveklabnik committed Jan 7, 2014
    Copy the full SHA
    5ee8012 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    5d33e55 View commit details
    Browse the repository at this point in the history
  7. Update interpolation syntax

    I missed this one because the scenario fails before it hit this part.
    But it's pretty obvious it needs fixed.
    steveklabnik committed Jan 7, 2014
    Copy the full SHA
    3e1b0b8 View commit details
    Browse the repository at this point in the history
  8. Typo fix: should be an order not an error

    The scenario failed before this, but I want to catch it now. Bady
    copy/paste on my part
    steveklabnik committed Jan 7, 2014
    Copy the full SHA
    870fcdb View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    51c6a76 View commit details
    Browse the repository at this point in the history
  10. fix interpolation syntax

    let's just do this all at once
    steveklabnik committed Jan 7, 2014
    Copy the full SHA
    37043f4 View commit details
    Browse the repository at this point in the history
  11. baby steps

    matthewfl committed Jan 7, 2014
    Copy the full SHA
    4ce588a View commit details
    Browse the repository at this point in the history
  12. New feature: underwrite a customer

    Closes #468
    steveklabnik committed Jan 7, 2014
    Copy the full SHA
    6083a08 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2014

  1. Merge remote-tracking branch 'origin/cukes' into cukes

    Conflicts:
    	features/customers.feature
    matthewfl committed Jan 8, 2014
    Copy the full SHA
    6c29870 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    585f67f View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2014

  1. Copy the full SHA
    48ec874 View commit details
    Browse the repository at this point in the history
  2. make some progress on crediting an unverified merchant.

    #474 is tracking this particular failure.
    steveklabnik committed Jan 11, 2014
    Copy the full SHA
    48b6239 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2014

  1. Copy the full SHA
    413775d View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    0afcceb View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2014

  1. some cleaning

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    37eb86b View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    89da538 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    a4a51d7 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    e7f8430 View commit details
    Browse the repository at this point in the history
  5. Add credit card scenarios.

    rserna2010 authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    3cb8958 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    8a3ffbf View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    0fb808b View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    0c1d810 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    7de997d View commit details
    Browse the repository at this point in the history
  10. Making progress on 'AVS postal code is unused.

    #438 will fix this.
    steveklabnik committed Jan 23, 2014
    Copy the full SHA
    b96c9d9 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    5381186 View commit details
    Browse the repository at this point in the history
  12. Copy the full SHA
    87aafe9 View commit details
    Browse the repository at this point in the history
  13. Making progress on 'avs street match is null'

    #438 will fix that.
    steveklabnik committed Jan 23, 2014
    Copy the full SHA
    ec98ab4 View commit details
    Browse the repository at this point in the history
  14. Copy the full SHA
    84903e0 View commit details
    Browse the repository at this point in the history
  15. Copy the full SHA
    9a972aa View commit details
    Browse the repository at this point in the history
  16. Copy the full SHA
    f850887 View commit details
    Browse the repository at this point in the history
  17. Copy the full SHA
    ae18309 View commit details
    Browse the repository at this point in the history
  18. Make some progress on retrieving card info

    #480 is tracking this.
    steveklabnik committed Jan 23, 2014
    Copy the full SHA
    761af4e View commit details
    Browse the repository at this point in the history
  19. Progress on 'tokenizing a card'

    #438 is the problem.
    steveklabnik committed Jan 23, 2014
    Copy the full SHA
    80b8eb3 View commit details
    Browse the repository at this point in the history
  20. Copy the full SHA
    e51d3a9 View commit details
    Browse the repository at this point in the history
  21. Copy the full SHA
    b47d8d0 View commit details
    Browse the repository at this point in the history
  22. New feature: CVV matches

    steveklabnik committed Jan 23, 2014
    Copy the full SHA
    7924eb0 View commit details
    Browse the repository at this point in the history
  23. progress on 'CVV doesn't match'

    #438 fixes this.
    steveklabnik committed Jan 23, 2014
    Copy the full SHA
    4c454ed View commit details
    Browse the repository at this point in the history
  24. Progress on 'CVV is unsupported'

    #438 strikes again
    steveklabnik committed Jan 23, 2014
    Copy the full SHA
    91847c7 View commit details
    Browse the repository at this point in the history
  25. Making progress on CVV is unused

    #438 again
    steveklabnik committed Jan 23, 2014
    Copy the full SHA
    0af3c98 View commit details
    Browse the repository at this point in the history
  26. Copy the full SHA
    2c2a4b0 View commit details
    Browse the repository at this point in the history
  27. Copy the full SHA
    9a9e032 View commit details
    Browse the repository at this point in the history
  28. Copy the full SHA
    2e7a0e6 View commit details
    Browse the repository at this point in the history
  29. Copy the full SHA
    84d3b4b View commit details
    Browse the repository at this point in the history
  30. Copy the full SHA
    e0ff12a View commit details
    Browse the repository at this point in the history
  31. Copy the full SHA
    2044e73 View commit details
    Browse the repository at this point in the history
  32. Copy the full SHA
    9513dd2 View commit details
    Browse the repository at this point in the history
  33. Copy the full SHA
    9ba89de View commit details
    Browse the repository at this point in the history
  34. cleaning orders features

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    5f9f1c7 View commit details
    Browse the repository at this point in the history
  35. trying new link resolve system

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    1392564 View commit details
    Browse the repository at this point in the history
  36. fix

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    e4bc413 View commit details
    Browse the repository at this point in the history
  37. another one working

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    2eec38b View commit details
    Browse the repository at this point in the history
  38. fixing bank account rest scenarios

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    2770646 View commit details
    Browse the repository at this point in the history
  39. fixed 404 error

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    7d774b5 View commit details
    Browse the repository at this point in the history
  40. canceling an order

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    f802d28 View commit details
    Browse the repository at this point in the history
  41. the end is nearing

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    4b13e43 View commit details
    Browse the repository at this point in the history
  42. one more to go

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    5a1a65f View commit details
    Browse the repository at this point in the history
  43. Copy the full SHA
    bf659a8 View commit details
    Browse the repository at this point in the history
  44. Copy the full SHA
    df27867 View commit details
    Browse the repository at this point in the history
  45. properly tag luhn test failure.

    Should be linked to #481
    steveklabnik committed Jan 23, 2014
    Copy the full SHA
    79fd4df View commit details
    Browse the repository at this point in the history
  46. Copy the full SHA
    8027255 View commit details
    Browse the repository at this point in the history
  47. Copy the full SHA
    a6fa221 View commit details
    Browse the repository at this point in the history
  48. cvv card number scenarios working

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    79702b8 View commit details
    Browse the repository at this point in the history
  49. it is all working now

    matthewfl authored and steveklabnik committed Jan 23, 2014
    Copy the full SHA
    f08a98d View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2014

  1. Copy the full SHA
    ce58fea View commit details
    Browse the repository at this point in the history
  2. Fix up specs related to reversals.

    Accidentally had two successes, now we have one and a fail.
    steveklabnik committed Jan 24, 2014
    Copy the full SHA
    3a87dc0 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    82540eb View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    2b9b019 View commit details
    Browse the repository at this point in the history