-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrbarman.gemspec
More file actions
23 lines (20 loc) · 916 Bytes
/
rbarman.gemspec
File metadata and controls
23 lines (20 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rbarman/version'
Gem::Specification.new do |spec|
spec.name = "rbarman"
spec.version = RBarman::VERSION
spec.authors = ["Holger Amann"]
spec.email = ["holger@sauspiel.de"]
spec.description = %q{Wrapper for 2ndQuadrant's PostgreSQL backup tool 'barman'}
spec.summary = %q{Wrapper for 2ndQuadrant's PostgreSQL backup tool 'barman'}
spec.homepage = "https://github.com/sauspiel/rbarman"
spec.license = "MIT"
spec.files = Dir['lib/**/*.rb', 'LICENSE.txt', 'README.md']
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 2.14.0"
spec.add_dependency "mixlib-shellout", "~> 1.3.0"
end