Skip to content

Commit 8477333

Browse files
committed
Fix homepage link
1 parent 515129e commit 8477333

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.rdoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ If you encounter any issues with db connectivity, verify that the 'mysql' and 'p
4848
The 'mysql' gem in particular may need a hint on where to find the mysql headers and libraries:
4949

5050
$ [sudo] gem install mysql -- --with-mysql-dir=/usr/local/mysql
51-
51+
5252
NB: With Ruby 1.8.x, the gem install will usually complain about "No definition for ..." errors. These are non-fatal and just affect the documentation install. This doesn't happen with Ruby 1.9.2.
5353

5454
== Contributing to Mysql2psql
55-
55+
5656
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
5757
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
5858
* Fork the project
@@ -64,16 +64,16 @@ NB: With Ruby 1.8.x, the gem install will usually complain about "No definition
6464

6565
== Getting the source
6666
Mysql2psql was first produced by Max Lapshin <[email protected]> who maintains the master
67-
repository at http://github.com/maxlapshin/mysql2postgres
67+
repository at https://github.com/maxlapshin/mysql2postgres
6868

6969
The gem bundling and refactoring for testing was done by Paul Gallagher <[email protected]> and
70-
the repository is at http://github.com/tardate/mysql2postgres
70+
the repository is at https://github.com/tardate/mysql2postgres
7171

7272
Gem packaging is done with Jeweler. Note that on windows this means you must run under mingw or other shell that supports git to do the gem bundling (but you can gem install the built gem in the normal Windows shell).
7373

7474
== Running tests
7575
If you fork/clone the project, you will want to run the test suite (and add to it if you are developing new features or fixing bugs).
76-
76+
7777
A suite of tests are provided and are run using rake (rake -T for more info)
7878
rake test:units
7979
rake test:integration

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ begin
1313
gem.description = %Q{It can create postgresql dump from mysql database or directly load data from mysql to
1414
postgresql (at about 100 000 records per minute). Translates most data types and indexes.}
1515
gem.email = "[email protected]"
16-
gem.homepage = "http://github.com/tardate/mysql2postgresql"
16+
gem.homepage = "https://github.com/tardate/mysql2postgres"
1717
gem.authors = [
1818
"Max Lapshin <[email protected]>",
1919
"Anton Ageev <[email protected]>",

mysql2psql.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Gem::Specification.new do |s|
4949
"test/units/config_test.rb",
5050
"test/units/postgres_file_writer_test.rb"
5151
]
52-
s.homepage = %q{http://github.com/tardate/mysql2postgresql}
52+
s.homepage = %q{https://github.com/tardate/mysql2postgres}
5353
s.require_paths = ["lib"]
5454
s.rubygems_version = %q{1.7.2}
5555
s.summary = %q{Tool for converting mysql database to postgresql}

0 commit comments

Comments
 (0)