forked from maxlapshin/mysql2postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysql2postgres.gemspec
76 lines (71 loc) · 2.62 KB
/
mysql2postgres.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# frozen_string_literal: true
lib = File.expand_path '../lib', __FILE__
$LOAD_PATH.unshift lib unless $LOAD_PATH.include? lib
require 'mysql2postgres/version'
Gem::Specification.new do |s|
s.name = 'mysql2postgres'
s.version = Mysql2postgres::VERSION
s.licenses = ['MIT']
s.authors = [
'Max Lapshin <[email protected]>',
'Anton Ageev <[email protected]>',
'Samuel Tribehou <[email protected]>',
'Marco Nenciarini <[email protected]>',
'James Nobis <[email protected]>',
'quel <[email protected]>',
'Holger Amann <[email protected]>',
'Maxim Dobriakov <[email protected]>',
'Michael Kimsal <[email protected]>',
'Jacob Coby <[email protected]>',
'Neszt Tibor <[email protected]>',
'Miroslav Kratochvil <[email protected]>',
'Paul Gallagher <[email protected]>',
'Alex C Jokela <[email protected]>',
'Peter Clark <[email protected]>',
'Juga Paazmaya <[email protected]>',
'Alexander Meindl <[email protected]'
]
s.description = 'Translates MySQL -> PostgreSQL'
s.email = '[email protected]'
s.metadata = { 'rubygems_mfa_required' => 'true' }
s.executables = ['mysql2postgres']
s.required_ruby_version = '>= 2.7'
s.files = [
'.gitignore',
'MIT-LICENSE',
'README.md',
'Rakefile',
'bin/mysql2postgres',
'lib/mysql2postgres.rb',
'lib/mysql2postgres/converter.rb',
'lib/mysql2postgres/connection.rb',
'lib/mysql2postgres/mysql_reader.rb',
'lib/mysql2postgres/postgres_db_writer.rb',
'lib/mysql2postgres/postgres_file_writer.rb',
'lib/mysql2postgres/postgres_db_writer.rb',
'lib/mysql2postgres/postgres_writer.rb',
'lib/mysql2postgres/version.rb',
'mysql2postgres.gemspec',
'test/fixtures/config_all_options.yml',
'test/fixtures/config_min_options.yml',
'test/fixtures/config_to_file.yml',
'test/fixtures/seed_integration_tests.sql',
'test/integration/convert_to_db_test.rb',
'test/integration/convert_to_file_test.rb',
'test/integration/converter_test.rb',
'test/integration/mysql_reader_connection_test.rb',
'test/integration/mysql_reader_test.rb',
'test/integration/postgres_db_writer_test.rb',
'test/units/mysql_test.rb',
'test/units/option_test.rb',
'test/units/postgres_file_writer_test.rb',
'test/test_helper.rb'
]
s.homepage = 'https://github.com/AlphaNodes/mysql2postgres'
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.summary = 'MySQL to PostgreSQL Data Translation'
s.add_runtime_dependency 'pg', '~> 1.2.2'
s.add_runtime_dependency 'rake'
s.add_runtime_dependency 'ruby-mysql', '~> 3.0'
end