Sha256: d682f8cb519e4c59cff4a3f254f6a7cb473516098f6c09fe788bd38f7c933d07

Contents?: true

Size: 1.3 KB

Versions: 3

Compression:

Stored size: 1.3 KB

Contents

# frozen_string_literal: true

require_relative 'lib/cloudally/version'

Gem::Specification.new do |s|
  s.name        = 'cloudally'
  s.version     = CloudAlly::VERSION
  s.authors     = ['Janco Tanis']
  s.email       = 'gems@jancology.com'
  s.license     = 'MIT'

  s.summary     = 'A Ruby wrapper for the CloudAlly Partner Portal REST APIs (readonly)'
  s.homepage    = 'https://rubygems.org/gems/cloudally'

  s.required_ruby_version = Gem::Requirement.new('>= 2.4.0')

  s.metadata['homepage_uri'] = s.homepage
  s.metadata['source_code_uri'] = 'https://github.com/jancotanis/cloudally'

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  s.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
  end
  s.bindir        = 'exe'
  s.executables   = s.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  s.require_paths = ['lib']

  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.platform = Gem::Platform::RUBY
  s.add_runtime_dependency 'faraday'
  s.add_development_dependency 'dotenv'
  s.add_development_dependency 'minitest'
  s.add_development_dependency 'rubocop'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cloudally-0.2.0 cloudally.gemspec
cloudally-0.1.3 cloudally.gemspec
cloudally-0.1.2 cloudally.gemspec