simplepay 0.2.1 → 0.2.2
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.
- data.tar.gz.sig +0 -0
- data/History.txt +4 -0
- data/Manifest.txt +2 -0
- data/lib/simplepay.rb +1 -1
- data/lib/simplepay/service.rb +1 -0
- data/lib/simplepay/services/donation.rb +88 -0
- data/simplepay.gemspec +9 -9
- data/test/simplepay/services/test_donation.rb +85 -0
- metadata +10 -5
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
Binary file
|
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
@@ -11,6 +11,7 @@ lib/simplepay/helpers/notification_helper.rb
|
|
11
11
|
lib/simplepay/helpers/rails_helper.rb
|
12
12
|
lib/simplepay/rails.rb
|
13
13
|
lib/simplepay/service.rb
|
14
|
+
lib/simplepay/services/donation.rb
|
14
15
|
lib/simplepay/services/marketplace.rb
|
15
16
|
lib/simplepay/services/marketplace_policy.rb
|
16
17
|
lib/simplepay/services/standard.rb
|
@@ -29,6 +30,7 @@ script/destroy
|
|
29
30
|
script/generate
|
30
31
|
simplepay.gemspec
|
31
32
|
test/simplepay/helpers/test_notifier.rb
|
33
|
+
test/simplepay/services/test_donation.rb
|
32
34
|
test/simplepay/services/test_marketplace.rb
|
33
35
|
test/simplepay/services/test_marketplace_policy.rb
|
34
36
|
test/simplepay/services/test_standard.rb
|
data/lib/simplepay.rb
CHANGED
data/lib/simplepay/service.rb
CHANGED
@@ -0,0 +1,88 @@
|
|
1
|
+
module Simplepay
|
2
|
+
module Services
|
3
|
+
|
4
|
+
##
|
5
|
+
# The Amazon Simple Pay Donation service is used to facilitate the collection
|
6
|
+
# of donations to your organization, or another's organization via the
|
7
|
+
# marketplace functionality. When used through the marketplace functionality,
|
8
|
+
# you may charge a commission fee for brokering the exchange.
|
9
|
+
#
|
10
|
+
# Note that donation recipients must accept your marketplace fee policy before
|
11
|
+
# the payment buttons for their donations may be generated. This can be
|
12
|
+
# accomplished using the +MarketplacePolicy+ service with the form helper
|
13
|
+
# (see examples).
|
14
|
+
#
|
15
|
+
# === Simple Pay Donation Fields
|
16
|
+
#
|
17
|
+
# ==== Required Fields
|
18
|
+
#
|
19
|
+
# The following attributes are required when generating a Simple Pay Donation
|
20
|
+
# form (in addition to those listed in +SimplePay::Service+):
|
21
|
+
#
|
22
|
+
# amount:: The dollar value you'd like to collect
|
23
|
+
#
|
24
|
+
# ==== Optional Fields
|
25
|
+
#
|
26
|
+
# immediate_return:: Immediately returns the customer to your +return_url+ directly after payment.
|
27
|
+
# ipn_url:: Fully-qualified URL to which Amazon will POST instant payment notifications.
|
28
|
+
# process_immediately:: Instructs Amazon to immediately process the payment.
|
29
|
+
# reference_id:: A custom string your can set to identify this transaction, it will be returned with the IPNs and other returned data.
|
30
|
+
# return_url:: Fully-qualified URL for where to send your customer following payment.
|
31
|
+
#
|
32
|
+
# ===== Marketplace Fields
|
33
|
+
#
|
34
|
+
# recipient_email:: The email address of the donation recipient (important and must be correct)
|
35
|
+
# fixed_marketplace_fee:: The fixed marketplace fee to add to each transaction
|
36
|
+
# variable_marketplace_fee:: The variable marketplace fee to add to each transaction
|
37
|
+
#
|
38
|
+
# === Example
|
39
|
+
#
|
40
|
+
# (in your view, sellers need to accept the marketplace fee policy using the form helper)
|
41
|
+
#
|
42
|
+
# <%= simplepay_form_for(:marketplace_policy, {
|
43
|
+
# :max_fixed_fee => 10.00,
|
44
|
+
# :max_variable_fee => 5,
|
45
|
+
# :return_url => 'http://yourservice.com'
|
46
|
+
# }) %>
|
47
|
+
#
|
48
|
+
# (in your view, payment form generated for end users using the form helper)
|
49
|
+
#
|
50
|
+
# <%= simplepay_form_for(:donation, {
|
51
|
+
# :amount => 34.95,
|
52
|
+
# :description => "Mutual profit!",
|
53
|
+
# :recipient_email => 'seller@gmail.com',
|
54
|
+
# :fixed_marketplace_fee => 10.00,
|
55
|
+
# :variable_marketplace_fee => 5
|
56
|
+
# }) %>
|
57
|
+
#
|
58
|
+
class Donation < Service
|
59
|
+
|
60
|
+
required_field :access_key
|
61
|
+
required_field :signature
|
62
|
+
required_field :account_id, :as => :amazon_payments_account_id
|
63
|
+
|
64
|
+
required_field :description
|
65
|
+
required_field :amount, :class => Support::Amount
|
66
|
+
required_field :cobranding_style, :value => 'logo'
|
67
|
+
required_field :donation_widget, :as => :is_donation_widget,
|
68
|
+
:value => '1'
|
69
|
+
|
70
|
+
field :reference_id
|
71
|
+
field :immediate_return, :class => Support::Boolean
|
72
|
+
field :collect_shipping_address, :class => Support::Boolean
|
73
|
+
field :process_immediately, :class => Support::Boolean,
|
74
|
+
:as => :process_immediate
|
75
|
+
|
76
|
+
field :return_url
|
77
|
+
field :ipn_url
|
78
|
+
field :abandon_url
|
79
|
+
|
80
|
+
# Marketplace inputs (recipient email required when using)
|
81
|
+
field :fixed_marketplace_fee, :class => Support::Amount
|
82
|
+
field :variable_marketplace_fee
|
83
|
+
field :recipient_email
|
84
|
+
|
85
|
+
end
|
86
|
+
|
87
|
+
end
|
88
|
+
end
|
data/simplepay.gemspec
CHANGED
@@ -2,42 +2,42 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{simplepay}
|
5
|
-
s.version = "0.2.
|
5
|
+
s.version = "0.2.2"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Nathaniel E. Bibler"]
|
9
9
|
s.cert_chain = ["/Users/nathan/.gem/gem-public_cert.pem"]
|
10
|
-
s.date = %q{
|
10
|
+
s.date = %q{2009-06-07}
|
11
11
|
s.description = %q{This gem provides a Rails interface to the Amazon Simple Pay payment service.}
|
12
12
|
s.email = ["gem@nathanielbibler.com"]
|
13
13
|
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.rdoc"]
|
14
|
-
s.files = ["History.txt", "Manifest.txt", "README.rdoc", "Rakefile", "lib/simplepay.rb", "lib/simplepay/authentication.rb", "lib/simplepay/constants.rb", "lib/simplepay/errors.rb", "lib/simplepay/helpers/form_helper.rb", "lib/simplepay/helpers/notification_helper.rb", "lib/simplepay/helpers/rails_helper.rb", "lib/simplepay/rails.rb", "lib/simplepay/service.rb", "lib/simplepay/services/standard.rb", "lib/simplepay/services/subscription.rb", "lib/simplepay/support.rb", "lib/simplepay/support/amount.rb", "lib/simplepay/support/billing_frequency.rb", "lib/simplepay/support/boolean.rb", "lib/simplepay/support/currency.rb", "lib/simplepay/support/epoch.rb", "lib/simplepay/support/field.rb", "lib/simplepay/support/interval.rb", "lib/simplepay/support/subscription_period.rb", "script/console", "script/destroy", "script/generate", "simplepay.gemspec", "test/simplepay/helpers/test_notifier.rb", "test/simplepay/services/test_standard.rb", "test/simplepay/services/test_subscription.rb", "test/simplepay/support/test_amount.rb", "test/simplepay/support/test_billing_frequency.rb", "test/simplepay/support/test_boolean.rb", "test/simplepay/support/test_epoch.rb", "test/simplepay/support/test_field.rb", "test/simplepay/support/test_interval.rb", "test/simplepay/support/test_subscription_period.rb", "test/simplepay/test_authentication.rb", "test/simplepay/test_service.rb", "test/test_helper.rb", "test/test_simplepay.rb"]
|
14
|
+
s.files = ["History.txt", "Manifest.txt", "README.rdoc", "Rakefile", "lib/simplepay.rb", "lib/simplepay/authentication.rb", "lib/simplepay/constants.rb", "lib/simplepay/errors.rb", "lib/simplepay/helpers/form_helper.rb", "lib/simplepay/helpers/notification_helper.rb", "lib/simplepay/helpers/rails_helper.rb", "lib/simplepay/rails.rb", "lib/simplepay/service.rb", "lib/simplepay/services/donation.rb", "lib/simplepay/services/marketplace.rb", "lib/simplepay/services/marketplace_policy.rb", "lib/simplepay/services/standard.rb", "lib/simplepay/services/subscription.rb", "lib/simplepay/support.rb", "lib/simplepay/support/amount.rb", "lib/simplepay/support/billing_frequency.rb", "lib/simplepay/support/boolean.rb", "lib/simplepay/support/currency.rb", "lib/simplepay/support/epoch.rb", "lib/simplepay/support/field.rb", "lib/simplepay/support/interval.rb", "lib/simplepay/support/subscription_period.rb", "script/console", "script/destroy", "script/generate", "simplepay.gemspec", "test/simplepay/helpers/test_notifier.rb", "test/simplepay/services/test_donation.rb", "test/simplepay/services/test_marketplace.rb", "test/simplepay/services/test_marketplace_policy.rb", "test/simplepay/services/test_standard.rb", "test/simplepay/services/test_subscription.rb", "test/simplepay/support/test_amount.rb", "test/simplepay/support/test_billing_frequency.rb", "test/simplepay/support/test_boolean.rb", "test/simplepay/support/test_epoch.rb", "test/simplepay/support/test_field.rb", "test/simplepay/support/test_interval.rb", "test/simplepay/support/test_subscription_period.rb", "test/simplepay/test_authentication.rb", "test/simplepay/test_service.rb", "test/test_helper.rb", "test/test_simplepay.rb"]
|
15
15
|
s.has_rdoc = true
|
16
16
|
s.homepage = %q{http://simplepay.rubyforge.org}
|
17
17
|
s.rdoc_options = ["--main", "README.rdoc"]
|
18
18
|
s.require_paths = ["lib"]
|
19
19
|
s.rubyforge_project = %q{simplepay}
|
20
|
-
s.rubygems_version = %q{1.3.
|
20
|
+
s.rubygems_version = %q{1.3.2}
|
21
21
|
s.signing_key = %q{/Users/nathan/.gem/gem-private_key.pem}
|
22
22
|
s.summary = %q{This gem provides a Rails interface to the Amazon Simple Pay payment service.}
|
23
|
-
s.test_files = ["test/simplepay/helpers/test_notifier.rb", "test/simplepay/services/test_standard.rb", "test/simplepay/services/test_subscription.rb", "test/simplepay/support/test_amount.rb", "test/simplepay/support/test_billing_frequency.rb", "test/simplepay/support/test_boolean.rb", "test/simplepay/support/test_epoch.rb", "test/simplepay/support/test_field.rb", "test/simplepay/support/test_interval.rb", "test/simplepay/support/test_subscription_period.rb", "test/simplepay/test_authentication.rb", "test/simplepay/test_service.rb", "test/test_helper.rb", "test/test_simplepay.rb"]
|
23
|
+
s.test_files = ["test/simplepay/helpers/test_notifier.rb", "test/simplepay/services/test_donation.rb", "test/simplepay/services/test_marketplace.rb", "test/simplepay/services/test_marketplace_policy.rb", "test/simplepay/services/test_standard.rb", "test/simplepay/services/test_subscription.rb", "test/simplepay/support/test_amount.rb", "test/simplepay/support/test_billing_frequency.rb", "test/simplepay/support/test_boolean.rb", "test/simplepay/support/test_epoch.rb", "test/simplepay/support/test_field.rb", "test/simplepay/support/test_interval.rb", "test/simplepay/support/test_subscription_period.rb", "test/simplepay/test_authentication.rb", "test/simplepay/test_service.rb", "test/test_helper.rb", "test/test_simplepay.rb"]
|
24
24
|
|
25
25
|
if s.respond_to? :specification_version then
|
26
26
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
27
|
-
s.specification_version =
|
27
|
+
s.specification_version = 3
|
28
28
|
|
29
29
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
30
30
|
s.add_runtime_dependency(%q<activesupport>, [">= 2.0.2"])
|
31
|
-
s.add_development_dependency(%q<newgem>, [">= 1.
|
31
|
+
s.add_development_dependency(%q<newgem>, [">= 1.3.0"])
|
32
32
|
s.add_development_dependency(%q<hoe>, [">= 1.8.0"])
|
33
33
|
else
|
34
34
|
s.add_dependency(%q<activesupport>, [">= 2.0.2"])
|
35
|
-
s.add_dependency(%q<newgem>, [">= 1.
|
35
|
+
s.add_dependency(%q<newgem>, [">= 1.3.0"])
|
36
36
|
s.add_dependency(%q<hoe>, [">= 1.8.0"])
|
37
37
|
end
|
38
38
|
else
|
39
39
|
s.add_dependency(%q<activesupport>, [">= 2.0.2"])
|
40
|
-
s.add_dependency(%q<newgem>, [">= 1.
|
40
|
+
s.add_dependency(%q<newgem>, [">= 1.3.0"])
|
41
41
|
s.add_dependency(%q<hoe>, [">= 1.8.0"])
|
42
42
|
end
|
43
43
|
end
|
@@ -0,0 +1,85 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../test_helper'
|
2
|
+
require 'simplepay/services/donation'
|
3
|
+
|
4
|
+
class Simplepay::Services::TestDonation < Test::Unit::TestCase
|
5
|
+
|
6
|
+
def self.model_class; Simplepay::Services::Donation; end
|
7
|
+
|
8
|
+
context 'Simplepay::Services::Donation' do
|
9
|
+
|
10
|
+
should_have_service_field :access_key,
|
11
|
+
:as => 'accessKey',
|
12
|
+
:required => true
|
13
|
+
|
14
|
+
should_have_service_field :signature,
|
15
|
+
:as => 'signature',
|
16
|
+
:required => true
|
17
|
+
|
18
|
+
should_have_service_field :account_id,
|
19
|
+
:as => 'amazonPaymentsAccountId',
|
20
|
+
:required => true
|
21
|
+
|
22
|
+
should_have_service_field :description,
|
23
|
+
:as => 'description',
|
24
|
+
:required => true
|
25
|
+
|
26
|
+
should_have_service_field :amount,
|
27
|
+
:as => 'amount',
|
28
|
+
:required => true,
|
29
|
+
:class => Simplepay::Support::Amount
|
30
|
+
|
31
|
+
should_have_service_field :recipient_email,
|
32
|
+
:as => 'recipientEmail',
|
33
|
+
:required => false
|
34
|
+
|
35
|
+
should_have_service_field :fixed_marketplace_fee,
|
36
|
+
:as => 'fixedMarketplaceFee',
|
37
|
+
:required => false,
|
38
|
+
:class => Simplepay::Support::Amount
|
39
|
+
|
40
|
+
should_have_service_field :variable_marketplace_fee,
|
41
|
+
:as => 'variableMarketplaceFee',
|
42
|
+
:required => false
|
43
|
+
|
44
|
+
should_have_service_field :cobranding_style,
|
45
|
+
:as => 'cobrandingStyle',
|
46
|
+
:required => true
|
47
|
+
|
48
|
+
should_have_service_field :reference_id,
|
49
|
+
:as => 'referenceId',
|
50
|
+
:required => false
|
51
|
+
|
52
|
+
should_have_service_field :immediate_return,
|
53
|
+
:as => 'immediateReturn',
|
54
|
+
:required => false,
|
55
|
+
:class => Simplepay::Support::Boolean
|
56
|
+
|
57
|
+
should_have_service_field :collect_shipping_address,
|
58
|
+
:as => 'collectShippingAddress',
|
59
|
+
:required => false,
|
60
|
+
:class => Simplepay::Support::Boolean
|
61
|
+
|
62
|
+
should_have_service_field :process_immediately,
|
63
|
+
:as => 'processImmediate',
|
64
|
+
:required => false,
|
65
|
+
:class => Simplepay::Support::Boolean
|
66
|
+
|
67
|
+
should_have_service_field :return_url,
|
68
|
+
:as => 'returnUrl',
|
69
|
+
:required => false
|
70
|
+
|
71
|
+
should_have_service_field :abandon_url,
|
72
|
+
:as => 'abandonUrl',
|
73
|
+
:required => false
|
74
|
+
|
75
|
+
should_have_service_field :ipn_url,
|
76
|
+
:as => 'ipnUrl',
|
77
|
+
:required => false
|
78
|
+
|
79
|
+
should_have_service_field :donation_widget,
|
80
|
+
:as => 'isDonationWidget',
|
81
|
+
:required => true
|
82
|
+
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simplepay
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathaniel E. Bibler
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
30
30
|
DXxToz6dXyCgpN1XYMMB+A==
|
31
31
|
-----END CERTIFICATE-----
|
32
32
|
|
33
|
-
date: 2009-
|
33
|
+
date: 2009-06-07 00:00:00 -04:00
|
34
34
|
default_executable:
|
35
35
|
dependencies:
|
36
36
|
- !ruby/object:Gem::Dependency
|
@@ -51,7 +51,7 @@ dependencies:
|
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 1.
|
54
|
+
version: 1.3.0
|
55
55
|
version:
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: hoe
|
@@ -88,6 +88,7 @@ files:
|
|
88
88
|
- lib/simplepay/helpers/rails_helper.rb
|
89
89
|
- lib/simplepay/rails.rb
|
90
90
|
- lib/simplepay/service.rb
|
91
|
+
- lib/simplepay/services/donation.rb
|
91
92
|
- lib/simplepay/services/marketplace.rb
|
92
93
|
- lib/simplepay/services/marketplace_policy.rb
|
93
94
|
- lib/simplepay/services/standard.rb
|
@@ -106,6 +107,7 @@ files:
|
|
106
107
|
- script/generate
|
107
108
|
- simplepay.gemspec
|
108
109
|
- test/simplepay/helpers/test_notifier.rb
|
110
|
+
- test/simplepay/services/test_donation.rb
|
109
111
|
- test/simplepay/services/test_marketplace.rb
|
110
112
|
- test/simplepay/services/test_marketplace_policy.rb
|
111
113
|
- test/simplepay/services/test_standard.rb
|
@@ -123,6 +125,8 @@ files:
|
|
123
125
|
- test/test_simplepay.rb
|
124
126
|
has_rdoc: true
|
125
127
|
homepage: http://simplepay.rubyforge.org
|
128
|
+
licenses: []
|
129
|
+
|
126
130
|
post_install_message:
|
127
131
|
rdoc_options:
|
128
132
|
- --main
|
@@ -144,12 +148,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
148
|
requirements: []
|
145
149
|
|
146
150
|
rubyforge_project: simplepay
|
147
|
-
rubygems_version: 1.3.
|
151
|
+
rubygems_version: 1.3.2
|
148
152
|
signing_key:
|
149
|
-
specification_version:
|
153
|
+
specification_version: 3
|
150
154
|
summary: This gem provides a Rails interface to the Amazon Simple Pay payment service.
|
151
155
|
test_files:
|
152
156
|
- test/simplepay/helpers/test_notifier.rb
|
157
|
+
- test/simplepay/services/test_donation.rb
|
153
158
|
- test/simplepay/services/test_marketplace.rb
|
154
159
|
- test/simplepay/services/test_marketplace_policy.rb
|
155
160
|
- test/simplepay/services/test_standard.rb
|
metadata.gz.sig
CHANGED
Binary file
|