forked from rubyrep/rubyrep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrubyrep.gemspec
More file actions
29 lines (24 loc) · 1.03 KB
/
Copy pathrubyrep.gemspec
File metadata and controls
29 lines (24 loc) · 1.03 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rubyrep/version'
Gem::Specification.new do |spec|
spec.name = "rubyrep"
spec.version = RR::VERSION
spec.authors = ["Arndt Lehmann"]
spec.email = ["arndtlehmann@arndtlehmann.com"]
spec.summary = %q{Open-source solution for asynchronous, master-master replication of relational databases.}
spec.homepage = "http://www.rubyrep.org"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.14"
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "rspec", "~> 3.5"
spec.add_runtime_dependency "activerecord", "~> 4.2"
spec.add_runtime_dependency "awesome_print"
end