forked from martingordon/bronto-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbronto.gemspec
26 lines (21 loc) · 897 Bytes
/
bronto.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/bronto/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Martin Gordon"]
gem.email = ["[email protected]"]
gem.description = %q{A Ruby wrapper for the Bronto SOAP API}
gem.summary = %q{A Ruby wrapper for the Bronto SOAP API}
gem.homepage = ""
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "bronto"
gem.require_paths = ["lib"]
gem.version = Bronto::VERSION
gem.add_dependency "savon"
gem.add_development_dependency "byebug"
gem.add_development_dependency "turn"
gem.add_development_dependency "shoulda"
gem.homepage = "https://github.com/martingordon/bronto-ruby"
gem.license = "MIT"
end