recurly 0.3.3 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of recurly might be problematic. Click here for more details.

Files changed (99) hide show
  1. data/README.md +15 -11
  2. data/lib/patches/active_resource/connection.rb +10 -0
  3. data/lib/recurly.rb +35 -9
  4. data/lib/recurly/account.rb +22 -1
  5. data/lib/recurly/account_base.rb +35 -0
  6. data/lib/recurly/base.rb +26 -39
  7. data/lib/recurly/billing_info.rb +40 -1
  8. data/lib/recurly/charge.rb +12 -1
  9. data/lib/recurly/coupon.rb +8 -0
  10. data/lib/recurly/credit.rb +12 -1
  11. data/lib/recurly/exceptions.rb +19 -0
  12. data/lib/recurly/invoice.rb +1 -1
  13. data/lib/recurly/plan.rb +13 -1
  14. data/lib/recurly/rails3/recurly.rake +5 -3
  15. data/lib/recurly/subscription.rb +21 -3
  16. data/lib/recurly/transaction.rb +29 -1
  17. data/lib/recurly/transparent.rb +140 -0
  18. data/lib/recurly/version.rb +1 -1
  19. data/spec/config/recurly.yml +12 -0
  20. data/spec/config/test1.yml +3 -1
  21. data/spec/config/test2.yml +4 -2
  22. data/spec/integration/credit_spec.rb +6 -6
  23. data/spec/integration/plan_spec.rb +2 -2
  24. data/spec/support/factory.rb +5 -3
  25. data/spec/unit/account_spec.rb +19 -0
  26. data/spec/unit/billing_info_spec.rb +38 -0
  27. data/spec/unit/charge_spec.rb +18 -0
  28. data/spec/unit/config_spec.rb +10 -6
  29. data/spec/unit/coupon_spec.rb +13 -0
  30. data/spec/unit/credit_spec.rb +18 -0
  31. data/spec/unit/plan_spec.rb +18 -0
  32. data/spec/unit/subscription_spec.rb +25 -0
  33. data/spec/unit/transaction_spec.rb +32 -0
  34. data/spec/unit/transparent_spec.rb +114 -0
  35. data/spec/vcr/account/accept-language-account/{1296674173.yml → 1297746103.yml} +16 -13
  36. data/spec/vcr/account/close/{1296674173.yml → 1297746103.yml} +31 -28
  37. data/spec/vcr/account/create-blank/{1296674173.yml → 1297746103.yml} +9 -5
  38. data/spec/vcr/account/create-duplicate/{1296674173.yml → 1297746103.yml} +22 -15
  39. data/spec/vcr/account/create-min/{1296674173.yml → 1297746103.yml} +16 -13
  40. data/spec/vcr/account/create/{1296674173.yml → 1297746103.yml} +16 -13
  41. data/spec/vcr/account/find/{1296674173.yml → 1297746103.yml} +29 -26
  42. data/spec/vcr/account/list/1297746103.yml +1579 -0
  43. data/spec/vcr/account/update/{1296674173.yml → 1297746103.yml} +54 -47
  44. data/spec/vcr/billing/create/{1296690812.yml → 1298594128.yml} +37 -34
  45. data/spec/vcr/billing/destroy/{1296690812.yml → 1298594128.yml} +46 -43
  46. data/spec/vcr/billing/find/{1296690812.yml → 1298594128.yml} +47 -44
  47. data/spec/vcr/billing/update/{1296690812.yml → 1298594128.yml} +50 -47
  48. data/spec/vcr/charge/create/{1296674173.yml → 1297746103.yml} +48 -45
  49. data/spec/vcr/charge/delete-uninvoiced/{1296674173.yml → 1297746103.yml} +49 -46
  50. data/spec/vcr/charge/list-all/{1296674173.yml → 1297746103.yml} +61 -58
  51. data/spec/vcr/charge/list-invoiced/{1296674173.yml → 1297746103.yml} +92 -89
  52. data/spec/vcr/charge/list-pending/{1296674173.yml → 1297746103.yml} +61 -58
  53. data/spec/vcr/charge/lookup/{1296674173.yml → 1297746103.yml} +34 -31
  54. data/spec/vcr/coupon/create/{1296774903.yml → 1299714521.yml} +35 -32
  55. data/spec/vcr/coupon/destroy/{1296688818.yml → 1299714521.yml} +34 -31
  56. data/spec/vcr/{coupon/create/1296688818.yml → credit/create/1299714599.yml} +53 -53
  57. data/spec/vcr/credit/delete/1299714599.yml +262 -0
  58. data/spec/vcr/credit/list/1299714599.yml +319 -0
  59. data/spec/vcr/credit/lookup/1299714599.yml +183 -0
  60. data/spec/vcr/invoice/create-no-charges/{1296674173.yml → 1297746103.yml} +34 -31
  61. data/spec/vcr/invoice/create/{1296674173.yml → 1297746103.yml} +63 -60
  62. data/spec/vcr/invoice/list/{1296674173.yml → 1297746103.yml} +87 -84
  63. data/spec/vcr/invoice/lookup/{1296674173.yml → 1297746103.yml} +64 -61
  64. data/spec/vcr/plan/all.yml +30 -30
  65. data/spec/vcr/plan/find.yml +25 -25
  66. data/spec/vcr/plan/update.yml +16 -15
  67. data/spec/vcr/subscription/addons/add/{1296674173.yml → 1297746103.yml} +44 -40
  68. data/spec/vcr/subscription/addons/create/{1296674173.yml → 1297746103.yml} +44 -40
  69. data/spec/vcr/subscription/addons/remove/{1296674173.yml → 1297746103.yml} +44 -40
  70. data/spec/vcr/subscription/cancel-with-code/{1296674173.yml → 1297746103.yml} +99 -95
  71. data/spec/vcr/subscription/cancel/{1296674173.yml → 1297746103.yml} +86 -82
  72. data/spec/vcr/subscription/change1/{1296674173.yml → 1297746103.yml} +82 -78
  73. data/spec/vcr/subscription/change2/{1296674173.yml → 1297746103.yml} +82 -78
  74. data/spec/vcr/subscription/create/{1296674173.yml → 1297746103.yml} +49 -45
  75. data/spec/vcr/subscription/find/{1296674173.yml → 1297746103.yml} +60 -56
  76. data/spec/vcr/subscription/reactivate/{1296674173.yml → 1297746103.yml} +93 -89
  77. data/spec/vcr/subscription/refund-full/{1296674173.yml → 1297746103.yml} +77 -73
  78. data/spec/vcr/subscription/refund-none/{1296674173.yml → 1297746103.yml} +77 -73
  79. data/spec/vcr/subscription/refund-partial/{1296674173.yml → 1297746103.yml} +77 -73
  80. data/spec/vcr/transaction/all/{1296674173.yml → 1297746103.yml} +107 -107
  81. data/spec/vcr/transaction/create-no-account/{1296674173.yml → 1297746103.yml} +14 -13
  82. data/spec/vcr/transaction/create-with-account/{1296674173.yml → 1297746103.yml} +46 -58
  83. data/spec/vcr/transaction/list-filled/1297746103.yml +213 -0
  84. data/spec/vcr/transaction/list-initial/{1296674173.yml → 1297746103.yml} +38 -35
  85. data/spec/vcr/transaction/lookup/1297746103.yml +213 -0
  86. data/spec/vcr/transaction/refund/1297746103.yml +213 -0
  87. data/spec/vcr/transaction/void/1297746103.yml +213 -0
  88. metadata +146 -139
  89. data/spec/vcr/account/list/1296674173.yml +0 -55
  90. data/spec/vcr/coupon/destroy/1296774903.yml +0 -207
  91. data/spec/vcr/credit/create/1296674173.yml +0 -121
  92. data/spec/vcr/credit/delete/1296674173.yml +0 -121
  93. data/spec/vcr/credit/list/1296674173.yml +0 -121
  94. data/spec/vcr/credit/lookup/1296674173.yml +0 -121
  95. data/spec/vcr/plan/delete/1296674173.yml +0 -225
  96. data/spec/vcr/transaction/list-filled/1296674173.yml +0 -487
  97. data/spec/vcr/transaction/lookup/1296674173.yml +0 -563
  98. data/spec/vcr/transaction/refund/1296674173.yml +0 -287
  99. data/spec/vcr/transaction/void/1296674173.yml +0 -352
