activemerchant 1.7.0 → 1.7.1
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/CHANGELOG +4 -0
- data/lib/active_merchant.rb +8 -0
- data/lib/active_merchant/billing/integrations/action_view_helper.rb +1 -1
- data/lib/active_merchant/version.rb +1 -1
- metadata +5 -5
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
Binary file
|
data/CHANGELOG
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
= ActiveMerchant CHANGELOG
|
2
2
|
|
3
|
+
== Version 1.7.1 (July 28, 2010)
|
4
|
+
|
5
|
+
* Pull in only the necessary components of Active Support. Enables use of ActiveMerchant with Rails 3 [railsjedi]
|
6
|
+
|
3
7
|
== Version 1.7.0 (July 9, 2010)
|
4
8
|
|
5
9
|
* Add support for new Braintree Blue Gateway (using the braintree gem) [Braintree]
|
data/lib/active_merchant.rb
CHANGED
@@ -24,6 +24,14 @@
|
|
24
24
|
$:.unshift File.dirname(__FILE__)
|
25
25
|
|
26
26
|
require 'active_support'
|
27
|
+
require 'active_support/core_ext/hash/indifferent_access'
|
28
|
+
require 'active_support/core_ext/class/inheritable_attributes'
|
29
|
+
require 'active_support/core_ext/class/attribute_accessors'
|
30
|
+
require 'active_support/core_ext/class/delegating_attributes'
|
31
|
+
require 'active_support/core_ext/module/attribute_accessors'
|
32
|
+
require 'active_support/core_ext/kernel/requires'
|
33
|
+
require 'active_support/inflector'
|
34
|
+
|
27
35
|
require 'builder'
|
28
36
|
require 'cgi'
|
29
37
|
require 'rexml/document'
|
@@ -71,7 +71,7 @@ module ActiveMerchant #:nodoc:
|
|
71
71
|
|
72
72
|
private
|
73
73
|
def ignore_binding?
|
74
|
-
ActionPack::VERSION::MAJOR >= 2 && ActionPack::VERSION::MINOR >= 2
|
74
|
+
ActionPack::VERSION::MAJOR >= 3 || (ActionPack::VERSION::MAJOR >= 2 && ActionPack::VERSION::MINOR >= 2)
|
75
75
|
end
|
76
76
|
end
|
77
77
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activemerchant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 7
|
9
|
-
-
|
10
|
-
version: 1.7.
|
9
|
+
- 1
|
10
|
+
version: 1.7.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Tobias Luetke
|
@@ -36,7 +36,7 @@ cert_chain:
|
|
36
36
|
hPaSTyVU0yCSnw==
|
37
37
|
-----END CERTIFICATE-----
|
38
38
|
|
39
|
-
date: 2010-07-
|
39
|
+
date: 2010-07-28 00:00:00 -04:00
|
40
40
|
default_executable:
|
41
41
|
dependencies:
|
42
42
|
- !ruby/object:Gem::Dependency
|
@@ -45,7 +45,7 @@ dependencies:
|
|
45
45
|
requirement: &id001 !ruby/object:Gem::Requirement
|
46
46
|
none: false
|
47
47
|
requirements:
|
48
|
-
- -
|
48
|
+
- - ">="
|
49
49
|
- !ruby/object:Gem::Version
|
50
50
|
hash: 7
|
51
51
|
segments:
|
metadata.gz.sig
CHANGED
Binary file
|