activemerchant 1.7.0 → 1.7.1

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 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]
@@ -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
@@ -1,3 +1,3 @@
1
1
  module ActiveMerchant
2
- VERSION = "1.7.0"
2
+ VERSION = "1.7.1"
3
3
  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: 11
4
+ hash: 9
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 7
9
- - 0
10
- version: 1.7.0
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-09 00:00:00 -04:00
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