From 88bd9db6bf4274f9fa47069c190eebf8b9b92940 Mon Sep 17 00:00:00 2001 From: Dennis Theisen Date: Tue, 6 Jul 2010 10:19:22 -0400 Subject: [PATCH] Added braintree gem as an official dependency to support the new 'Blue' platform and updated Changelog and Contributors accordingly. --- CHANGELOG | 1 + CONTRIBUTORS | 6 +++++- activemerchant.gemspec | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index b915f849d99..4e4ada571c6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,6 @@ = ActiveMerchant CHANGELOG +* Add support for new Braintree Blue Gateway (using the braintree gem) [Braintree] * Add a task rake gateways:hosts to get a list of all outbound hosts and ports [cody] * Fix test failure in chronopay helper in Ruby 1.9.1 [cody] * Fix timezone issue in credit card test. [cody] diff --git a/CONTRIBUTORS b/CONTRIBUTORS index daf6cadcbf5..5d67f986094 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -135,4 +135,8 @@ SallieMae (October 2, 2009) Garanti (May 05, 2010) -* Selem Delul (moon@mac.home) \ No newline at end of file +* Selem Delul (moon@mac.home) + +Braintree Blue Gateway (May 19th, 2010) + +* Braintree (code@getbraintree.com) \ No newline at end of file diff --git a/activemerchant.gemspec b/activemerchant.gemspec index 25e540eb689..55fc56c1627 100644 --- a/activemerchant.gemspec +++ b/activemerchant.gemspec @@ -17,6 +17,7 @@ Gem::Specification.new do |s| s.add_dependency('activesupport', '>= 2.3.2') s.add_dependency('builder', '>= 2.0.0') + s.add_dependency('braintree', '>= 2.0.0') s.signing_key = ENV['GEM_PRIVATE_KEY'] s.cert_chain = ['gem-public_cert.pem']