Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FSSDK-9990] add missing info to gemspec #348

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 14 additions & 10 deletions optimizely-sdk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,23 @@
require_relative 'lib/optimizely/version'

Gem::Specification.new do |spec|
spec.name = 'optimizely-sdk'
spec.version = Optimizely::VERSION
spec.authors = ['Optimizely']
spec.email = ['[email protected]']
spec.name = 'optimizely-sdk'
spec.version = Optimizely::VERSION
spec.authors = ['Optimizely']
spec.email = ['[email protected]']
spec.required_ruby_version = '>= 3.0'

spec.summary = "Ruby SDK for Optimizely's testing framework"
spec.description = 'A Ruby SDK for use with Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts'
spec.homepage = 'https://www.optimizely.com/'
spec.license = 'Apache-2.0'
spec.summary = "Ruby SDK for Optimizely's testing framework"
spec.description = 'A Ruby SDK for use with Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts'
spec.homepage = 'https://github.com/optimizely/ruby-sdk'
spec.license = 'Apache-2.0'
spec.metadata = {
'source_code_uri' => 'https://github.com/optimizely/ruby-sdk',
'changelog_uri' => 'https://github.com/optimizely/ruby-sdk/blob/master/CHANGELOG.md'
}

spec.files = Dir['lib/**/*', 'LICENSE']
spec.require_paths = ['lib']
spec.files = Dir['lib/**/*', 'LICENSE']
spec.require_paths = ['lib']

spec.add_development_dependency 'bundler'
spec.add_development_dependency 'coveralls_reborn'
Expand Down
Loading