Skip to content

Commit

Permalink
Merge pull request #467 from nanoc/replace-rubyforge-urls
Browse files Browse the repository at this point in the history
Replace rubyforge.org URLs
  • Loading branch information
denisdefreyne committed Aug 9, 2014
2 parents 9eb14fd + 19c3553 commit 5267987
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ New:
* A new “+” wildcard in rule patterns that matches one or more characters
* A `view` command that starts a web server in the output directory
* A `debug` command that shows information about the items, reps and layouts
* A `kramdown` filter ([kramdown site](http://kramdown.rubyforge.org/))
* A `kramdown` filter ([kramdown site](http://kramdown.gettalong.org/))
* A diff between the previously compiled content and the last compiled content is now written to `output.diff` if the `enable_output_diff` site configuration attribute is true
* Assigns, such as `@items`, `@layouts`, `@item`, … are accessible without `@`
* Support for binary items
Expand Down Expand Up @@ -653,7 +653,7 @@ updated manual will be useful.
New:

* New `rdiscount` filter ([RDiscount site](http://github.com/rtomayko/rdiscount))
* New `maruku` filter ([Maruku site](http://maruku.rubyforge.org/))
* New `maruku` filter ([Maruku site](https://github.com/bhollis/maruku/))
* New `erubis` filter ([Erubis site](http://www.kuwata-lab.com/erubis/))
* A better commandline frontend
* A new filesystem data source named `filesystem_combined`
Expand Down
2 changes: 1 addition & 1 deletion lib/nanoc/extra/auto_compiler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def initialize(site_path)
end

# Calls the autocompiler. The behaviour of this method is defined by the
# [Rack specification](http://rack.rubyforge.org/doc/SPEC.html).
# [Rack specification](http://rubydoc.info/github/rack/rack/master/file/SPEC).
#
# @param [Hash] env The environment, as defined by the Rack specification
#
Expand Down
8 changes: 4 additions & 4 deletions lib/nanoc/extra/chick.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ module Nanoc::Extra

# @deprecated Use a HTTP library such as
# [Net::HTTP](http://ruby-doc.org/stdlib/libdoc/net/http/rdoc/) or
# [Curb](http://curb.rubyforge.org/) instead.
# [Curb](https://github.com/taf2/curb) instead.
module CHiCk

# @deprecated Use a HTTP library such as
# [Net::HTTP](http://ruby-doc.org/stdlib/libdoc/net/http/rdoc/) or
# [Curb](http://curb.rubyforge.org/) instead.
# [Curb](https://github.com/taf2/curb) instead.
class Client

DEFAULT_OPTIONS = {
Expand Down Expand Up @@ -62,7 +62,7 @@ def get(url)

# @deprecated Use a HTTP library such as
# [Net::HTTP](http://ruby-doc.org/stdlib/libdoc/net/http/rdoc/) or
# [Curb](http://curb.rubyforge.org/) instead.
# [Curb](https://github.com/taf2/curb) instead.
class CacheController

def initialize(app, options = {})
Expand All @@ -82,7 +82,7 @@ def call(env)

# @deprecated Use a HTTP library such as
# [Net::HTTP](http://ruby-doc.org/stdlib/libdoc/net/http/rdoc/) or
# [Curb](http://curb.rubyforge.org/) instead.
# [Curb](https://github.com/taf2/curb) instead.
class RackClient

METHOD_TO_CLASS_MAPPING = {
Expand Down
2 changes: 1 addition & 1 deletion lib/nanoc/filters/kramdown.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Kramdown < Nanoc::Filter

requires 'kramdown'

# Runs the content through [Kramdown](http://kramdown.rubyforge.org/).
# Runs the content through [Kramdown](http://kramdown.gettalong.org/).
# Parameters passed to this filter will be passed on to Kramdown.
#
# @param [String] content The content to filter
Expand Down
2 changes: 1 addition & 1 deletion lib/nanoc/filters/markaby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Markaby < Nanoc::Filter

requires 'markaby'

# Runs the content through [Markaby](http://markaby.rubyforge.org/).
# Runs the content through [Markaby](http://markaby.github.io/).
# This method takes no options.
#
# @param [String] content The content to filter
Expand Down
2 changes: 1 addition & 1 deletion lib/nanoc/filters/maruku.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Maruku < Nanoc::Filter

requires 'maruku'

# Runs the content through [Maruku](http://maruku.rubyforge.org/).
# Runs the content through [Maruku](https://github.com/bhollis/maruku/).
# Parameters passed to this filter will be passed on to Maruku.
#
# @param [String] content The content to filter
Expand Down
2 changes: 1 addition & 1 deletion lib/nanoc/filters/rdoc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def self.setup
super
end

# Runs the content through [RDoc::Markup](http://rdoc.rubyforge.org/RDoc/Markup.html).
# Runs the content through [RDoc::Markup](http://docs.seattlerb.org/rdoc/RDoc/Markup.html).
# This method takes no options.
#
# @param [String] content The content to filter
Expand Down

0 comments on commit 5267987

Please sign in to comment.