Skip to content

Commit

Permalink
Fix outdated links. #97
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfstr committed May 1, 2013
1 parent c346854 commit 564956b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion BUILDING
Expand Up @@ -17,7 +17,7 @@ grabbing the discount submodule into the root of the project and then running
the rake gather task to copy discount source files into the ext/ directory:

$ git submodule update --init
Submodule 'discount' (git://github.com/rtomayko/discount.git) registered for path 'discount'
Submodule 'discount' (git://github.com/davidfstr/discount.git) registered for path 'discount'
Cloning into discount...
$ cd discount
$ ./configure.sh # to generate mkdio.h from mkdio.h.in
Expand Down
12 changes: 6 additions & 6 deletions README.markdown
Expand Up @@ -5,10 +5,10 @@ Discount is an implementation of John Gruber's Markdown markup language in C. It
implements all of the language described in [the markdown syntax document][1] and
passes the [Markdown 1.0 test suite][2].

CODE: `git clone git://github.com/rtomayko/rdiscount.git`
HOME: <http://github.com/rtomayko/rdiscount>
DOCS: <http://rdoc.info/github/rtomayko/rdiscount/master/index>
BUGS: <http://github.com/rtomayko/rdiscount/issues>
CODE: `git clone git://github.com/davidfstr/rdiscount.git`
HOME: <http://dafoster.net/projects/rdiscount/>
DOCS: <http://rdoc.info/github/davidfstr/rdiscount/RDiscount>
BUGS: <http://github.com/davidfstr/rdiscount/issues>

Discount was developed by [David Loren Parsons][3]. The Ruby extension
is maintained by [David Foster][4].
Expand All @@ -27,14 +27,14 @@ New releases of RDiscount are published to [RubyGems][]:

The RDiscount sources are available via Git:

$ git clone git://github.com/rtomayko/rdiscount.git
$ git clone git://github.com/davidfstr/rdiscount.git
$ cd rdiscount
$ rake --tasks

See the file [BUILDING][] for hacking instructions.

[RubyGems]: https://rubygems.org/gems/rdiscount
[BUILDING]: https://github.com/rtomayko/rdiscount/blob/master/BUILDING
[BUILDING]: https://github.com/davidfstr/rdiscount/blob/master/BUILDING

USAGE
-----
Expand Down
4 changes: 2 additions & 2 deletions rdiscount.gemspec
Expand Up @@ -3,8 +3,8 @@ Gem::Specification.new do |s|
s.version = '2.0.7.2'
s.summary = "Fast Implementation of Gruber's Markdown in C"
s.date = '2013-04-06'
s.email = 'rtomayko@gmail.com'
s.homepage = 'http://github.com/rtomayko/rdiscount'
s.email = 'davidfstr@gmail.com'
s.homepage = 'http://dafoster.net/projects/rdiscount/'
s.authors = ["Ryan Tomayko", "David Loren Parsons", "Andrew White", "David Foster"]
# = MANIFEST =
s.files = %w[
Expand Down
2 changes: 1 addition & 1 deletion test/markdown_test.rb
Expand Up @@ -123,7 +123,7 @@ def test_ul_with_single_space_indent
markdown.to_html.gsub("\n", "")
end

# http://github.com/rtomayko/rdiscount/issues/#issue/13
# http://github.com/davidfstr/rdiscount/issues/#issue/13
def test_headings_with_trailing_space
text = "The Ant-Sugar Tales \n" +
"=================== \n\n" +
Expand Down
4 changes: 2 additions & 2 deletions test/rdiscount_test.rb
Expand Up @@ -90,8 +90,8 @@ def test_that_strict_flag_works
end

def test_that_autolink_flag_works
rd = RDiscount.new("http://github.com/rtomayko/rdiscount", :autolink)
assert_equal "<p><a href=\"http://github.com/rtomayko/rdiscount\">http://github.com/rtomayko/rdiscount</a></p>\n", rd.to_html
rd = RDiscount.new("http://github.com/davidfstr/rdiscount", :autolink)
assert_equal "<p><a href=\"http://github.com/davidfstr/rdiscount\">http://github.com/davidfstr/rdiscount</a></p>\n", rd.to_html
end

def test_that_safelink_flag_works
Expand Down

0 comments on commit 564956b

Please sign in to comment.