-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsnowplow_ruby_duid.gemspec
29 lines (25 loc) · 1.42 KB
/
snowplow_ruby_duid.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'snowplow_ruby_duid/version'
Gem::Specification.new do |spec|
spec.name = 'snowplow_ruby_duid'
spec.version = SnowplowRubyDuid::VERSION
spec.authors = ['Simply Business']
spec.email = ['tech@simplybusiness.co.uk']
spec.description = 'A gem that exposes the Snowplow domain userid in Rack applications. Also allows you to set your own domain userid that will be shared with the Snowplow Javascript tracker.'
spec.summary = 'A gem that exposes the Snowplow domain userid in Rack applications. Also allows you to set your own domain userid that will be shared with the Snowplow Javascript tracker.'
spec.homepage = 'https://github.com/simplybusiness/snowplow_ruby_duid'
spec.license = 'MIT'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'rack'
spec.add_development_dependency 'rack-test'
spec.add_development_dependency 'rake', '>= 12.3.3'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'rutabaga'
spec.add_development_dependency 'timecop'
end