Sha256: b7f447ee2f09185d01dfb834f7a8e375e78d14c54f98544d2c886f378fce966a
Contents?: true
Size: 915 Bytes
Versions: 1
Compression:
Stored size: 915 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'oktakit/version' Gem::Specification.new do |spec| spec.name = 'oktakit' spec.version = Oktakit::VERSION spec.authors = ['Graeme Johnson', 'Julian Nadeau'] spec.email = ['graeme.johnson@shopify.com', 'julian@shopify.com'] spec.summary = 'Ruby toolkit for working with the Okta API' spec.homepage = 'https://github.com/shopify/oktakit' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.0' spec.add_dependency 'sawyer', '~> 0.8.1' spec.add_development_dependency 'bundler' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
oktakit-0.1.5 | oktakit.gemspec |