forked from lstejskal/adapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adapi.gemspec
50 lines (43 loc) · 2 KB
/
adapi.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "adapi/version"
Gem::Specification.new do |s|
s.name = "adapi"
s.version = Adapi::VERSION
s.authors = ["Lukas Stejskal"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/lstejskal/adapi"
s.summary = %q{User-friendly interface to Google Adwords API}
s.description = %q{This gem provides user-friendly interface to Google Adwords API.}
s.rubyforge_project = "adapi"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# google-adwords-api gem provides low-level interface to AdWords API
#
# its core dependency, google-ads-common gem, is also required
# (before google-adwords-api gem, so the clash of our version
# with version required by google-adwords api is less probable)
#
# versions of both gems are freezed, because both gems change a lot and
# automatic updates through '~>' can (and already did) break something
#
s.add_dependency "google-ads-common", "0.9.2"
s.add_dependency "google-adwords-api", "0.8.1"
s.add_dependency "activemodel", "~> 3.2.12"
s.add_dependency "activesupport", "~> 3.2.12"
s.add_dependency "rake", "~> 0.9.6"
s.add_dependency "curb", "~> 0.8.3"
s.add_development_dependency "yard", "~> 0.8"
s.add_development_dependency "turn", "~> 0.9.6"
# if this breaks budnle, run: bundle update shoulda-matchers
# this is a HOTFIX, can be removed when this bug is resolved:
# https://github.com/thoughtbot/shoulda-matchers/issues/235
s.add_development_dependency "shoulda-matchers", "1.4.1"
s.add_development_dependency "shoulda", "~> 3.1"
s.add_development_dependency "fakeweb", "~> 1.3"
s.add_development_dependency "factory_girl", "~> 3.3"
s.add_development_dependency "minitest", "~> 3.3"
s.add_development_dependency('mocha', '~> 0.13.3')
end