forked from lyonrb/payme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
38 lines (35 loc) · 850 Bytes
/
Rakefile
File metadata and controls
38 lines (35 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# encoding: UTF-8
require "rubygems"
require "bundler"
Bundler.setup
#
# The rspec tasks
#
require 'rspec/core'
require 'rspec/core/rake_task'
task :default => :spec
RSpec::Core::RakeTask.new(:spec)
#
# Jeweler
#
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "payme"
gemspec.summary = "Process online payments through the Atos Worldline gateway"
gemspec.description = "Need online payment?"
gemspec.email = "damien.mathieu@lim.eu"
gemspec.homepage = "http://github.com/LIMSAS/payme"
gemspec.authors = ["LIM SAS", "Damien MATHIEU", "Julien SANCHEZ", "Hervé GAUCHER"]
end
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end
#
# SDoc
#
begin
require 'sdoc_helpers'
rescue LoadError
puts "sdoc support not enabled. Please gem install sdoc-helpers."
end