-
Notifications
You must be signed in to change notification settings - Fork 20
/
rubill.gemspec
32 lines (30 loc) · 1.13 KB
/
rubill.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
30
31
32
Gem::Specification.new do |s|
s.name = 'rubill'
s.version = '0.1.5'
s.date = '2014-09-31'
s.summary = "Interface with Bill.com"
s.description = "A Ruby interface to Bill.com's API"
s.authors = ["Andrew Taber"]
s.email = '[email protected]'
s.files = [
"lib/rubill.rb",
"lib/rubill/session.rb",
"lib/rubill/query.rb",
"lib/rubill/base.rb",
"lib/rubill/bill.rb",
"lib/rubill/bill_payment.rb",
"lib/rubill/invoice.rb",
"lib/rubill/sent_payment.rb",
"lib/rubill/sent_bill_payment.rb",
"lib/rubill/received_payment.rb",
"lib/rubill/vendor.rb",
"lib/rubill/customer.rb",
"lib/rubill/customer_contact.rb",
]
s.homepage = 'http://rubygems.org/gems/rubill'
s.license = 'MIT'
s.add_dependency "httmultiparty"
s.add_dependency "json"
s.add_development_dependency "rspec"
s.add_development_dependency "rake"
end