forked from nedden/wirecard_checkout_page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
24 lines (20 loc) · 790 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# vim: set filetype=ruby et sw=2 ts=2:
require 'gem_hadar'
GemHadar do
name 'wirecard_checkout_page'
author 'Florian Frank'
email '[email protected]'
homepage "http://flori.github.com/#{name}"
summary 'Library for using Wirecard Checkout Page'
description 'This library allows you to use the Wirecard Checkout Page service.'
test_dir 'tests'
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', 'coverage', '.rvmrc', '.AppleDouble', '.DS_Store', '.envrc'
readme 'README.md'
title "#{name.camelize} -- Wirecard Checkout Page implementation"
licenses << 'Apache-2.0'
dependency 'typhoeus'
development_dependency 'rake'
development_dependency 'simplecov'
development_dependency 'rspec'
end
task :default => :spec