active_merchant_ideal 0.1.0
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/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.textile +43 -0
- data/Rakefile +50 -0
- data/VERSION +1 -0
- data/active_merchant_ideal.gemspec +63 -0
- data/init.rb +1 -0
- data/lib/active_merchant_ideal/ideal.rb +493 -0
- data/lib/active_merchant_ideal/ideal_response.rb +219 -0
- data/lib/active_merchant_ideal.rb +3 -0
- data/test/fixtures.yml +12 -0
- data/test/helper.rb +143 -0
- data/test/remote_ideal_test.rb +138 -0
- data/test/test_active_merchant_ideal.rb +704 -0
- metadata +106 -0
metadata
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: active_merchant_ideal
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
version: 0.1.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Soemirno Kartosoewito, Matthijs Kadijk, Aloy Duran, Frank Oxener
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-03-23 00:00:00 +01:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: active_merchant
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 1
|
29
|
+
- 5
|
30
|
+
- 1
|
31
|
+
version: 1.5.1
|
32
|
+
type: :runtime
|
33
|
+
version_requirements: *id001
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: mocha
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
segments:
|
42
|
+
- 0
|
43
|
+
- 9
|
44
|
+
- 7
|
45
|
+
version: 0.9.7
|
46
|
+
type: :development
|
47
|
+
version_requirements: *id002
|
48
|
+
description: iDEAL payment gateway for ActiveMerchant (see http://www.ideal.nl and http://www.activemerchant.org/)
|
49
|
+
email: frank.oxener@gmail.com
|
50
|
+
executables: []
|
51
|
+
|
52
|
+
extensions: []
|
53
|
+
|
54
|
+
extra_rdoc_files:
|
55
|
+
- LICENSE
|
56
|
+
- README.textile
|
57
|
+
files:
|
58
|
+
- .document
|
59
|
+
- .gitignore
|
60
|
+
- LICENSE
|
61
|
+
- README.textile
|
62
|
+
- Rakefile
|
63
|
+
- VERSION
|
64
|
+
- active_merchant_ideal.gemspec
|
65
|
+
- init.rb
|
66
|
+
- lib/active_merchant_ideal.rb
|
67
|
+
- lib/active_merchant_ideal/ideal.rb
|
68
|
+
- lib/active_merchant_ideal/ideal_response.rb
|
69
|
+
- test/fixtures.yml
|
70
|
+
- test/helper.rb
|
71
|
+
- test/remote_ideal_test.rb
|
72
|
+
- test/test_active_merchant_ideal.rb
|
73
|
+
has_rdoc: true
|
74
|
+
homepage: http://github.com/dovadi/active_merchant_ideal
|
75
|
+
licenses: []
|
76
|
+
|
77
|
+
post_install_message:
|
78
|
+
rdoc_options:
|
79
|
+
- --charset=UTF-8
|
80
|
+
require_paths:
|
81
|
+
- lib
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
segments:
|
87
|
+
- 0
|
88
|
+
version: "0"
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
segments:
|
94
|
+
- 0
|
95
|
+
version: "0"
|
96
|
+
requirements: []
|
97
|
+
|
98
|
+
rubyforge_project:
|
99
|
+
rubygems_version: 1.3.6
|
100
|
+
signing_key:
|
101
|
+
specification_version: 3
|
102
|
+
summary: iDEAL gateway for ActiveMerchant
|
103
|
+
test_files:
|
104
|
+
- test/helper.rb
|
105
|
+
- test/remote_ideal_test.rb
|
106
|
+
- test/test_active_merchant_ideal.rb
|