forked from NetSweet/netsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetsuite.gemspec
23 lines (19 loc) · 923 Bytes
/
netsuite.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/netsuite/version', __FILE__)
Gem::Specification.new do |gem|
gem.licenses = ['MIT']
gem.authors = ['Ryan Moran', 'Michael Bianco']
gem.email = ['[email protected]', '[email protected]']
gem.description = %q{NetSuite SuiteTalk API Wrapper}
gem.summary = %q{NetSuite SuiteTalk API (SOAP) Wrapper}
gem.homepage = 'https://github.com/NetSweet/netsuite'
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = 'netsuite'
gem.require_paths = ['lib']
gem.version = NetSuite::VERSION
gem.add_dependency 'savon', '>= 2.3.0', '<= 2.11.1'
gem.add_development_dependency 'rspec', '~> 3.10.0'
gem.add_development_dependency 'rake'
end