forked from looker-open-source/looker-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlooker-sdk.gemspec
32 lines (30 loc) · 1.54 KB
/
looker-sdk.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'looker-sdk/version'
Gem::Specification.new do |s|
s.name = 'looker-sdk'
s.version = LookerSDK::VERSION
s.date = "#{Time.now.strftime('%F')}"
s.authors = ['Looker']
s.email = '[email protected]'
s.homepage = 'https://github.com/looker-open-source/looker-sdk-ruby'
s.summary = %q{Looker Ruby SDK}
s.description = 'Use this SDK to access the Looker API. The Looker API provides functions to perform administrative '+
'tasks such as provisioning users, configuring database connections, and so on. It also enables you to leverage '+
'the Looker data analytics engine to fetch data or render visualizations defined in your Looker data models. '+
'For more information, see https://looker.com.'
s.license = 'MIT'
s.required_ruby_version = '>= 2.7'
s.requirements = 'Looker version 4.0 or later' # informational
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = %w(lib)
s.add_dependency 'jruby-openssl' if s.platform == :jruby
s.add_dependency 'sawyer', '~> 0.8'
s.add_dependency 'faraday', ['>= 1.2', '< 3.0']
s.add_development_dependency 'ci_reporter_minitest', '~> 1.0'
s.add_development_dependency 'faraday', '~> 2.7'
s.add_development_dependency 'faraday-rack', '~> 2'
s.add_development_dependency 'faraday-multipart', '~> 1.0'
end