-
Notifications
You must be signed in to change notification settings - Fork 7
/
sermepa_web_tpv.gemspec
29 lines (23 loc) · 1.01 KB
/
sermepa_web_tpv.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
# -*- encoding : utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "sermepa_web_tpv/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "sermepa_web_tpv"
s.version = SermepaWebTpv::VERSION
s.authors = ["Ricard Forniol Agustí"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/ritxi/sermepa_web_tpv"
s.summary = "Add simple web tpv from sermepa to your rails application"
s.description = "Simple rails engine to add payments to your web application using sermepa standard web tpv"
s.files = Dir["{lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails"
s.add_dependency 'ruby-mcrypt'
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "fuubar"
s.add_development_dependency "nyan-cat-formatter"
s.add_development_dependency "pry-debugger"
end