@@ -7,36 +7,36 @@ require 'mysql2psql/version'
7
7
begin
8
8
require 'jeweler'
9
9
Jeweler ::Tasks . new do |gem |
10
- gem . name = " mysql2psql"
10
+ gem . name = ' mysql2psql'
11
11
gem . version = Mysql2psql ::Version ::STRING
12
- gem . summary = %Q{ Tool for converting mysql database to postgresql}
13
- gem . description = %Q {It can create postgresql dump from mysql database or directly load data from mysql to
12
+ gem . summary = %( Tool for converting mysql database to postgresql)
13
+ gem . description = %{It can create postgresql dump from mysql database or directly load data from mysql to
14
14
postgresql (at about 100 000 records per minute). Translates most data types and indexes.}
15
-
16
- gem . homepage = " http://github.com/tardate/mysql2postgresql"
15
+
16
+ gem . homepage = ' http://github.com/tardate/mysql2postgresql'
17
17
gem . authors = [
18
- " Max Lapshin <[email protected] >" ,
19
- " Anton Ageev <[email protected] >" ,
20
- " Samuel Tribehou <[email protected] >" ,
21
- " Marco Nenciarini <[email protected] >" ,
22
- " James Nobis <[email protected] >" ,
23
-
24
- " Holger Amann <[email protected] >" ,
25
- " Maxim Dobriakov <[email protected] >" ,
26
- " Michael Kimsal <[email protected] >" ,
27
-
28
- " Neszt Tibor <[email protected] >" ,
29
- " Miroslav Kratochvil <[email protected] >" ,
30
- " Paul Gallagher <[email protected] >"
31
- ]
32
- gem . add_dependency " mysql" , " = 2.8.1"
33
- gem . add_dependency "pg" , " = 0.9.0"
34
- gem . add_development_dependency " test-unit" , " >= 2.1.1"
18
+ ' Max Lapshin <[email protected] >' ,
19
+ ' Anton Ageev <[email protected] >' ,
20
+ ' Samuel Tribehou <[email protected] >' ,
21
+ ' Marco Nenciarini <[email protected] >' ,
22
+ ' James Nobis <[email protected] >' ,
23
+
24
+ ' Holger Amann <[email protected] >' ,
25
+ ' Maxim Dobriakov <[email protected] >' ,
26
+ ' Michael Kimsal <[email protected] >' ,
27
+
28
+ ' Neszt Tibor <[email protected] >' ,
29
+ ' Miroslav Kratochvil <[email protected] >' ,
30
+ ' Paul Gallagher <[email protected] >'
31
+ ]
32
+ gem . add_dependency ' mysql' , ' = 2.8.1'
33
+ gem . add_dependency 'pg' , ' = 0.9.0'
34
+ gem . add_development_dependency ' test-unit' , ' >= 2.1.1'
35
35
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
36
36
end
37
37
Jeweler ::GemcutterTasks . new
38
38
rescue LoadError
39
- puts " Jeweler (or a dependency) not available. Install it with: gem install jeweler"
39
+ puts ' Jeweler (or a dependency) not available. Install it with: gem install jeweler'
40
40
end
41
41
42
42
require 'rake/testtask'
@@ -54,7 +54,7 @@ namespace :test do
54
54
end
55
55
end
56
56
57
- desc " Run all tests"
57
+ desc ' Run all tests'
58
58
task :test do
59
59
Rake ::Task [ 'test:units' ] . invoke
60
60
Rake ::Task [ 'test:integration' ] . invoke
@@ -69,12 +69,11 @@ begin
69
69
end
70
70
rescue LoadError
71
71
task :rcov do
72
- abort " RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
72
+ abort ' RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov'
73
73
end
74
74
end
75
75
76
-
77
- task :default => :test
76
+ task default : :test
78
77
79
78
require 'rdoc/task'
80
79
Rake ::RDocTask . new do |rdoc |
0 commit comments