forked from heavenstudio/pag_seguro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpag_seguro.gemspec
More file actions
26 lines (23 loc) · 947 Bytes
/
Copy pathpag_seguro.gemspec
File metadata and controls
26 lines (23 loc) · 947 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
25
26
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pag_seguro/version"
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "pag_seguro"
s.version = PagSeguro::VERSION
s.authors = ["Stefano Diem Benatti"]
s.email = ["stefano.diem@gmail.com"]
s.homepage = "http://github.com/heavenstudio/pag_seguro"
s.summary = %q{A ruby gem to handle PagSeguro's API version 2}
s.required_ruby_version = '>= 1.9.2'
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"]
s.has_rdoc = false
s.add_dependency('activemodel')
s.add_dependency('activesupport')
s.add_dependency('haml', '!= 3.1.5')
s.add_dependency('nokogiri')
s.add_dependency('rest-client', '~> 1.6.7')
end