forked from anujaware/active_merchant_payu_in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactive_merchant_payu_in.gemspec
36 lines (32 loc) · 1.39 KB
/
active_merchant_payu_in.gemspec
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "active_merchant/payu_in/version"
Gem::Specification.new do |s|
s.name = "active_merchant_payu_in"
s.version = ActiveMerchant::Billing::Integrations::PayuIn::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ram Singla"]
s.email = ["[email protected]"]
s.homepage = "http://www.payu.in"
s.summary = %q{PayU.in Payment Gateweay Integration Kit}
s.description = %q{PayU.in Payment Gateway integration for ActiveMerchant}
s.rubyforge_project = "active_merchant_payu_in"
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"]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, ["~> 2.7.0"])
s.add_runtime_dependency(%q<activemerchant>, ["~> 1.8"])
else
s.add_dependency(%q<rspec>, ["~> 2.7.0"])
s.add_dependency(%q<activemerchant>, ["~> 1.8"])
end
else
s.add_dependency(%q<rspec>, ["~> 2.7.0"])
s.add_dependency(%q<activemerchant>, ["~> 1.8"])
end
end