forked from wvanbergen/adyen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadyen.gemspec
More file actions
34 lines (27 loc) · 1.88 KB
/
adyen.gemspec
File metadata and controls
34 lines (27 loc) · 1.88 KB
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
Gem::Specification.new do |s|
s.name = 'adyen'
s.version = "0.3.8"
s.date = "2010-09-23"
s.summary = "Integrate Adyen payment services in your Ruby on Rails application."
s.description = <<-EOS
Package to simplify including the Adyen payments services into a Ruby on Rails application.
The package provides functionality to create payment forms, handling and storing notifications
sent by Adyen and consuming the SOAP services provided by Adyen. Moreover, it contains helper
methods, mocks and matchers to simpify writing tests/specsfor your code.
EOS
s.authors = ['Willem van Bergen', 'Michel Barbosa', 'Stefan Borsje', 'Eloy Duran']
s.email = ['willem@vanbergen.org', 'cicaboo@gmail.com', 'mail@sborsje.nl', 'eloy.de.enige@gmail.com']
s.homepage = 'http://github.com/wvanbergen/adyen/wiki'
s.add_development_dependency('rake')
s.add_development_dependency('rspec', '~> 2.0')
# Drop or make runtime dependency.
s.add_development_dependency('activerecord')
s.add_development_dependency('handsoap')
s.add_development_dependency('nokogiri')
s.requirements << 'Handsoap is required for accessing the SOAP services. See http://github.com/troelskn/handsoap.'
s.requirements << 'ActiveRecord is required for storing the notifications in your database.'
s.rdoc_options << '--title' << s.name << '--main' << 'README.rdoc' << '--line-numbers' << '--inline-source'
s.extra_rdoc_files = ['README.rdoc']
s.files = %w(spec/spec_helper.rb spec/adyen_spec.rb lib/adyen/form.rb .gitignore spec/notification_spec.rb lib/adyen/soap.rb LICENSE spec/soap_spec.rb init.rb adyen.gemspec Rakefile spec/form_spec.rb README.rdoc lib/adyen/notification.rb lib/adyen/formatter.rb tasks/github-gem.rake lib/adyen/encoding.rb TODO lib/adyen/matchers.rb lib/adyen.rb)
s.test_files = %w(spec/adyen_spec.rb spec/notification_spec.rb spec/soap_spec.rb spec/form_spec.rb)
end