forked from tardate/mysql2postgres
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mysql2psql.gemspec
88 lines (83 loc) · 3.54 KB
/
mysql2psql.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
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{mysql2psql}
s.version = "0.1.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
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]>"]
s.date = %q{2011-05-02}
s.description = %q{It can create postgresql dump from mysql database or directly load data from mysql to
postgresql (at about 100 000 records per minute). Translates most data types and indexes.}
s.email = %q{[email protected]}
s.executables = ["mysql2psql"]
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
"CHANGELOG",
"MIT-LICENSE",
"README.rdoc",
"Rakefile",
"bin/mysql2psql",
"lib/mysql2psql.rb",
"lib/mysql2psql/config.rb",
"lib/mysql2psql/config_base.rb",
"lib/mysql2psql/converter.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_writer.rb",
"lib/mysql2psql/version.rb",
"lib/mysql2psql/writer.rb",
"mysql2psql.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{http://github.com/tardate/mysql2postgresql}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.7.2}
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"
]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<mysql>, ["= 2.8.1"])
s.add_runtime_dependency(%q<pg>, ["~> 0.11.0"])
s.add_development_dependency(%q<test-unit>, [">= 2.1.1"])
else
s.add_dependency(%q<mysql>, ["= 2.8.1"])
s.add_dependency(%q<pg>, ["~> 0.11.0"])
s.add_dependency(%q<test-unit>, [">= 2.1.1"])
end
else
s.add_dependency(%q<mysql>, ["= 2.8.1"])
s.add_dependency(%q<pg>, ["~> 0.11.0"])
s.add_dependency(%q<test-unit>, [">= 2.1.1"])
end
end