-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhmcs-ruby.gemspec
More file actions
29 lines (21 loc) · 816 Bytes
/
whmcs-ruby.gemspec
File metadata and controls
29 lines (21 loc) · 816 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
27
28
29
$:.unshift 'lib'
require 'whmcs/version'
Gem::Specification.new do |s|
s.name = 'whmcs-ruby'
s.version = WHMCS::Version
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'whmcs-ruby: Ruby bindings for the WHMCS API'
s.homepage = 'https://github.com/dotblock/whmcs-ruby'
s.authors = ['Joshua Priddle']
s.email = 'jpriddle@nevercraft.net'
s.files = %w[ Rakefile README.markdown ]
s.files += Dir['lib/**/*']
s.files += Dir['test/**/*']
s.add_dependency('crack', '~> 0.4.0')
s.add_development_dependency('shoulda')
s.extra_rdoc_files = ['README.markdown']
s.rdoc_options = ["--charset=UTF-8"]
s.description = <<-DESC
whmcs-ruby: Ruby bindings for the WHMCS API
DESC
end