fingertips-adyen 0.3.7.20100917
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/.gitignore +8 -0
- data/LICENSE +20 -0
- data/README.rdoc +40 -0
- data/Rakefile +5 -0
- data/adyen.gemspec +30 -0
- data/init.rb +1 -0
- data/lib/adyen.rb +77 -0
- data/lib/adyen/api.rb +343 -0
- data/lib/adyen/encoding.rb +21 -0
- data/lib/adyen/form.rb +336 -0
- data/lib/adyen/formatter.rb +37 -0
- data/lib/adyen/matchers.rb +105 -0
- data/lib/adyen/notification.rb +151 -0
- data/spec/adyen_spec.rb +86 -0
- data/spec/api_spec.rb +562 -0
- data/spec/form_spec.rb +152 -0
- data/spec/notification_spec.rb +97 -0
- data/spec/spec_helper.rb +12 -0
- data/tasks/github-gem.rake +371 -0
- metadata +132 -0
metadata
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fingertips-adyen
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 40201761
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 3
|
9
|
+
- 7
|
10
|
+
- 20100917
|
11
|
+
version: 0.3.7.20100917
|
12
|
+
platform: ruby
|
13
|
+
authors:
|
14
|
+
- Willem van Bergen
|
15
|
+
- Michel Barbosa
|
16
|
+
- Eloy Duran
|
17
|
+
autorequire:
|
18
|
+
bindir: bin
|
19
|
+
cert_chain: []
|
20
|
+
|
21
|
+
date: 2010-07-21 00:00:00 +02:00
|
22
|
+
default_executable:
|
23
|
+
dependencies:
|
24
|
+
- !ruby/object:Gem::Dependency
|
25
|
+
name: rspec
|
26
|
+
prerelease: false
|
27
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
hash: 27
|
33
|
+
segments:
|
34
|
+
- 1
|
35
|
+
- 1
|
36
|
+
- 4
|
37
|
+
version: 1.1.4
|
38
|
+
type: :development
|
39
|
+
version_requirements: *id001
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: git
|
42
|
+
prerelease: false
|
43
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
44
|
+
none: false
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
hash: 19
|
49
|
+
segments:
|
50
|
+
- 1
|
51
|
+
- 1
|
52
|
+
- 0
|
53
|
+
version: 1.1.0
|
54
|
+
type: :development
|
55
|
+
version_requirements: *id002
|
56
|
+
description: " Package to simplify including the Adyen payments services into a Ruby on Rails application.\n The package provides functionality to create payment forms, handling and storing notifications \n sent by Adyen and consuming the SOAP services provided by Adyen. Moreover, it contains helper\n methods, mocks and matchers to simpify writing tests/specsfor your code.\n"
|
57
|
+
email:
|
58
|
+
- willem@vanbergen.org
|
59
|
+
- cicaboo@gmail.com
|
60
|
+
- eloy.de.enige@gmail.com
|
61
|
+
executables: []
|
62
|
+
|
63
|
+
extensions: []
|
64
|
+
|
65
|
+
extra_rdoc_files:
|
66
|
+
- README.rdoc
|
67
|
+
files:
|
68
|
+
- spec/spec_helper.rb
|
69
|
+
- spec/adyen_spec.rb
|
70
|
+
- lib/adyen/form.rb
|
71
|
+
- .gitignore
|
72
|
+
- spec/notification_spec.rb
|
73
|
+
- lib/adyen/api.rb
|
74
|
+
- LICENSE
|
75
|
+
- spec/api_spec.rb
|
76
|
+
- init.rb
|
77
|
+
- adyen.gemspec
|
78
|
+
- Rakefile
|
79
|
+
- spec/form_spec.rb
|
80
|
+
- README.rdoc
|
81
|
+
- lib/adyen/notification.rb
|
82
|
+
- lib/adyen/formatter.rb
|
83
|
+
- tasks/github-gem.rake
|
84
|
+
- lib/adyen/encoding.rb
|
85
|
+
- lib/adyen/matchers.rb
|
86
|
+
- lib/adyen.rb
|
87
|
+
has_rdoc: true
|
88
|
+
homepage: http://wiki.github.com/wvanbergen/adyen
|
89
|
+
licenses: []
|
90
|
+
|
91
|
+
post_install_message:
|
92
|
+
rdoc_options:
|
93
|
+
- --title
|
94
|
+
- fingertips-adyen
|
95
|
+
- --main
|
96
|
+
- README.rdoc
|
97
|
+
- --line-numbers
|
98
|
+
- --inline-source
|
99
|
+
require_paths:
|
100
|
+
- lib
|
101
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
102
|
+
none: false
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
hash: 3
|
107
|
+
segments:
|
108
|
+
- 0
|
109
|
+
version: "0"
|
110
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
|
+
none: false
|
112
|
+
requirements:
|
113
|
+
- - ">="
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
hash: 3
|
116
|
+
segments:
|
117
|
+
- 0
|
118
|
+
version: "0"
|
119
|
+
requirements:
|
120
|
+
- Handsoap is required for accessing the SOAP services. See http://github.com/troelskn/handsoap.
|
121
|
+
- LibXML is required for using the RSpec matchers.
|
122
|
+
- ActiveRecord is required for storing the notifications in your database.
|
123
|
+
rubyforge_project:
|
124
|
+
rubygems_version: 1.3.7
|
125
|
+
signing_key:
|
126
|
+
specification_version: 3
|
127
|
+
summary: Integrate Adyen payment services in you Ruby on Rails application.
|
128
|
+
test_files:
|
129
|
+
- spec/adyen_spec.rb
|
130
|
+
- spec/notification_spec.rb
|
131
|
+
- spec/api_spec.rb
|
132
|
+
- spec/form_spec.rb
|