Sha256: 86d2c52c6e03b9b93e6b558bcf24e6b44203689065b41ff4025dfb5b2a260663
Contents?: true
Size: 1.19 KB
Versions: 2
Compression:
Stored size: 1.19 KB
Contents
# -*- 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.platform = Gem::Platform::RUBY s.authors = ["SoundCloud", "Rany Keddo", "Tobias Bielohlawek", "Tobias Schmidt"] s.email = %q{rany@soundcloud.com, tobi@soundcloud.com, ts@soundcloud.com} 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/large-hadron-migrator} 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"] # this should be a real dependency, but we're using a different gem in our code s.add_development_dependency "mysql", "~> 2.8.1" s.add_development_dependency "minitest", "= 2.10.0" s.add_development_dependency "rake" s.add_dependency "activerecord" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
lhm-1.0.3 | lhm.gemspec |
lhm-1.0.2 | lhm.gemspec |