Sha256: 6e0ed93a1764c1ce3bc25a06d681bc045c9108910631205f4da07dfe0fed1e92
Contents?: true
Size: 1.31 KB
Versions: 6
Compression:
Stored size: 1.31 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-shopify' s.version = Lhm::VERSION s.licenses = ['BSD-3-Clause'] s.platform = Gem::Platform::RUBY s.authors = ['SoundCloud', 'Shopify', 'Rany Keddo', 'Tobias Bielohlawek', 'Tobias Schmidt'] s.email = %q{database-engineering@shopify.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/shopify/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 = [] s.metadata['allowed_push_host'] = "https://rubygems.org" s.required_ruby_version = '>= 2.3.0' s.add_dependency 'retriable', '>= 3.0.0' s.add_development_dependency 'minitest' s.add_development_dependency 'mocha' s.add_development_dependency 'rake' s.add_development_dependency 'activerecord' s.add_development_dependency 'mysql2' s.add_development_dependency 'simplecov' end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
lhm-shopify-3.5.0 | lhm.gemspec |
lhm-shopify-3.4.2 | lhm.gemspec |
lhm-shopify-3.4.1 | lhm.gemspec |
lhm-shopify-3.4.0 | lhm.gemspec |
lhm-shopify-3.3.6 | lhm.gemspec |
lhm-shopify-3.3.5 | lhm.gemspec |