Skip to content

Commit

Permalink
Bundler + Gem
Browse files Browse the repository at this point in the history
  • Loading branch information
tritonrc committed May 25, 2011
1 parent 75e408e commit ce93010
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
# Mac OS X
.DS_Store

# Bundler & Gem
pkg/*
*.gem
.bundle

# Vim
*.un~
*.swp
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in ..gemspec
gemspec
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
require 'bundler'
Bundler::GemHelper.install_tasks
1 change: 1 addition & 0 deletions lib/paypal_adaptive_gateway.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require 'active_merchant/billing/gateways/paypal_adaptive_payment'
3 changes: 3 additions & 0 deletions lib/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module PaypalAdaptiveGateway
VERSION = "0.0.1"
end
19 changes: 19 additions & 0 deletions paypal_adaptive_gateway.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "version"

Gem::Specification.new do |s|
s.name = "paypal_adaptive_gateway"
s.version = PaypalAdaptiveGateway::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["TODO: Write your name"]
s.email = ["TODO: Write your email address"]
s.homepage = ""
s.summary = %q{TODO: Write a gem summary}
s.description = %q{TODO: Write a gem description}

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end

0 comments on commit ce93010

Please sign in to comment.