-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmysql_big_table_migration.gemspec
27 lines (24 loc) · 1.11 KB
/
mysql_big_table_migration.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
$LOAD_PATH.unshift 'lib'
require "mysql_big_table_migration/version"
Gem::Specification.new do |s|
s.name = "mysql_big_table_migration"
s.version = MySQLBigTableMigration::VERSION
s.platform = Gem::Platform::RUBY
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "allow columns and indexes to be added to and removed from large tables"
s.homepage = "http://github.com/analog-analytics/mysql_big_table_migration"
s.email = "[email protected]"
s.authors = [ "Mark Woods" ]
s.has_rdoc = false
s.files = %w( README Rakefile )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("man/**/*")
s.files += Dir.glob("test/**/*")
s.description = <<desc
A Rails plugin that adds methods to ActiveRecord::Migration to allow columns
and indexes to be added to and removed from large tables with millions of
rows in MySQL, without leaving processes seemingly stalled in state "copy
to tmp table".
desc
end