From 636692f9921bd695d726695d2d46c91f5a6e56f3 Mon Sep 17 00:00:00 2001 From: Azul Date: Fri, 11 Apr 2014 10:03:19 +0200 Subject: move engines into engines directory Also renamed help to support so it's harder to confuse it with documentation --- engines/billing/leap_web_billing.gemspec | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 engines/billing/leap_web_billing.gemspec (limited to 'engines/billing/leap_web_billing.gemspec') diff --git a/engines/billing/leap_web_billing.gemspec b/engines/billing/leap_web_billing.gemspec new file mode 100644 index 0000000..c6ac3f3 --- /dev/null +++ b/engines/billing/leap_web_billing.gemspec @@ -0,0 +1,21 @@ +$:.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 "braintree-rails", "~> 0.4.5" + s.add_dependency "braintree" + #s.add_dependency "carmen-rails" +end -- cgit v1.2.3 From 38558224e10f3fddba29aaa25397495a0fded263 Mon Sep 17 00:00:00 2001 From: Azul Date: Fri, 11 Apr 2014 10:06:02 +0200 Subject: minor: our engines do not have a db directory --- engines/billing/leap_web_billing.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/billing/leap_web_billing.gemspec') diff --git a/engines/billing/leap_web_billing.gemspec b/engines/billing/leap_web_billing.gemspec index c6ac3f3..ff11c98 100644 --- a/engines/billing/leap_web_billing.gemspec +++ b/engines/billing/leap_web_billing.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |s| s.summary = "Billing for LeapWeb" s.description = "Billing System for a Leap provider" - s.files = Dir["{app,config,db,lib}/**/*"] + ["Rakefile", "README.md"] + s.files = Dir["{app,config,lib}/**/*"] + ["Rakefile", "README.md"] s.test_files = Dir["test/**/*"] # s.add_dependency "braintree-rails", "~> 0.4.5" -- cgit v1.2.3