reward_station 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. data/.gitignore +4 -0
  2. data/.rspec +1 -0
  3. data/.rvmrc +1 -0
  4. data/Gemfile +9 -0
  5. data/LICENSE +0 -0
  6. data/README.md +5 -0
  7. data/Rakefile +5 -0
  8. data/lib/reward_station.rb +1 -0
  9. data/lib/reward_station/version.rb +3 -0
  10. data/lib/wsdl/reward_services.xml +511 -0
  11. data/lib/xceleration/reward_station.rb +122 -0
  12. data/reward_station.gemspec +21 -0
  13. data/spec/fixtures/savon/reward_station/award_points/award_points.xml +12 -0
  14. data/spec/fixtures/savon/reward_station/award_points/award_points_invalid_token.xml +12 -0
  15. data/spec/fixtures/savon/reward_station/return_point_summary/return_point_summary.xml +22 -0
  16. data/spec/fixtures/savon/reward_station/return_point_summary/return_point_summary_invalid_token.xml +12 -0
  17. data/spec/fixtures/savon/reward_station/return_popular_products/return_popular_products.xml +362 -0
  18. data/spec/fixtures/savon/reward_station/return_popular_products/return_popular_products_invalid_token.xml +10 -0
  19. data/spec/fixtures/savon/reward_station/return_token/return_token.xml +10 -0
  20. data/spec/fixtures/savon/reward_station/return_token/return_token_invalid.xml +10 -0
  21. data/spec/fixtures/savon/reward_station/return_user/return_user.xml +35 -0
  22. data/spec/fixtures/savon/reward_station/return_user/return_user_invalid_token.xml +10 -0
  23. data/spec/fixtures/savon/reward_station/return_user/return_user_invalid_user.xml +10 -0
  24. data/spec/fixtures/savon/reward_station/update_user/create_user.xml +34 -0
  25. data/spec/fixtures/savon/reward_station/update_user/create_user_exists.xml +9 -0
  26. data/spec/savon_helper.rb +129 -0
  27. data/spec/spec_helper.rb +18 -0
  28. data/spec/xceleration/reward_station_spec.rb +348 -0
  29. metadata +95 -0
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: reward_station
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Stepan Filatov
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-07-17 00:00:00 +04:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: Reward Station is a client implementation of the Xceleration Reward Station service API
23
+ email:
24
+ - filatov.st@gmail.com
25
+ executables: []
26
+
27
+ extensions: []
28
+
29
+ extra_rdoc_files: []
30
+
31
+ files:
32
+ - .gitignore
33
+ - .rspec
34
+ - .rvmrc
35
+ - Gemfile
36
+ - LICENSE
37
+ - README.md
38
+ - Rakefile
39
+ - lib/reward_station.rb
40
+ - lib/reward_station/version.rb
41
+ - lib/wsdl/reward_services.xml
42
+ - lib/xceleration/reward_station.rb
43
+ - reward_station.gemspec
44
+ - spec/fixtures/savon/reward_station/award_points/award_points.xml
45
+ - spec/fixtures/savon/reward_station/award_points/award_points_invalid_token.xml
46
+ - spec/fixtures/savon/reward_station/return_point_summary/return_point_summary.xml
47
+ - spec/fixtures/savon/reward_station/return_point_summary/return_point_summary_invalid_token.xml
48
+ - spec/fixtures/savon/reward_station/return_popular_products/return_popular_products.xml
49
+ - spec/fixtures/savon/reward_station/return_popular_products/return_popular_products_invalid_token.xml
50
+ - spec/fixtures/savon/reward_station/return_token/return_token.xml
51
+ - spec/fixtures/savon/reward_station/return_token/return_token_invalid.xml
52
+ - spec/fixtures/savon/reward_station/return_user/return_user.xml
53
+ - spec/fixtures/savon/reward_station/return_user/return_user_invalid_token.xml
54
+ - spec/fixtures/savon/reward_station/return_user/return_user_invalid_user.xml
55
+ - spec/fixtures/savon/reward_station/update_user/create_user.xml
56
+ - spec/fixtures/savon/reward_station/update_user/create_user_exists.xml
57
+ - spec/savon_helper.rb
58
+ - spec/spec_helper.rb
59
+ - spec/xceleration/reward_station_spec.rb
60
+ has_rdoc: true
61
+ homepage: https://github.com/sfilatov/reward_station
62
+ licenses: []
63
+
64
+ post_install_message:
65
+ rdoc_options: []
66
+
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ hash: 3
75
+ segments:
76
+ - 0
77
+ version: "0"
78
+ required_rubygems_version: !ruby/object:Gem::Requirement
79
+ none: false
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ hash: 3
84
+ segments:
85
+ - 0
86
+ version: "0"
87
+ requirements: []
88
+
89
+ rubyforge_project: reward_station
90
+ rubygems_version: 1.3.7
91
+ signing_key:
92
+ specification_version: 3
93
+ summary: Reward Station is a client implementation of the Xceleration Reward Station service API
94
+ test_files: []
95
+