-
Notifications
You must be signed in to change notification settings - Fork 4
/
vwo-sdk.gemspec
36 lines (28 loc) · 1.36 KB
/
vwo-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
33
34
35
36
# frozen_string_literal: true
require_relative 'lib/vwo/constants'
Gem::Specification.new do |spec|
spec.name = 'vwo-sdk'
spec.version = VWO::CONSTANTS::SDK_VERSION
spec.authors = ['VWO']
spec.email = ['dev@wingify.com']
spec.summary = 'Ruby SDK for VWO FullStack testing'
spec.description = 'Ruby SDK for VWO FullStack testing.'
spec.homepage = 'https://vwo.com/fullstack/server-side-testing/'
spec.license = 'Apache-2.0'
spec.files = Dir['lib/**/*']
spec.require_paths = ['lib']
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/wingify/vwo-ruby-sdk/issues',
'changelog_uri' => 'https://github.com/wingify/vwo-ruby-sdk/blob/master/CHANGELOG.md',
'documentation_uri' => 'https://developers.vwo.com/docs/ruby-sdk-reference',
'homepage_uri' => 'https://github.com/wingify/vwo-ruby-sdk',
'source_code_uri' => 'https://github.com/wingify/vwo-ruby-sdk'
}
spec.required_ruby_version = '>= 2.2.10' # rubocop:todo Gemspec/RequiredRubyVersion
spec.add_development_dependency 'codecov', '~> 0.4.3'
spec.add_development_dependency 'mocha', '~>1.13.0'
spec.add_development_dependency 'rubocop', '~> 0.70'
spec.add_runtime_dependency 'json-schema', '~> 2.8'
spec.add_runtime_dependency 'murmurhash3', '~> 0.1'
spec.add_runtime_dependency 'vwo_log_messages', '~>0.7.5'
end