fog/fog-proxmox

View on GitHub
fog-proxmox.gemspec

Summary

Maintainability
Test Coverage
# Copyright 2018 Tristan Robert

# This file is part of Fog::Proxmox.

# Fog::Proxmox is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# Fog::Proxmox is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fog/proxmox/version'

Gem::Specification.new do |spec|
  spec.name          = 'fog-proxmox'
  spec.version       = Fog::Proxmox::VERSION
  spec.authors       = ['Tristan Robert']
  spec.email         = ['tristan.robert.44@gmail.com']

  spec.summary       = "Module for the 'Fog' gem to support Proxmox VE"
  spec.description   = 'This library can be used as a module for `fog`.'
  spec.homepage      = 'https://github.com/fog/fog-proxmox'
  spec.license       = 'GPL-3.0'

  spec.files         = `git ls-files -z CHANGELOG.md LICENSE README.md docs examples lib spec`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']
  spec.required_ruby_version = '>= 2.5'

  spec.add_development_dependency 'bundler', '~> 2.1'
  spec.add_development_dependency 'bundler-audit', '~> 0.6'
  spec.add_development_dependency 'debase', '~> 0.2.2'
  spec.add_development_dependency 'debride', '~> 1.8'
  spec.add_development_dependency 'fasterer', '~> 0.3'
  spec.add_development_dependency 'fastri', '~> 0.3'
  spec.add_development_dependency 'minitest', '~> 5.11'
  spec.add_development_dependency 'pry', '~> 0.11'
  spec.add_development_dependency 'rake', '~> 12.3'
  spec.add_development_dependency 'rcodetools', '~> 0.3'
  spec.add_development_dependency 'reek', '~> 6.1'
  spec.add_development_dependency 'rspec', '~> 3.7'
  spec.add_development_dependency 'rubocop', '~> 1.39'
  spec.add_development_dependency 'rubocop-factory_bot', '< 2.26.0'
  spec.add_development_dependency 'rubocop-minitest', '~> 0.24'
  spec.add_development_dependency 'rubocop-rake', '~> 0.6'
  spec.add_development_dependency 'rubocop-rspec', '~> 2.15'
  spec.add_development_dependency 'rubocop-rspec_rails', '< 2.29.0'
  spec.add_development_dependency 'ruby-debug-ide', '~> 0.6'
  spec.add_development_dependency 'simplecov', '~> 0.21'
  spec.add_development_dependency 'vcr', '~> 4.0'
  spec.add_development_dependency 'webmock', '~> 3.5'

  spec.add_dependency 'fog-core',  '~> 2.1'
  spec.add_dependency 'fog-json',  '~> 1.2'
  spec.metadata['rubygems_mfa_required'] = 'true'
end