m3talsmith/arkenstone

View on GitHub
arkenstone.gemspec

Summary

Maintainability
Test Coverage
# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = 'arkenstone-open'
  spec.version       = Arkenstone::VERSION
  spec.authors       = ['Michael Christenson II', 'Steve Young', 'Scott Williams', 'Brett Byler']
  spec.email         = ['m3talsmith@gmail.com']
  spec.description   = 'An Open Source ActiveRecord replacement over REST'
  spec.summary       = 'A drop-in replacement for ActiveRecord that performs CRUD operations over RESTful URLs.'
  spec.homepage      = 'https://github.com/m3talsmith/arkenstone'
  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '>= 2.1'
  spec.add_development_dependency 'rake', '>= 13.0.1'
  spec.add_runtime_dependency 'activesupport', '>= 5.0'

  spec.required_ruby_version = '>= 3.0'
  spec.metadata['rubygems_mfa_required'] = 'true'
end