forked from tumblr/jetpants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjetpants.gemspec
32 lines (29 loc) · 1.71 KB
/
jetpants.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
require 'rake'
Gem::Specification.new do |s|
s.name = "jetpants"
s.version = "0.7.11"
s.homepage = 'https://github.com/tumblr/jetpants/'
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.required_ruby_version = '>= 1.9.2'
s.authors = ["Evan Elias", "Dallas Marlow", "Bob Patterson Jr.", "Tom Christ"]
s.date = "2013-02-22"
s.email = ["[email protected]", "[email protected]"]
s.files = FileList['Gemfile', 'README.rdoc', 'doc/*.rdoc', 'lib/**/*.rb', 'bin/**', 'plugins/**/*.rb', 'etc/jetpants.yaml.sample'].to_a
s.require_paths = ["lib"]
s.executables = ["jetpants"]
s.default_executable = "jetpants"
s.rubygems_version = "1.8.10"
s.summary = 'Jetpants: a MySQL automation toolkit by Tumblr'
s.description = "Jetpants is an automation toolkit for handling monstrously large MySQL database topologies. It is geared towards common operational tasks like cloning slaves, rebalancing shards, and performing master promotions. It features a command suite for easy use by operations staff, though it's also a full Ruby library for use in developing custom migration scripts and database automation."
s.extra_rdoc_files = FileList['README.rdoc', 'doc/*.rdoc']
s.has_rdoc = true
s.rdoc_options = ["--line-numbers", "--title", s.summary, "--main", "README.rdoc"]
s.add_runtime_dependency 'mysql2', '~> 0.3.0'
s.add_runtime_dependency 'sequel', '~> 3.36'
s.add_runtime_dependency 'net-ssh', '~> 2.3'
s.add_runtime_dependency 'pry', '~> 0.9.8'
s.add_runtime_dependency 'thor', '~> 0.15'
s.add_runtime_dependency 'highline', '~> 1.6.12'
s.add_runtime_dependency 'colored', '~> 1.2'
s.add_runtime_dependency 'collins_client', '~> 0.2.7'
end