pay_fu 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +54 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/pay_fu/application.js +15 -0
  5. data/app/assets/stylesheets/pay_fu/application.css +13 -0
  6. data/app/controllers/pay_fu/alipay_transactions_controller.rb +28 -0
  7. data/app/controllers/pay_fu/application_controller.rb +4 -0
  8. data/app/controllers/pay_fu/paypal_transactions_controller.rb +28 -0
  9. data/app/helpers/pay_fu/alipay_helper.rb +24 -0
  10. data/app/helpers/pay_fu/application_helper.rb +4 -0
  11. data/app/helpers/pay_fu/paypal_helper.rb +8 -0
  12. data/app/models/pay_fu/alipay_transaction.rb +4 -0
  13. data/app/models/pay_fu/paypal_transaction.rb +4 -0
  14. data/app/models/pay_fu/transaction.rb +5 -0
  15. data/app/views/layouts/pay_fu/application.html.erb +14 -0
  16. data/config/routes.rb +4 -0
  17. data/lib/generators/pay_fu/install_generator.rb +19 -0
  18. data/lib/generators/pay_fu/templates/config.yml +23 -0
  19. data/lib/generators/pay_fu/templates/migration.rb +15 -0
  20. data/lib/generators/pay_fu/utils.rb +29 -0
  21. data/lib/pay_fu.rb +4 -0
  22. data/lib/pay_fu/engine.rb +27 -0
  23. data/lib/pay_fu/version.rb +3 -0
  24. data/lib/tasks/pay_fu_tasks.rake +4 -0
  25. data/test/dummy/README.rdoc +261 -0
  26. data/test/dummy/Rakefile +7 -0
  27. data/test/dummy/app/assets/javascripts/application.js +15 -0
  28. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  29. data/test/dummy/app/controllers/application_controller.rb +3 -0
  30. data/test/dummy/app/helpers/application_helper.rb +2 -0
  31. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/test/dummy/config.ru +4 -0
  33. data/test/dummy/config/application.rb +56 -0
  34. data/test/dummy/config/boot.rb +10 -0
  35. data/test/dummy/config/database.yml +25 -0
  36. data/test/dummy/config/environment.rb +5 -0
  37. data/test/dummy/config/environments/development.rb +37 -0
  38. data/test/dummy/config/environments/production.rb +67 -0
  39. data/test/dummy/config/environments/test.rb +37 -0
  40. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/test/dummy/config/initializers/inflections.rb +15 -0
  42. data/test/dummy/config/initializers/mime_types.rb +5 -0
  43. data/test/dummy/config/initializers/secret_token.rb +7 -0
  44. data/test/dummy/config/initializers/session_store.rb +8 -0
  45. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/test/dummy/config/locales/en.yml +5 -0
  47. data/test/dummy/config/routes.rb +4 -0
  48. data/test/dummy/public/404.html +26 -0
  49. data/test/dummy/public/422.html +26 -0
  50. data/test/dummy/public/500.html +25 -0
  51. data/test/dummy/public/favicon.ico +0 -0
  52. data/test/dummy/script/rails +6 -0
  53. data/test/fixtures/pay_fu/transactions.yml +27 -0
  54. data/test/integration/navigation_test.rb +10 -0
  55. data/test/pay_fu_test.rb +7 -0
  56. data/test/test_helper.rb +15 -0
  57. data/test/unit/pay_fu/transaction_test.rb +9 -0
  58. metadata +185 -0
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,27 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ type:
5
+ txn_id: MyString
6
+ txn_type: MyString
7
+ payer_email: MyString
8
+ payer_id: MyString
9
+ payment_status: MyString
10
+ payment_date: 2012-05-04 11:42:08
11
+ mc_gross: 1
12
+ mc_fee: 1
13
+ mc_currency: MyString
14
+ raw_post: MyString
15
+
16
+ two:
17
+ type:
18
+ txn_id: MyString
19
+ txn_type: MyString
20
+ payer_email: MyString
21
+ payer_id: MyString
22
+ payment_status: MyString
23
+ payment_date: 2012-05-04 11:42:08
24
+ mc_gross: 1
25
+ mc_fee: 1
26
+ mc_currency: MyString
27
+ raw_post: MyString
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class PayFuTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, PayFu
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module PayFu
4
+ class TransactionTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,185 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pay_fu
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Richard Huange
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-06-10 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: &70356670270660 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70356670270660
25
+ - !ruby/object:Gem::Dependency
26
+ name: activemerchant
27
+ requirement: &70356670269340 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *70356670269340
36
+ - !ruby/object:Gem::Dependency
37
+ name: activemerchant_patch_for_china
38
+ requirement: &70356670268120 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :runtime
45
+ prerelease: false
46
+ version_requirements: *70356670268120
47
+ - !ruby/object:Gem::Dependency
48
+ name: sqlite3
49
+ requirement: &70356670266500 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: *70356670266500
58
+ description: pay_fu engine
59
+ email:
60
+ - flyerhzm@gmail.com
61
+ executables: []
62
+ extensions: []
63
+ extra_rdoc_files: []
64
+ files:
65
+ - app/assets/javascripts/pay_fu/application.js
66
+ - app/assets/stylesheets/pay_fu/application.css
67
+ - app/controllers/pay_fu/alipay_transactions_controller.rb
68
+ - app/controllers/pay_fu/application_controller.rb
69
+ - app/controllers/pay_fu/paypal_transactions_controller.rb
70
+ - app/helpers/pay_fu/alipay_helper.rb
71
+ - app/helpers/pay_fu/application_helper.rb
72
+ - app/helpers/pay_fu/paypal_helper.rb
73
+ - app/models/pay_fu/alipay_transaction.rb
74
+ - app/models/pay_fu/paypal_transaction.rb
75
+ - app/models/pay_fu/transaction.rb
76
+ - app/views/layouts/pay_fu/application.html.erb
77
+ - config/routes.rb
78
+ - lib/generators/pay_fu/install_generator.rb
79
+ - lib/generators/pay_fu/templates/config.yml
80
+ - lib/generators/pay_fu/templates/migration.rb
81
+ - lib/generators/pay_fu/utils.rb
82
+ - lib/pay_fu/engine.rb
83
+ - lib/pay_fu/version.rb
84
+ - lib/pay_fu.rb
85
+ - lib/tasks/pay_fu_tasks.rake
86
+ - MIT-LICENSE
87
+ - Rakefile
88
+ - README.md
89
+ - test/dummy/app/assets/javascripts/application.js
90
+ - test/dummy/app/assets/stylesheets/application.css
91
+ - test/dummy/app/controllers/application_controller.rb
92
+ - test/dummy/app/helpers/application_helper.rb
93
+ - test/dummy/app/views/layouts/application.html.erb
94
+ - test/dummy/config/application.rb
95
+ - test/dummy/config/boot.rb
96
+ - test/dummy/config/database.yml
97
+ - test/dummy/config/environment.rb
98
+ - test/dummy/config/environments/development.rb
99
+ - test/dummy/config/environments/production.rb
100
+ - test/dummy/config/environments/test.rb
101
+ - test/dummy/config/initializers/backtrace_silencers.rb
102
+ - test/dummy/config/initializers/inflections.rb
103
+ - test/dummy/config/initializers/mime_types.rb
104
+ - test/dummy/config/initializers/secret_token.rb
105
+ - test/dummy/config/initializers/session_store.rb
106
+ - test/dummy/config/initializers/wrap_parameters.rb
107
+ - test/dummy/config/locales/en.yml
108
+ - test/dummy/config/routes.rb
109
+ - test/dummy/config.ru
110
+ - test/dummy/public/404.html
111
+ - test/dummy/public/422.html
112
+ - test/dummy/public/500.html
113
+ - test/dummy/public/favicon.ico
114
+ - test/dummy/Rakefile
115
+ - test/dummy/README.rdoc
116
+ - test/dummy/script/rails
117
+ - test/fixtures/pay_fu/transactions.yml
118
+ - test/integration/navigation_test.rb
119
+ - test/pay_fu_test.rb
120
+ - test/test_helper.rb
121
+ - test/unit/pay_fu/transaction_test.rb
122
+ homepage: https://github.com/transist/pay_fu
123
+ licenses: []
124
+ post_install_message:
125
+ rdoc_options: []
126
+ require_paths:
127
+ - lib
128
+ required_ruby_version: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ segments:
135
+ - 0
136
+ hash: 1298022973128506602
137
+ required_rubygems_version: !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ! '>='
141
+ - !ruby/object:Gem::Version
142
+ version: '0'
143
+ segments:
144
+ - 0
145
+ hash: 1298022973128506602
146
+ requirements: []
147
+ rubyforge_project:
148
+ rubygems_version: 1.8.17
149
+ signing_key:
150
+ specification_version: 3
151
+ summary: pay_fu engine
152
+ test_files:
153
+ - test/dummy/app/assets/javascripts/application.js
154
+ - test/dummy/app/assets/stylesheets/application.css
155
+ - test/dummy/app/controllers/application_controller.rb
156
+ - test/dummy/app/helpers/application_helper.rb
157
+ - test/dummy/app/views/layouts/application.html.erb
158
+ - test/dummy/config/application.rb
159
+ - test/dummy/config/boot.rb
160
+ - test/dummy/config/database.yml
161
+ - test/dummy/config/environment.rb
162
+ - test/dummy/config/environments/development.rb
163
+ - test/dummy/config/environments/production.rb
164
+ - test/dummy/config/environments/test.rb
165
+ - test/dummy/config/initializers/backtrace_silencers.rb
166
+ - test/dummy/config/initializers/inflections.rb
167
+ - test/dummy/config/initializers/mime_types.rb
168
+ - test/dummy/config/initializers/secret_token.rb
169
+ - test/dummy/config/initializers/session_store.rb
170
+ - test/dummy/config/initializers/wrap_parameters.rb
171
+ - test/dummy/config/locales/en.yml
172
+ - test/dummy/config/routes.rb
173
+ - test/dummy/config.ru
174
+ - test/dummy/public/404.html
175
+ - test/dummy/public/422.html
176
+ - test/dummy/public/500.html
177
+ - test/dummy/public/favicon.ico
178
+ - test/dummy/Rakefile
179
+ - test/dummy/README.rdoc
180
+ - test/dummy/script/rails
181
+ - test/fixtures/pay_fu/transactions.yml
182
+ - test/integration/navigation_test.rb
183
+ - test/pay_fu_test.rb
184
+ - test/test_helper.rb
185
+ - test/unit/pay_fu/transaction_test.rb