forked from NetSweet/netsuite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
netsuite.gemspec
24 lines (20 loc) · 1019 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
24
# -*- 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.metadata['changelog_uri'] = 'https://github.com/netsweet/netsuite/blob/master/HISTORY.md'
gem.add_dependency 'savon', '>= 2.3.0'
gem.add_development_dependency 'rspec', '~> 3.11.0'
gem.add_development_dependency 'rake', '~> 12.3.3'
end