forked from gooddata/gooddata-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgooddata.gemspec
More file actions
63 lines (56 loc) · 2.61 KB
/
gooddata.gemspec
File metadata and controls
63 lines (56 loc) · 2.61 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
# encoding: utf-8
$LOAD_PATH.push File.expand_path('../lib/', __FILE__)
require 'gooddata/version'
Gem::Specification.new do |s|
s.name = 'gooddata'
s.version = GoodData::VERSION
s.licenses = ['BSD']
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
s.authors = [
'Pavel Kolesnikov',
'Thomas Watson Steen',
'Tomas Svarovsky',
'Tomas Korcak'
]
s.summary = 'A convenient Ruby wrapper around the GoodData RESTful API'
s.description = 'Use the GoodData::Client class to integrate GoodData into your own application or use the CLI to work with GoodData directly from the command line.'
s.email = 'pavel@gooddata.com'
s.extra_rdoc_files = %w(LICENSE README.md)
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
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.homepage = 'http://github.com/gooddata/gooddata-ruby'
s.require_paths = ['lib']
s.add_development_dependency 'bundler', "~> 1.14"
s.add_development_dependency 'license_finder', '~> 2.0'
s.add_development_dependency 'rake', '~> 11.1'
s.add_development_dependency 'rake-notes', '~> 0.2'
s.add_development_dependency 'redcarpet', '~> 3.1' if RUBY_PLATFORM != 'java'
s.add_development_dependency 'rspec', '~> 3.5'
s.add_development_dependency 'rspec-expectations', '~> 3.5'
s.add_development_dependency 'rubocop', '< 0.48' # TODO: remove it after dealing with new rules introduced in 0.48 version
s.add_development_dependency 'simplecov', '~> 0.12'
s.add_development_dependency 'webmock', '~> 1.21'
s.add_development_dependency 'yard', '~> 0.8'
s.add_development_dependency 'yard-rspec', '~> 0.1'
s.add_development_dependency 'ZenTest', '~> 4.11'
s.add_development_dependency 'pry'
s.add_dependency 'aws-sdk', '~> 2.9', '>= 2.9.42'
s.add_dependency 'docile', '~> 1.1'
s.add_dependency 'erubis', '~> 2.7'
s.add_dependency 'gli', '~> 2.15'
s.add_dependency 'gooddata_datawarehouse' if RUBY_PLATFORM == 'java'
s.add_dependency 'gooddata-dss-jdbc' if RUBY_PLATFORM == 'java'
s.add_dependency 'highline', '~> 1.7'
s.add_dependency 'json_pure', '~> 1.8'
s.add_dependency 'multi_json', '~> 1.12'
s.add_dependency 'parseconfig', '~> 1.0'
s.add_dependency 'pmap', '~> 1.1'
s.add_dependency 'restforce', '~> 2.4'
s.add_dependency 'rest-client', '~> 1.8'
s.add_dependency 'rubyzip', '~> 1.2'
s.add_dependency 'salesforce_bulk_query', '~> 0.2'
s.add_dependency 'terminal-table', '~> 1.7'
s.add_dependency 'thread_safe'
s.add_dependency 'backports'
end