forked from maxlapshin/mysql2postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysql-to-postgres.gemspec
78 lines (71 loc) · 3.2 KB
/
mysql-to-postgres.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
Gem::Specification.new do |s|
s.name = %q{mysql-to-postgres}
s.version = "0.2.12"
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]>"]
s.date = %q{2010-09-19}
s.default_executable = %q{mysql-to-postgres}
s.description = %q{Translates MySQL -> PostgreSQL via pure ruby MySQL}
s.email = %q{[email protected]}
s.executables = ["mysql-to-postgres"]
s.files = [
".gitignore",
"MIT-LICENSE",
"README.md",
"Rakefile",
"bin/mysql-to-postgres",
"lib/mysql-to-postgres.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",
"mysql-to-postgres.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 = %q{https://github.com/ajokela/mysql-to-postgres}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{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(%q<mysql-pr>, [">= 2.9.10"])
s.add_dependency(%q<postgres-pr>, ["= 0.6.3"])
s.add_dependency(%q<activerecord>, [">= 3.2.6"])
s.add_dependency(%q<test-unit>, [">= 2.1.1"])
if RUBY_PLATFORM == 'java'
s.add_dependency(%q<activerecord-jdbc-adapter>, [">= 1.2.2"])
s.add_dependency(%q<activerecord-jdbcpostgresql-adapter>, [">= 1.2.2"])
s.add_dependency(%q<activerecord-jdbcsqlite3-adapter>, [">= 1.2.2"])
end
end