-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathflipt-client-ruby.gemspec
More file actions
25 lines (20 loc) · 947 Bytes
/
flipt-client-ruby.gemspec
File metadata and controls
25 lines (20 loc) · 947 Bytes
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
# frozen_string_literal: true
require_relative 'lib/flipt_client/version'
Gem::Specification.new do |spec|
spec.name = 'flipt_client'
spec.version = Flipt::VERSION
spec.authors = ['Flipt Devs']
spec.email = ['dev@flipt.io']
spec.summary = 'Flipt Client Evaluation SDK'
spec.description = 'Flipt Client Evaluation SDK'
spec.homepage = 'https://www.flipt.io'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/flipt-io/flipt-client-sdks'
spec.files = Dir.glob('{lib}/**/*') + ['README.md', 'flipt-client-ruby.gemspec']
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
end