forked from vysogot/przelewy24
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
24 lines (21 loc) · 924 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
require 'rake/testtask'
Rake::TestTask.new do |test|
test.pattern = 'test/**/*_test.rb'
test.libs << 'test'
end
begin
require "jeweler"
Jeweler::Tasks.new do |gem|
gem.name = "rails-przelewy24"
gem.homepage = "http://github.com/vysogot/przelewy24"
gem.summary = "This is a Rails engine to play with Polish payment service Przelewy24.pl"
gem.description = "Gem consist of a generator 'przelewy24'. Application that have products for sale finally sends the form to Przelewy24 service. All transaction security and verification is held by generated files and Przelewy24 side. For Rails 2.x use version 0.0.2"
gem.email = "[email protected]"
gem.authors = ["Jakub Godawa"]
gem.files = Dir["{lib}/**/*", "{app}/**/*", "{public}/**/*", "{config}/**/*"]
gem.rubyforge_project = "rails-p24"
end
Jeweler::GemcutterTasks.new
rescue
puts "Jeweler or dependency not available."
end