forked from soundcloud/lhm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lhm.gemspec
27 lines (23 loc) · 1.11 KB
/
lhm.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$:.unshift(lib) unless $:.include?(lib)
require 'lhm/version'
Gem::Specification.new do |s|
s.name = 'lhm'
s.version = Lhm::VERSION
s.licenses = ['BSD-3-Clause']
s.platform = Gem::Platform::RUBY
s.authors = ['SoundCloud', 'Rany Keddo', 'Tobias Bielohlawek', 'Tobias Schmidt']
s.summary = %q{online schema changer for mysql}
s.description = %q{Migrate large tables without downtime by copying to a temporary table in chunks. The old table is not dropped. Instead, it is moved to timestamp_table_name for verification.}
s.homepage = %q{http://github.com/soundcloud/lhm}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ['lib']
s.executables = ['lhm-kill-queue']
s.add_development_dependency 'minitest'
s.add_development_dependency 'rake'
s.add_development_dependency 'activerecord'
s.add_development_dependency 'mysql'
end