-
Notifications
You must be signed in to change notification settings - Fork 0
/
google-ads-common.gemspec
34 lines (30 loc) · 1.15 KB
/
google-ads-common.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
27
28
29
30
31
32
33
34
Gem::Specification.new do |s|
require File.dirname( __FILE__ ) + '/lib/ads_common/api_config'
# Basic information
s.name = 'google-ads-common'
s.version = AdsCommon::ApiConfig::ADS_COMMON_VERSION
s.summary = "Common code for Google Ads APIs."
s.description = "ads_common provides essential utilities shared by all Ads Ruby client libraries."
# Files and dependencies
s.files = []
s.files << 'google-ads-common.gemspec'
s.files << 'Rakefile'
s.files << 'README'
s.files += Dir["lib/**/*.rb"] + Dir["doc/**/*.*"] + Dir["test/**/*.*"]
s.require_path = 'lib'
s.add_dependency('soap4r', '>= 1.5.8')
s.add_dependency('httpclient', '>= 2.1.5.2')
s.add_dependency('httpi', '~>0.7.9')
# RDoc information
s.has_rdoc = true
s.extra_rdoc_files = ['README']
s.rdoc_options << '--main' << 'README'
# Metadata
s.authors = ['Sergio Gomes', 'Danial Klimkin']
s.email = '[email protected]'
s.homepage = 'http://code.google.com/p/google-api-adwords-ruby/'
s.rubyforge_project = 'google-ads-common'
s.requirements << 'soap4r v1.5.8'
s.requirements << 'httpclient v2.1.5.2 or greater'
s.requirements << 'httpi v0.7.9 or greater'
end