forked from rightsignature/rightsignature-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rightsignature-api.gemspec
26 lines (22 loc) · 973 Bytes
/
rightsignature-api.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rightsignature/version"
Gem::Specification.new do |s|
s.name = "rightsignature"
s.version = RightSignature::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Alex Chee", "Geoff Ereth", "Cary Dunn"]
s.email = ["dev@rightsignature.com"]
s.homepage = "http://github.com/rightsignature/rightsignature-api"
s.summary = "API wrapper for RightSignature"
s.description = "Provides a wrapper for the RightSignature API."
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "rspec", ">= 2.11.0"
s.add_dependency "bundler", ">= 1.0.0"
s.add_dependency "oauth", ">= 0.4.0"
s.add_dependency "httparty", ">= 0.9.0"
s.add_dependency 'xml-fu', '>= 0.1.7'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_path = 'lib'
end