affiliate-window 0.2.0.pre1 → 0.2.1.pre1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +48 -0
- data/Gemfile.lock +70 -0
- data/VERSION +1 -0
- data/affiliate-window-0.2.0.pre1.gem +0 -0
- data/affiliate-window.gemspec +68 -0
- data/lib/affiliate-window/account.rb +48 -0
- data/lib/affiliate-window/clients/affiliate_service.rb +45 -0
- data/lib/affiliate-window/clients/category.rb +19 -0
- data/lib/affiliate-window/clients/merchant.rb +32 -0
- data/lib/affiliate-window/clients/shop_window.rb +45 -0
- data/lib/affiliate-window/helpers/account.rb +25 -0
- data/lib/affiliate-window/helpers/client.rb +23 -0
- data/lib/affiliate-window/helpers/csv.rb +24 -0
- data/lib/affiliate-window/models/transaction.rb +92 -0
- data/lib/affiliate-window/version.rb +10 -0
- data/spec/affiliate_window/account_spec.rb +33 -0
- data/spec/affiliate_window/clients/affiliate_service_spec.rb +51 -0
- data/spec/affiliate_window/clients/category_spec.rb +39 -0
- data/spec/affiliate_window/clients/merchant_spec.rb +48 -0
- data/spec/affiliate_window/clients/shop_window_spec.rb +41 -0
- data/spec/affiliate_window/helpers/account_spec.rb +0 -0
- data/spec/affiliate_window/helpers/csv_spec.rb +43 -0
- data/spec/affiliate_window/models/transaction_spec.rb +44 -0
- data/spec/affiliate_window_spec.rb +28 -0
- data/spec/fixtures/csv/merchants.csv +3 -0
- data/spec/fixtures/responses/affiliate_service_v3.wsdl +1039 -0
- data/spec/fixtures/responses/get_transaction_list.xml +310 -0
- data/spec/fixtures/responses/gtl.xml +300 -0
- data/spec/fixtures/responses/merchants.csv +32 -0
- data/spec/helper.rb +62 -0
- data/wsdl/affiliate_service_v3.wsdl +1029 -0
- metadata +32 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: affiliate-window
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1.pre1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- andy.triggs@gmail.com
|
@@ -189,11 +189,42 @@ extra_rdoc_files:
|
|
189
189
|
- README.rdoc
|
190
190
|
files:
|
191
191
|
- ".document"
|
192
|
+
- ".gitignore"
|
192
193
|
- Gemfile
|
194
|
+
- Gemfile.lock
|
193
195
|
- LICENSE.txt
|
194
196
|
- README.rdoc
|
195
197
|
- Rakefile
|
198
|
+
- VERSION
|
199
|
+
- affiliate-window-0.2.0.pre1.gem
|
200
|
+
- affiliate-window.gemspec
|
196
201
|
- lib/affiliate-window.rb
|
202
|
+
- lib/affiliate-window/account.rb
|
203
|
+
- lib/affiliate-window/clients/affiliate_service.rb
|
204
|
+
- lib/affiliate-window/clients/category.rb
|
205
|
+
- lib/affiliate-window/clients/merchant.rb
|
206
|
+
- lib/affiliate-window/clients/shop_window.rb
|
207
|
+
- lib/affiliate-window/helpers/account.rb
|
208
|
+
- lib/affiliate-window/helpers/client.rb
|
209
|
+
- lib/affiliate-window/helpers/csv.rb
|
210
|
+
- lib/affiliate-window/models/transaction.rb
|
211
|
+
- lib/affiliate-window/version.rb
|
212
|
+
- spec/affiliate_window/account_spec.rb
|
213
|
+
- spec/affiliate_window/clients/affiliate_service_spec.rb
|
214
|
+
- spec/affiliate_window/clients/category_spec.rb
|
215
|
+
- spec/affiliate_window/clients/merchant_spec.rb
|
216
|
+
- spec/affiliate_window/clients/shop_window_spec.rb
|
217
|
+
- spec/affiliate_window/helpers/account_spec.rb
|
218
|
+
- spec/affiliate_window/helpers/csv_spec.rb
|
219
|
+
- spec/affiliate_window/models/transaction_spec.rb
|
220
|
+
- spec/affiliate_window_spec.rb
|
221
|
+
- spec/fixtures/csv/merchants.csv
|
222
|
+
- spec/fixtures/responses/affiliate_service_v3.wsdl
|
223
|
+
- spec/fixtures/responses/get_transaction_list.xml
|
224
|
+
- spec/fixtures/responses/gtl.xml
|
225
|
+
- spec/fixtures/responses/merchants.csv
|
226
|
+
- spec/helper.rb
|
227
|
+
- wsdl/affiliate_service_v3.wsdl
|
197
228
|
homepage: http://github.com/andyt/affiliate-window
|
198
229
|
licenses:
|
199
230
|
- MIT
|