wikitext 4.1 → 4.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/wikitext +1 -1
- data/ext/wikitext/ary.c +1 -1
- data/ext/wikitext/ary.h +1 -1
- data/ext/wikitext/depend +1 -1
- data/ext/wikitext/extconf.rb +2 -2
- data/ext/wikitext/parser.c +1 -1
- data/ext/wikitext/parser.h +1 -1
- data/ext/wikitext/ruby_compat.h +1 -1
- data/ext/wikitext/str.c +1 -1
- data/ext/wikitext/str.h +1 -1
- data/ext/wikitext/token.c +1 -1
- data/ext/wikitext/token.h +1 -1
- data/ext/wikitext/wikitext.c +1 -1
- data/ext/wikitext/wikitext.h +1 -1
- data/ext/wikitext/wikitext_ragel.c +1 -1
- data/ext/wikitext/wikitext_ragel.h +1 -1
- data/lib/wikitext/haml_filter.rb +1 -1
- data/lib/wikitext/nil_class.rb +1 -1
- data/lib/wikitext/parser.rb +1 -1
- data/lib/wikitext/preprocess.rb +1 -1
- data/lib/wikitext/rails_template_handler.rb +1 -1
- data/lib/wikitext/string.rb +1 -1
- data/lib/wikitext/version.rb +2 -2
- data/spec/autolinking_spec.rb +1 -1
- data/spec/base_heading_level_spec.rb +1 -1
- data/spec/blockquote_spec.rb +1 -1
- data/spec/em_spec.rb +1 -1
- data/spec/encoding_spec.rb +1 -1
- data/spec/entity_spec.rb +1 -1
- data/spec/external_link_spec.rb +1 -1
- data/spec/fulltext_spec.rb +1 -1
- data/spec/h1_spec.rb +1 -1
- data/spec/h2_spec.rb +1 -1
- data/spec/h3_spec.rb +1 -1
- data/spec/h4_spec.rb +1 -1
- data/spec/h5_spec.rb +1 -1
- data/spec/h6_spec.rb +1 -1
- data/spec/img_spec.rb +1 -1
- data/spec/indentation_spec.rb +1 -1
- data/spec/integration_spec.rb +1 -1
- data/spec/internal_link_spec.rb +1 -1
- data/spec/line_endings_spec.rb +1 -1
- data/spec/link_encoding_spec.rb +1 -1
- data/spec/link_sanitizing_spec.rb +1 -1
- data/spec/nil_class_spec.rb +1 -1
- data/spec/nowiki_spec.rb +1 -1
- data/spec/p_spec.rb +1 -1
- data/spec/parser_spec.rb +1 -1
- data/spec/pre_spec.rb +1 -1
- data/spec/rails_spec.rb +1 -1
- data/spec/regressions_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/string_spec.rb +1 -1
- data/spec/strong_em_spec.rb +1 -1
- data/spec/strong_spec.rb +1 -1
- data/spec/tokenizing_spec.rb +1 -1
- data/spec/tt_spec.rb +1 -1
- data/spec/ul_spec.rb +1 -1
- data/spec/version_spec.rb +1 -1
- data/spec/wikitext_spec.rb +1 -1
- metadata +6 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1378ca1ddd1c1cf06f25d955061712f48503d43
|
|
4
|
+
data.tar.gz: c8bfe2d68c0640f78b525e228fb0560a83bcd884
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06704aea976718a7b04e96f68056f5a9f4e3606e06f92fc6ea1693df1185f773caf882532b45d3bd65c81b1641deed3fffbaaf814a842ae23c5e5b01e6ca68f2
|
|
7
|
+
data.tar.gz: 534acddbedea011466fe3fa0db6bfc8a1352e6d3a9f66a1ab9d15de7b0297844ec6691c375e46d7237841c9403359a6210cd6be33115a62a56a8258fda45f629
|
data/bin/wikitext
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Copyright 2008-
|
|
2
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
3
3
|
#
|
|
4
4
|
# Redistribution and use in source and binary forms, with or without
|
|
5
5
|
# modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/ary.c
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2008-
|
|
1
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/ary.h
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2008-
|
|
1
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/depend
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2008-
|
|
1
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/extconf.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2008-
|
|
1
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
|
@@ -28,7 +28,7 @@ def missing item
|
|
|
28
28
|
exit 1
|
|
29
29
|
end
|
|
30
30
|
|
|
31
|
-
if RUBY_VERSION !~ /\A2\.[
|
|
31
|
+
if RUBY_VERSION !~ /\A2\.[012]\./
|
|
32
32
|
raise "unsupported Ruby version: #{RUBY_VERSION}"
|
|
33
33
|
end
|
|
34
34
|
|
data/ext/wikitext/parser.c
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2007-
|
|
1
|
+
// Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/parser.h
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2008-
|
|
1
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/ruby_compat.h
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2008-
|
|
1
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/str.c
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2008-
|
|
1
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/str.h
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2008-
|
|
1
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/token.c
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2008-
|
|
1
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/token.h
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2008-
|
|
1
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/wikitext.c
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2008-
|
|
1
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
data/ext/wikitext/wikitext.h
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2008-
|
|
1
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
#line 1 "wikitext_ragel.rl"
|
|
3
|
-
// Copyright 2008-
|
|
3
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
4
4
|
//
|
|
5
5
|
// Redistribution and use in source and binary forms, with or without
|
|
6
6
|
// modification, are permitted provided that the following conditions are met:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2008-
|
|
1
|
+
// Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
//
|
|
3
3
|
// Redistribution and use in source and binary forms, with or without
|
|
4
4
|
// modification, are permitted provided that the following conditions are met:
|
data/lib/wikitext/haml_filter.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2014
|
|
1
|
+
# Copyright 2014-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/lib/wikitext/nil_class.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2008-
|
|
1
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/lib/wikitext/parser.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2009-
|
|
1
|
+
# Copyright 2009-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/lib/wikitext/preprocess.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2008-
|
|
1
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2008-
|
|
1
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/lib/wikitext/string.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2008-
|
|
1
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/lib/wikitext/version.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
23
23
|
|
|
24
24
|
module Wikitext
|
|
25
|
-
VERSION = '4.1'
|
|
25
|
+
VERSION = '4.1.2'
|
|
26
26
|
end # module Wikitext
|
data/spec/autolinking_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2009-
|
|
1
|
+
# Copyright 2009-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/blockquote_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/em_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/encoding_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/entity_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/external_link_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/fulltext_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2008-
|
|
1
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/h1_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/h2_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/h3_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/h4_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/h5_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/h6_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/img_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2008-
|
|
1
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/indentation_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2008-
|
|
1
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/integration_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/internal_link_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/line_endings_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/link_encoding_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/nil_class_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2009-
|
|
1
|
+
# Copyright 2009-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/nowiki_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/p_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/parser_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2009-
|
|
1
|
+
# Copyright 2009-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/pre_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/rails_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2009-
|
|
1
|
+
# Copyright 2009-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/regressions_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2008-
|
|
1
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/spec_helper.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/string_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2009-
|
|
1
|
+
# Copyright 2009-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/strong_em_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/strong_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/tokenizing_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2008-
|
|
1
|
+
# Copyright 2008-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/tt_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/ul_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/version_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2009-
|
|
1
|
+
# Copyright 2009-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
data/spec/wikitext_spec.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2007-
|
|
1
|
+
# Copyright 2007-present Greg Hurrell. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# Redistribution and use in source and binary forms, with or without
|
|
4
4
|
# modification, are permitted provided that the following conditions are met:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wikitext
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 4.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Greg Hurrell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-07-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -94,9 +94,8 @@ dependencies:
|
|
|
94
94
|
- - ">="
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0'
|
|
97
|
-
description:
|
|
98
|
-
|
|
99
|
-
email: win@wincent.com
|
|
97
|
+
description: " Wikitext is a fast wikitext-to-HTML translator written in C.\n"
|
|
98
|
+
email: greg@hurrell.net
|
|
100
99
|
executables:
|
|
101
100
|
- wikitext
|
|
102
101
|
extensions:
|
|
@@ -185,9 +184,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
185
184
|
version: '0'
|
|
186
185
|
requirements: []
|
|
187
186
|
rubyforge_project: wikitext
|
|
188
|
-
rubygems_version: 2.
|
|
187
|
+
rubygems_version: 2.4.5
|
|
189
188
|
signing_key:
|
|
190
189
|
specification_version: 4
|
|
191
190
|
summary: Wikitext-to-HTML translator
|
|
192
191
|
test_files: []
|
|
193
|
-
has_rdoc:
|