active_merchant_ideal 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
data/README.textile CHANGED
@@ -72,7 +72,7 @@ You can run the tests from this gem with (inside the active_merchant_ideal direc
72
72
  rake test
73
73
  </pre>
74
74
 
75
- h3. Run the remote tests
75
+ h3. Run the remote tests (For ING BANK only)
76
76
 
77
77
  * Create .active_merchant directory in your own home directory
78
78
  * Copy test/fixtures.yml to the .active_merchant directory
@@ -83,6 +83,10 @@ h3. Run the remote tests
83
83
  rake test:remote
84
84
  </pre>
85
85
 
86
+ h3. Compatibility
87
+
88
+ Active_merchant_ideal is tested with Ruby 1.8.7 and 1.9.2.
89
+
86
90
  h2. Example (Rails)
87
91
 
88
92
  h3. First configure the gateway
@@ -181,7 +185,7 @@ In 2007 this code was refactored as a patch for the ActiveMerchant library, this
181
185
 
182
186
  In 2009 Fingertips forked the ActiveMerchant library and added an iDEAL gateway (presumable based on the first ActiveMerchant patch) to a new ideal branch.
183
187
 
184
- In 2010 this code was extracted and converted into a separate gem, so it can be more easily used in combination with the latest version of ActiveMerchant. This library is just an extraction, nothing more and nothing less. There are no fundamental changes between the code from the ideal branch and the code of this gem. Later that year "Sernin van de Krol":http://github/companeidos added support for ABN AMRO.
188
+ In 2010 this code was extracted and converted into a separate gem, so it can be more easily used in combination with the latest version of ActiveMerchant. This library is just an extraction, nothing more and nothing less. There are no fundamental changes between the code from the ideal branch and the code of this gem. Later that year "Sernin van de Krol":http://github/companeidos added support for ABN AMRO.
185
189
 
186
190
  h2. Maintainer
187
191
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.5
1
+ 0.1.6
@@ -1,55 +1,53 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{active_merchant_ideal}
8
- s.version = "0.1.5"
8
+ s.version = "0.1.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Soemirno Kartosoewito, Matthijs Kadijk, Aloy Duran, Frank Oxener"]
12
- s.date = %q{2010-12-02}
12
+ s.date = %q{2010-12-08}
13
13
  s.description = %q{iDEAL payment gateway for ActiveMerchant (see http://www.ideal.nl and http://www.activemerchant.org/)}
14
14
  s.email = %q{frank.oxener@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
17
- "README.textile"
17
+ "README.textile"
18
18
  ]
19
19
  s.files = [
20
20
  ".document",
21
- ".gitignore",
22
- "LICENSE",
23
- "README.textile",
24
- "Rakefile",
25
- "VERSION",
26
- "active_merchant_ideal.gemspec",
27
- "init.rb",
28
- "lib/active_merchant_ideal.rb",
29
- "lib/active_merchant_ideal/acquirers.yml",
30
- "lib/active_merchant_ideal/ideal.rb",
31
- "lib/active_merchant_ideal/ideal_response.rb",
32
- "test/fixtures.yml",
33
- "test/helper.rb",
34
- "test/remote_ideal_test.rb",
35
- "test/test_active_merchant_ideal.rb"
21
+ "LICENSE",
22
+ "README.textile",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "active_merchant_ideal.gemspec",
26
+ "init.rb",
27
+ "lib/active_merchant_ideal.rb",
28
+ "lib/active_merchant_ideal/acquirers.yml",
29
+ "lib/active_merchant_ideal/ideal.rb",
30
+ "lib/active_merchant_ideal/ideal_response.rb",
31
+ "test/fixtures.yml",
32
+ "test/helper.rb",
33
+ "test/remote_ideal_test.rb",
34
+ "test/test_active_merchant_ideal.rb"
36
35
  ]
37
36
  s.homepage = %q{http://github.com/dovadi/active_merchant_ideal}
38
- s.rdoc_options = ["--charset=UTF-8"]
39
37
  s.require_paths = ["lib"]
40
- s.rubygems_version = %q{1.3.6}
38
+ s.rubygems_version = %q{1.3.7}
41
39
  s.summary = %q{iDEAL gateway for ActiveMerchant}
42
40
  s.test_files = [
43
41
  "test/helper.rb",
44
- "test/remote_ideal_test.rb",
45
- "test/test_active_merchant_ideal.rb"
42
+ "test/remote_ideal_test.rb",
43
+ "test/test_active_merchant_ideal.rb"
46
44
  ]
47
45
 
48
46
  if s.respond_to? :specification_version then
49
47
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
50
48
  s.specification_version = 3
51
49
 
52
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
50
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
53
51
  s.add_runtime_dependency(%q<activemerchant>, [">= 1.5.1"])
54
52
  s.add_development_dependency(%q<mocha>, [">= 0.9.7"])
55
53
  else
@@ -1,3 +1,6 @@
1
+ #!ruby19
2
+ # encoding: utf-8
3
+
1
4
  require 'openssl'
2
5
  require 'net/https'
3
6
  require 'base64'
@@ -1,3 +1,6 @@
1
+ #!ruby19
2
+ # encoding: utf-8
3
+
1
4
  require 'openssl'
2
5
  require 'base64'
3
6
  require 'rexml/document'
@@ -1,4 +1,7 @@
1
- require File.dirname(__FILE__) + '/helper'
1
+ #!ruby19
2
+ # encoding: utf-8
3
+
4
+ require File.expand_path(File.dirname(__FILE__)) + '/helper'
2
5
 
3
6
  class IdealTest < Test::Unit::TestCase
4
7
  def setup
@@ -1,4 +1,7 @@
1
- require File.dirname(__FILE__) + '/helper'
1
+ #!ruby19
2
+ # encoding: utf-8
3
+
4
+ require File.expand_path(File.dirname(__FILE__)) + '/helper'
2
5
 
3
6
  module IdealTestCases
4
7
  # This method is called at the end of the file when all fixture data has been loaded.
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 5
9
- version: 0.1.5
8
+ - 6
9
+ version: 0.1.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Soemirno Kartosoewito, Matthijs Kadijk, Aloy Duran, Frank Oxener
@@ -14,13 +14,14 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-12-02 00:00:00 +01:00
17
+ date: 2010-12-08 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: activemerchant
22
22
  prerelease: false
23
23
  requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
24
25
  requirements:
25
26
  - - ">="
26
27
  - !ruby/object:Gem::Version
@@ -35,6 +36,7 @@ dependencies:
35
36
  name: mocha
36
37
  prerelease: false
37
38
  requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
38
40
  requirements:
39
41
  - - ">="
40
42
  - !ruby/object:Gem::Version
@@ -56,7 +58,6 @@ extra_rdoc_files:
56
58
  - README.textile
57
59
  files:
58
60
  - .document
59
- - .gitignore
60
61
  - LICENSE
61
62
  - README.textile
62
63
  - Rakefile
@@ -76,11 +77,12 @@ homepage: http://github.com/dovadi/active_merchant_ideal
76
77
  licenses: []
77
78
 
78
79
  post_install_message:
79
- rdoc_options:
80
- - --charset=UTF-8
80
+ rdoc_options: []
81
+
81
82
  require_paths:
82
83
  - lib
83
84
  required_ruby_version: !ruby/object:Gem::Requirement
85
+ none: false
84
86
  requirements:
85
87
  - - ">="
86
88
  - !ruby/object:Gem::Version
@@ -88,6 +90,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
88
90
  - 0
89
91
  version: "0"
90
92
  required_rubygems_version: !ruby/object:Gem::Requirement
93
+ none: false
91
94
  requirements:
92
95
  - - ">="
93
96
  - !ruby/object:Gem::Version
@@ -97,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
100
  requirements: []
98
101
 
99
102
  rubyforge_project:
100
- rubygems_version: 1.3.6
103
+ rubygems_version: 1.3.7
101
104
  signing_key:
102
105
  specification_version: 3
103
106
  summary: iDEAL gateway for ActiveMerchant
data/.gitignore DELETED
@@ -1,21 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
-
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## PROJECT::GENERAL
17
- coverage
18
- rdoc
19
- pkg
20
-
21
- ## PROJECT::SPECIFIC