diff options
author | jessib <jessib@leap.se> | 2013-03-07 12:17:13 -0800 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-17 10:46:25 +0200 |
commit | 2e59c7131a08acab4944b18ba4b8d82daa402c4f (patch) | |
tree | 28d33392410b4619ad553fb75f1d056584445fa5 /billing/leap_web_billing.gemspec | |
parent | 97bd0ba4b35481216b2a1592065c70562c81c2d5 (diff) |
Start to branch using braintree to process credit card payments.
Diffstat (limited to 'billing/leap_web_billing.gemspec')
-rw-r--r-- | billing/leap_web_billing.gemspec | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/billing/leap_web_billing.gemspec b/billing/leap_web_billing.gemspec new file mode 100644 index 0000000..c3b4bdd --- /dev/null +++ b/billing/leap_web_billing.gemspec @@ -0,0 +1,20 @@ +$:.push File.expand_path("../lib", __FILE__) + +require File.expand_path('../../lib/leap_web/version.rb', __FILE__) + +# Describe your gem and declare its dependencies: +Gem::Specification.new do |s| + s.name = "leap_web_billing" + s.version = LeapWeb::VERSION + s.authors = ["Jessib"] + s.email = ["jessib@leap.se"] + s.homepage = "http://www.leap.se" + s.summary = "Billing for LeapWeb" + s.description = "Billing System for a Leap provider" + + s.files = Dir["{app,config,db,lib}/**/*"] + ["Rakefile", "Readme.md"] + s.test_files = Dir["test/**/*"] + + s.add_dependency "leap_web_core", LeapWeb::VERSION + s.add_dependency "braintree-rails", "~> 0.4.5" +end |