Sha256: 2c41e3b548e9e03d86bb30e03e2264eb4185f1191594ec052056087a71bc69bf

Contents?: true

Size: 1.32 KB

Versions: 1

Compression:

Stored size: 1.32 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', ['>= 0.7', '< 0.10'])
  s.add_development_dependency "dotenv"
  s.add_development_dependency "minitest"
  s.add_development_dependency "rubocop"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cloudally-0.1.1 cloudally.gemspec