Sha256: 20ffd5e1d1db067f0673d8718af73ac48223034c253f736aee0ee7e9a8016180
Contents?: true
Size: 934 Bytes
Versions: 1
Compression:
Stored size: 934 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'wcc/media/version' Gem::Specification.new do |spec| spec.name = 'wcc-media-client' spec.version = WCC::Media::VERSION spec.authors = ['Watermark Dev'] spec.email = ['dev@watermark.org'] spec.summary = File.readlines(File.expand_path('README.md', __dir__)).join spec.description = 'REST Client for accessing the WCC Media library' spec.homepage = 'https://github.com/watermarkchurch/media/wcc-media-client' spec.license = 'MIT' spec.required_ruby_version = '>= 2.3' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.require_paths = ['lib'] spec.add_runtime_dependency 'wcc-api', '>= 0.3.1' spec.add_runtime_dependency 'wcc-data', '~> 0.3.3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wcc-media-client-0.6.1 | wcc-media-client.gemspec |