@@ -1,55 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :post
5
- uri: http://isaac%40recurly.com:isaac1024@litle-test.recurly.local:3000/accounts.xml
6
- body: |
7
- <?xml version="1.0" encoding="UTF-8"?>
8
- <account>
9
- <account-code>account-list-num-0-1296674173</account-code>
10
- <first-name>Verena</first-name>
11
- <last-name>Test</last-name>
12
- <email>verena@test.com</email>
13
- <company-name>Recurly Ruby Gem</company-name>
14
- <accept-language type="yaml" nil="true"></accept-language>
15
- </account>
16
-
17
- headers:
18
- authorization:
19
- - Basic aXNhYWNAcmVjdXJseS5jb206aXNhYWMxMDI0
20
- content-type:
21
- - application/xml
22
- accept:
23
- - "*/*"
24
- user-agent:
25
- - Ruby
26
- connection:
27
- - close
28
- response: !ruby/struct:VCR::Response
29
- status: !ruby/struct:VCR::ResponseStatus
30
- code: 422
31
- message: ""
32
- headers:
33
- cache-control:
34
- - no-cache
35
- x-runtime:
36
- - "231"
37
- content-type:
38
- - application/xml; charset=utf-8
39
- content-length:
40
- - "132"
41
- server:
42
- - WEBrick/1.3.1 (Ruby/1.9.2/2010-08-18)
43
- date:
44
- - Thu, 03 Feb 2011 22:16:52 GMT
45
- connection:
46
- - close
47
- set-cookie:
48
- - _recurly_session=059de0eda578e161e399bc15211f0985; domain=.recurly.local; path=/; HttpOnly
49
- body: |
50
- <?xml version="1.0" encoding="UTF-8"?>
51
- <errors>
52
- <error field="account_code">account code has already been taken</error>
53
- </errors>
54
-
55
- http_version: "1.1"
@@ -1,207 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :post
5
- uri: http://isaac%40recurly.com:isaac1024@litle-test.recurly.local:3000/accounts.xml
6
- body: |
7
- <?xml version="1.0" encoding="UTF-8"?>
8
- <account>
9
- <account-code>coupon-destroy-1296774903</account-code>
10
- <first-name>Verena</first-name>
11
- <last-name>Test</last-name>
12
- <email>verena@test.com</email>
13
- <company-name>Recurly Ruby Gem</company-name>
14
- <accept-language type="yaml" nil="true"></accept-language>
15
- </account>
16
-
17
- headers:
18
- authorization:
19
- - Basic aXNhYWNAcmVjdXJseS5jb206aXNhYWMxMDI0
20
- content-type:
21
- - application/xml
22
- accept:
23
- - "*/*"
24
- user-agent:
25
- - Ruby
26
- connection:
27
- - close
28
- response: !ruby/struct:VCR::Response
29
- status: !ruby/struct:VCR::ResponseStatus
30
- code: 201
31
- message: "Created "
32
- headers:
33
- cache-control:
34
- - no-cache
35
- location:
36
- - http://litle-test.recurly.local:3000/accounts/coupon-destroy-1296774903
37
- x-runtime:
38
- - "925"
39
- content-type:
40
- - application/xml; charset=utf-8
41
- content-length:
42
- - "583"
43
- server:
44
- - WEBrick/1.3.1 (Ruby/1.9.2/2010-08-18)
45
- date:
46
- - Thu, 03 Feb 2011 23:15:27 GMT
47
- connection:
48
- - close
49
- set-cookie:
50
- - account_credentials=85662c6a7ee37b0ab16b927abbd2b56041be3db582595db0815a61e5f02cd2b8688be849c2b0fa1029276a78e11f2eebc369fcd5ea569390cfe1e9f625b07758%3A%3A; domain=.recurly.local; path=/
51
- - ""
52
- - _recurly_session=ffce808874a170851e20be6b8e077773; domain=.recurly.local; path=/; HttpOnly
53
- body: |
54
- <?xml version="1.0" encoding="UTF-8"?>
55
- <account>
56
- <id>coupon-destroy-1296774903</id>
57
- <account_code>coupon-destroy-1296774903</account_code>
58
- <username></username>
59
- <email>verena@test.com</email>
60
- <first_name>Verena</first_name>
61
- <last_name>Test</last_name>
62
- <company_name>Recurly Ruby Gem</company_name>
63
- <balance_in_cents type="integer">0</balance_in_cents>
64
- <closed type="boolean">false</closed>
65
- <hosted_login_token>c2dea2ac6bb0466095ca4e574f414ed9</hosted_login_token>
66
- <created_at type="datetime">2011-02-03T23:15:27Z</created_at>
67
- <state>active</state>
68
- </account>
69
-
70
- http_version: "1.1"
71
- - !ruby/struct:VCR::HTTPInteraction
72
- request: !ruby/struct:VCR::Request
73
- method: :post
74
- uri: http://isaac%40recurly.com:isaac1024@litle-test.recurly.local:3000/accounts/coupon-destroy-1296774903/coupon.xml
75
- body: |
76
- <?xml version="1.0" encoding="UTF-8"?>
77
- <coupon>
78
- <coupon-code>coupon</coupon-code>
79
- </coupon>
80
-
81
- headers:
82
- authorization:
83
- - Basic aXNhYWNAcmVjdXJseS5jb206aXNhYWMxMDI0
84
- content-type:
85
- - application/xml
86
- accept:
87
- - "*/*"
88
- user-agent:
89
- - Ruby
90
- connection:
91
- - close
92
- response: !ruby/struct:VCR::Response
93
- status: !ruby/struct:VCR::ResponseStatus
94
- code: 201
95
- message: "Created "
96
- headers:
97
- cache-control:
98
- - no-cache
99
- x-runtime:
100
- - "318"
101
- content-type:
102
- - application/xml; charset=utf-8
103
- content-length:
104
- - "524"
105
- server:
106
- - WEBrick/1.3.1 (Ruby/1.9.2/2010-08-18)
107
- date:
108
- - Thu, 03 Feb 2011 23:15:30 GMT
109
- connection:
110
- - close
111
- set-cookie:
112
- - _recurly_session=7e97cfd07b03224b897ed8141fbf48cd; domain=.recurly.local; path=/; HttpOnly
113
- body: |
114
- <?xml version="1.0" encoding="UTF-8"?>
115
- <coupon>
116
- <account_code>coupon-destroy-1296774903</account_code>
117
- <coupon_code>coupon</coupon_code>
118
- <name>coupon</name>
119
- <discount_in_cents type="integer"></discount_in_cents>
120
- <discount_percent type="integer">15</discount_percent>
121
- <redemption>
122
- <account_code>coupon-destroy-1296774903</account_code>
123
- <redeemed_at type="datetime">2011-02-03 23:15:30 UTC</redeemed_at>
124
- <total_discounted_in_cents type="integer">0</total_discounted_in_cents>
125
- </redemption>
126
- </coupon>
127
-
128
- http_version: "1.1"
129
- - !ruby/struct:VCR::HTTPInteraction
130
- request: !ruby/struct:VCR::Request
131
- method: :delete
132
- uri: http://isaac%40recurly.com:isaac1024@litle-test.recurly.local:3000/accounts/coupon-destroy-1296774903/coupon.xml
133
- body:
134
- headers:
135
- authorization:
136
- - Basic aXNhYWNAcmVjdXJseS5jb206aXNhYWMxMDI0
137
- accept:
138
- - application/xml
139
- user-agent:
140
- - Ruby
141
- connection:
142
- - close
143
- response: !ruby/struct:VCR::Response
144
- status: !ruby/struct:VCR::ResponseStatus
145
- code: 200
146
- message: "OK "
147
- headers:
148
- cache-control:
149
- - no-cache
150
- x-runtime:
151
- - "272"
152
- content-type:
153
- - application/xml; charset=utf-8
154
- content-length:
155
- - "1"
156
- server:
157
- - WEBrick/1.3.1 (Ruby/1.9.2/2010-08-18)
158
- date:
159
- - Thu, 03 Feb 2011 23:15:32 GMT
160
- connection:
161
- - close
162
- set-cookie:
163
- - _recurly_session=e583922bcad25a08351177000d17b9fd; domain=.recurly.local; path=/; HttpOnly
164
- body: " "
165
- http_version: "1.1"
166
- - !ruby/struct:VCR::HTTPInteraction
167
- request: !ruby/struct:VCR::Request
168
- method: :get
169
- uri: http://isaac%40recurly.com:isaac1024@litle-test.recurly.local:3000/accounts/coupon-destroy-1296774903/coupon.xml
170
- body:
171
- headers:
172
- authorization:
173
- - Basic aXNhYWNAcmVjdXJseS5jb206aXNhYWMxMDI0
174
- accept:
175
- - application/xml
176
- accept-encoding:
177
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
178
- user-agent:
179
- - Ruby
180
- connection:
181
- - close
182
- response: !ruby/struct:VCR::Response
183
- status: !ruby/struct:VCR::ResponseStatus
184
- code: 404
185
- message: "Not Found "
186
- headers:
187
- cache-control:
188
- - no-cache
189
- content-type:
190
- - application/xml; charset=utf-8
191
- content-length:
192
- - "92"
193
- server:
194
- - WEBrick/1.3.1 (Ruby/1.9.2/2010-08-18)
195
- date:
196
- - Thu, 03 Feb 2011 23:15:35 GMT
197
- connection:
198
- - close
199
- set-cookie:
200
- - _recurly_session=fdf33942d2134add0dafe4b48a6f77e1; domain=.recurly.local; path=/; HttpOnly
201
- body: |
202
- <?xml version="1.0" encoding="UTF-8"?>
203
- <errors>
204
- <error>Coupon not found</error>
205
- </errors>
206
-
207
- http_version: "1.1"
@@ -1,121 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :post
5
- uri: http://isaac%40recurly.com:isaac1024@litle-test.recurly.local:3000/accounts.xml
6
- body: |
7
- <?xml version="1.0" encoding="UTF-8"?>
8
- <account>
9
- <account-code>credit-create-1296674173</account-code>
10
- <first-name>Verena</first-name>
11
- <last-name>Test</last-name>
12
- <email>verena@test.com</email>
13
- <company-name>Recurly Ruby Gem</company-name>
14
- <accept-language type="yaml" nil="true"></accept-language>
15
- </account>
16
-
17
- headers:
18
- authorization:
19
- - Basic aXNhYWNAcmVjdXJseS5jb206aXNhYWMxMDI0
20
- content-type:
21
- - application/xml
22
- accept:
23
- - "*/*"
24
- user-agent:
25
- - Ruby
26
- connection:
27
- - close
28
- response: !ruby/struct:VCR::Response
29
- status: !ruby/struct:VCR::ResponseStatus
30
- code: 201
31
- message: "Created "
32
- headers:
33
- cache-control:
34
- - no-cache
35
- location:
36
- - http://litle-test.recurly.local:3000/accounts/credit-create-1296674173
37
- x-runtime:
38
- - "649"
39
- content-type:
40
- - application/xml; charset=utf-8
41
- content-length:
42
- - "581"
43
- server:
44
- - WEBrick/1.3.1 (Ruby/1.9.2/2010-08-18)
45
- date:
46
- - Thu, 03 Feb 2011 22:19:35 GMT
47
- connection:
48
- - close
49
- set-cookie:
50
- - account_credentials=42afaf7f17fb318a77c329f313304bec39e92324b07b32ca27f6395e9ea2604afcb1028c435a94e0592fc12242aaeb3132711eb49fbe65c3eeabfa8c54dee428%3A%3A; domain=.recurly.local; path=/
51
- - ""
52
- - _recurly_session=d7dcb3335f4368cd2f11491575805c26; domain=.recurly.local; path=/; HttpOnly
53
- body: |
54
- <?xml version="1.0" encoding="UTF-8"?>
55
- <account>
56
- <id>credit-create-1296674173</id>
57
- <account_code>credit-create-1296674173</account_code>
58
- <username></username>
59
- <email>verena@test.com</email>
60
- <first_name>Verena</first_name>
61
- <last_name>Test</last_name>
62
- <company_name>Recurly Ruby Gem</company_name>
63
- <balance_in_cents type="integer">0</balance_in_cents>
64
- <closed type="boolean">false</closed>
65
- <hosted_login_token>da1bc25358ad458f8bbb6d21bea375c4</hosted_login_token>
66
- <created_at type="datetime">2011-02-03T22:19:35Z</created_at>
67
- <state>active</state>
68
- </account>
69
-
70
- http_version: "1.1"
71
- - !ruby/struct:VCR::HTTPInteraction
72
- request: !ruby/struct:VCR::Request
73
- method: :post
74
- uri: http://isaac%40recurly.com:isaac1024@litle-test.recurly.local:3000/accounts/credit-create-1296674173/credits.xml
75
- body: |
76
- <?xml version="1.0" encoding="UTF-8"?>
77
- <credit>
78
- <amount type="float">10.05</amount>
79
- <description>free moniez</description>
80
- </credit>
81
-
82
- headers:
83
- authorization:
84
- - Basic aXNhYWNAcmVjdXJseS5jb206aXNhYWMxMDI0
85
- content-type:
86
- - application/xml
87
- accept:
88
- - "*/*"
89
- user-agent:
90
- - Ruby
91
- connection:
92
- - close
93
- response: !ruby/struct:VCR::Response
94
- status: !ruby/struct:VCR::ResponseStatus
95
- code: 422
96
- message: ""
97
- headers:
98
- cache-control:
99
- - no-cache
100
- x-runtime:
101
- - "283"
102
- content-type:
103
- - application/xml; charset=utf-8
104
- content-length:
105
- - "223"
106
- server:
107
- - WEBrick/1.3.1 (Ruby/1.9.2/2010-08-18)
108
- date:
109
- - Thu, 03 Feb 2011 22:19:37 GMT
110
- connection:
111
- - close
112
- set-cookie:
113
- - _recurly_session=36eb7972ce88bf513f9a8d31d18388f7; domain=.recurly.local; path=/; HttpOnly
114
- body: |
115
- <?xml version="1.0" encoding="UTF-8"?>
116
- <errors>
117
- <error field="unit_amount_in_cents">Unit amount in cents can't be blank</error>
118
- <error field="unit_amount_in_cents">Unit amount in cents is not a number</error>
119
- </errors>
120
-
121
- http_version: "1.1"
@@ -1,121 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :post
5
- uri: http://isaac%40recurly.com:isaac1024@litle-test.recurly.local:3000/accounts.xml
6
- body: |
7
- <?xml version="1.0" encoding="UTF-8"?>
8
- <account>
9
- <account-code>delete-uninvoiced-1296674173</account-code>
10
- <first-name>Verena</first-name>
11
- <last-name>Test</last-name>
12
- <email>verena@test.com</email>
13
- <company-name>Recurly Ruby Gem</company-name>
14
- <accept-language type="yaml" nil="true"></accept-language>
15
- </account>
16
-
17
- headers:
18
- authorization:
19
- - Basic aXNhYWNAcmVjdXJseS5jb206aXNhYWMxMDI0
20
- content-type:
21
- - application/xml
22
- accept:
23
- - "*/*"
24
- user-agent:
25
- - Ruby
26
- connection:
27
- - close
28
- response: !ruby/struct:VCR::Response
29
- status: !ruby/struct:VCR::ResponseStatus
30
- code: 201
31
- message: "Created "
32
- headers:
33
- cache-control:
34
- - no-cache
35
- location:
36
- - http://litle-test.recurly.local:3000/accounts/delete-uninvoiced-1296674173
37
- x-runtime:
38
- - "620"
39
- content-type:
40
- - application/xml; charset=utf-8
41
- content-length:
42
- - "589"
43
- server:
44
- - WEBrick/1.3.1 (Ruby/1.9.2/2010-08-18)
45
- date:
46
- - Thu, 03 Feb 2011 22:19:48 GMT
47
- connection:
48
- - close
49
- set-cookie:
50
- - account_credentials=4ffec5e69c8f03eae0d91ee9c2ec0189d703987a9b945e406ca24376c1fa345a5c8a5e5ad7a4f5b8b7ea44816433ce6808a6b7f1dcb7152441300b737df247ed%3A%3A; domain=.recurly.local; path=/
51
- - ""
52
- - _recurly_session=493c254cbf5b70e89d623cb833ea3e8d; domain=.recurly.local; path=/; HttpOnly
53
- body: |
54
- <?xml version="1.0" encoding="UTF-8"?>
55
- <account>
56
- <id>delete-uninvoiced-1296674173</id>
57
- <account_code>delete-uninvoiced-1296674173</account_code>
58
- <username></username>
59
- <email>verena@test.com</email>
60
- <first_name>Verena</first_name>
61
- <last_name>Test</last_name>
62
- <company_name>Recurly Ruby Gem</company_name>
63
- <balance_in_cents type="integer">0</balance_in_cents>
64
- <closed type="boolean">false</closed>
65
- <hosted_login_token>d2fa050e00dd412b999e3a0ba65da1f3</hosted_login_token>
66
- <created_at type="datetime">2011-02-03T22:19:48Z</created_at>
67
- <state>active</state>
68
- </account>
69
-
70
- http_version: "1.1"
71
- - !ruby/struct:VCR::HTTPInteraction
72
- request: !ruby/struct:VCR::Request
73
- method: :post
74
- uri: http://isaac%40recurly.com:isaac1024@litle-test.recurly.local:3000/accounts/delete-uninvoiced-1296674173/credits.xml
75
- body: |
76
- <?xml version="1.0" encoding="UTF-8"?>
77
- <credit>
78
- <amount type="float">13.15</amount>
79
- <description>free moniez 4 u</description>
80
- </credit>
81
-
82
- headers:
83
- authorization:
84
- - Basic aXNhYWNAcmVjdXJseS5jb206aXNhYWMxMDI0
85
- content-type:
86
- - application/xml
87
- accept:
88
- - "*/*"
89
- user-agent:
90
- - Ruby
91
- connection:
92
- - close
93
- response: !ruby/struct:VCR::Response
94
- status: !ruby/struct:VCR::ResponseStatus
95
- code: 422
96
- message: ""
97
- headers:
98
- cache-control:
99
- - no-cache
100
- x-runtime:
101
- - "327"
102
- content-type:
103
- - application/xml; charset=utf-8
104
- content-length:
105
- - "223"
106
- server:
107
- - WEBrick/1.3.1 (Ruby/1.9.2/2010-08-18)
108
- date:
109
- - Thu, 03 Feb 2011 22:19:50 GMT
110
- connection:
111
- - close
112
- set-cookie:
113
- - _recurly_session=6a1450b93756b12e72e8c0f19ec0f6dc; domain=.recurly.local; path=/; HttpOnly
114
- body: |
115
- <?xml version="1.0" encoding="UTF-8"?>
116
- <errors>
117
- <error field="unit_amount_in_cents">Unit amount in cents can't be blank</error>
118
- <error field="unit_amount_in_cents">Unit amount in cents is not a number</error>
119
- </errors>
120
-
121
- http_version: "1.1"