-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsermepa.gemspec
More file actions
24 lines (19 loc) · 786 Bytes
/
sermepa.gemspec
File metadata and controls
24 lines (19 loc) · 786 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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "sermepa/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "sermepa"
s.version = Sermepa::VERSION
s.authors = ["Endika Gutiérrez"]
s.email = ["me@endika.net"]
s.homepage = "https://github.com/endSly/sermepa-rails"
s.summary = "Sermepa gateway for rails."
s.description = "Sermepa is a spanish payments gateway"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "activesupport", "~> 3.0"
s.add_dependency "savon", "~> 1.2.0"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rake", "0.9"
end