forked from maxlapshin/mysql2postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysqltopostgres.gemspec
executable file
·95 lines (89 loc) · 3.25 KB
/
mysqltopostgres.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
Gem::Specification.new do |s|
s.name = 'mysqltopostgres'
s.version = '0.2.20'
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]>'
]
s.date = '2014-11-19'
s.default_executable = 'mysqltopostgres'
s.description = 'Translates MySQL -> PostgreSQL'
s.email = '[email protected]'
s.executables = ['mysqltopostgres']
s.files = [
'.gitignore',
'MIT-LICENSE',
'README.md',
'Rakefile',
'bin/mysqltopostgres',
'lib/mysqltopostgres.rb',
'lib/mysql2psql/config.rb',
'lib/mysql2psql/config_base.rb',
'lib/mysql2psql/converter.rb',
'lib/mysql2psql/connection.rb',
'lib/mysql2psql/errors.rb',
'lib/mysql2psql/mysql_reader.rb',
'lib/mysql2psql/postgres_db_writer.rb',
'lib/mysql2psql/postgres_file_writer.rb',
'lib/mysql2psql/postgres_db_writer.rb',
'lib/mysql2psql/postgres_writer.rb',
'lib/mysql2psql/version.rb',
'lib/mysql2psql/writer.rb',
'mysqltopostgres.gemspec',
'test/fixtures/config_all_options.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_base_test.rb',
'test/integration/mysql_reader_test.rb',
'test/integration/postgres_db_writer_base_test.rb',
'test/lib/ext_test_unit.rb',
'test/lib/test_helper.rb',
'test/units/config_base_test.rb',
'test/units/config_test.rb',
'test/units/postgres_file_writer_test.rb'
]
s.homepage = 'https://github.com/maxlapshin/mysql2postgres'
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.rubygems_version = '1.3.7'
s.summary = 'Tool for converting mysql database to postgresql'
s.test_files = [
'test/integration/convert_to_db_test.rb',
'test/integration/convert_to_file_test.rb',
'test/integration/converter_test.rb',
'test/integration/mysql_reader_base_test.rb',
'test/integration/mysql_reader_test.rb',
'test/integration/postgres_db_writer_base_test.rb',
'test/lib/ext_test_unit.rb',
'test/lib/test_helper.rb',
'test/units/config_base_test.rb',
'test/units/config_test.rb',
'test/units/postgres_file_writer_test.rb'
]
s.add_dependency('mysql-pr', ['>= 2.9.10'])
s.add_dependency('postgres-pr', ['= 0.6.3'])
s.add_dependency('activerecord', ['>= 3.2.6'])
s.add_dependency('test-unit', ['>= 2.1.1'])
if RUBY_PLATFORM == 'java'
s.add_dependency('activerecord-jdbc-adapter', ['>= 1.2.2'])
s.add_dependency('activerecord-jdbcpostgresql-adapter', ['>= 1.2.2'])
s.add_dependency('activerecord-jdbcsqlite3-adapter', ['>= 1.2.2'])
end
end