-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathvacuum.gemspec
More file actions
23 lines (19 loc) · 749 Bytes
/
vacuum.gemspec
File metadata and controls
23 lines (19 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
$LOAD_PATH.push(File.expand_path("lib", __dir__))
require "vacuum/version"
Gem::Specification.new do |gem|
gem.name = "vacuum"
gem.version = Vacuum::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ["Hakan Ensari", "Stanislav Katkov"]
gem.email = ["hakanensari@gmail.com", "sk@skylup.com"]
gem.homepage = "https://github.com/hakanensari/vacuum"
gem.description = "A wrapper to the Amazon Creators API"
gem.summary = "Amazon Creators API in Ruby"
gem.license = "MIT"
gem.files = Dir.glob("lib/**/*") + ["LICENSE", "README.md"]
gem.require_paths = ["lib"]
gem.add_dependency("http", ">= 5.0")
gem.required_ruby_version = ">= 3.2"
gem.metadata["rubygems_mfa_required"] = "true"
end