Sha256: 8db649dcb7a09ae37fb77b9d7b0517bdaa172b9eb6abbc6cd88f7e152a24d462
Contents?: true
Size: 1 KB
Versions: 2
Compression:
Stored size: 1 KB
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-auth' spec.add_runtime_dependency 'wcc-base', '~> 0.3.1' spec.add_runtime_dependency 'wcc-data', '~> 0.3.3' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wcc-media-client-0.6.0 | wcc-media-client.gemspec |
wcc-media-client-0.5.0 | wcc-media-client.gemspec |