Skip to content

Commit

Permalink
Gemify the plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit Garret committed Jun 23, 2011
1 parent cca9e3a commit 7be9c5f
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.gem
6 changes: 5 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ It's a Ruby on Rails port of the connexion kits published by the bank.

## INSTALL

script/plugin install git://github.com/novelys/paiementcic.git
script/plugin install git://github.com/novelys/paiementcic.git

or, in your Gemfile

gem 'paiement_cic', :git => 'git://github.com/novelys/paiementcic.git', :branch => 'gem'

## USAGE

Expand Down
3 changes: 3 additions & 0 deletions lib/paiement_cic/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class PaiementCic
VERSION = "0.1"
end
16 changes: 16 additions & 0 deletions paiement_cic.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require "paiement_cic/version"

Gem::Specification.new do |s|
s.name = "paiement_cic"
s.version = PaiementCic::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Novelys Team"]
s.homepage = "https://github.com/novelys/paiementcic"
s.summary = %q{CIC / Crédit Mutuel credit card payment toolbox}
s.description = %q{Paiement CIC is a gem to ease credit card payment with the CIC / Crédit Mutuel banks system. It's a Ruby on Rails port of the connexion kits published by the bank.}

s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
end

0 comments on commit 7be9c5f

Please sign in to comment.