-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmarloss.gemspec
33 lines (25 loc) · 1.05 KB
/
marloss.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "marloss/version"
files = `git ls-files -z`.split("\x0")
.reject { |f| f.match(%r{^(script|spec)/}) }
Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 2.4.0"
spec.name = "marloss"
spec.version = Marloss::VERSION
spec.authors = ["Jacopo Scrinzi"]
spec.email = "[email protected]"
spec.summary = "AWS DynamoDB based Locking"
spec.description = "Distributed locking using AWS DynamoDB"
spec.homepage = "https://github.com/eredi93/marloss"
spec.license = "MIT"
spec.files = files
spec.require_paths = %w[lib]
spec.add_dependency "aws-sdk-dynamodb", "~> 1"
spec.add_development_dependency "bundler", ">= 1"
spec.add_development_dependency "gem-release", "~> 2.1"
spec.add_development_dependency "rake", "~> 12.3"
spec.add_development_dependency "rspec", "~> 3.9"
spec.add_development_dependency "rubocop", "= 0.89.1"
end