-
Notifications
You must be signed in to change notification settings - Fork 21
/
cartodb-rb-client.gemspec
34 lines (30 loc) · 1.31 KB
/
cartodb-rb-client.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "cartodb-rb-client/version"
require "cartodb-rb-client/install_utils"
Gem::Specification.new do |s|
s.name = "cartodb-rb-client"
s.version = Cartodb::Rb::Client::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Fernando Espinosa"]
s.email = ["[email protected]"]
s.homepage = %q{http://github.com/vizzuality/cartodb-rb-client}
s.licenses = ["BSD"]
s.summary = %q{Ruby client for the cartoDB API}
s.description = %q{Allows quick and easy connection to the cartodb API.}
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "cartodb-rb-client"
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"]
s.add_dependency 'typhoeus', '0.3.3'
s.add_dependency 'oauth', '0.4.5'
s.add_dependency 'mime-types', '>= 1.16'
s.add_dependency 'activesupport', '>= 3.0.0'
s.add_dependency 'i18n', '>= 0.5.0'
s.add_dependency 'rgeo', '>= 0.3.2'
s.add_dependency 'rgeo-geojson', '>= 0.2.1'
s.add_dependency('pg', '>= 0.11.0', '<= 0.13.2') if postgresql_installed?
s.add_dependency 'json', '>= 1.5.3'
end