forked from NetSweet/netsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetsuite.gemspec
21 lines (17 loc) · 851 Bytes
/
netsuite.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/netsuite/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Ryan Moran', 'Michael Bianco']
gem.email = ['ryan.moran@gmail.com', 'mike@cliffsidemedia.com']
gem.description = %q{NetSuite SuiteTalk API Wrapper}
gem.summary = %q{NetSuite SuiteTalk API (SOAP) Wrapper}
gem.homepage = 'https://github.com/RevolutionPrep/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'
gem.add_development_dependency 'rspec', '~> 2.99'
end