-
Notifications
You must be signed in to change notification settings - Fork 0
/
phobos_db_checkpoint.gemspec
65 lines (57 loc) · 2.41 KB
/
phobos_db_checkpoint.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'phobos_db_checkpoint/version'
Gem::Specification.new do |spec|
spec.name = 'phobos_db_checkpoint'
spec.version = PhobosDBCheckpoint::VERSION
spec.authors = [
'Túlio Ornelas',
'Mathias Klippinge',
'Sergey Evstifeev',
'Thiago R. Colucci',
'Martin Svalin',
'Francisco Juan',
'Tommy Gustafsson'
]
spec.email = [
'ornelas.tulio@gmail.com',
'mathias.klippinge@gmail.com',
'sergey.evstifeev@gmail.com',
'ticolucci@gmail.com',
'martin@lite.nu',
'francisco.juan@gmail.com',
'tommydgustafsson@gmail.com'
]
spec.summary = 'Phobos DB Checkpoint is a plugin to Phobos and is meant as a drop in replacement to Phobos::Handler'
spec.description = 'Phobos DB Checkpoint is a plugin to Phobos and is meant as a drop in replacement to Phobos::Handler'
spec.homepage = 'https://github.com/klarna/phobos_db_checkpoint'
spec.license = 'Apache License Version 2.0'
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
else
raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
end
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/phobos_db_checkpoint}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.3'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'database_cleaner'
spec.add_development_dependency 'pg', '~> 1.0.0'
spec.add_development_dependency 'pry-byebug'
spec.add_development_dependency 'rack-test'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '0.60.0'
spec.add_development_dependency 'rubocop_rules'
spec.add_development_dependency 'simplecov'
spec.add_dependency 'activerecord', '>= 4.0.0'
spec.add_dependency 'phobos', '>= 1.8.0'
spec.add_dependency 'rake'
spec.add_dependency 'sinatra'
spec.add_dependency 'thor'
end