-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdsm.gemspec
More file actions
20 lines (20 loc) · 841 Bytes
/
dsm.gemspec
File metadata and controls
20 lines (20 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
s.name = 'dsm'
s.version = '1.0.0'
s.date = '2015-12-04'
s.summary = "Helps migrate data on large mysql tables"
s.description = <<-EOF
Migrate data on large MySQL tables without downtime by making changes in small batches.
Provides tools for throttling, displaying progress and completion estimation.
Uses similar format to LHM (Large Hadron Migrator) https://github.com/soundcloud/lhm
EOF
s.authors = ["Nathan Hoel"]
s.email = 'nathan.hoel@vidyard.com'
s.files = Dir['lib/**/*.rb']
s.test_files = Dir['spec/**/*_spec.rb']
s.homepage = 'https://github.com/Vidyard/dsm'
s.license = 'MIT'
s.add_development_dependency 'activerecord'
s.add_development_dependency 'mysql2'
s.add_development_dependency('rspec', '>= 3.1.0')
end