wikitext 4.1 → 4.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/bin/wikitext +1 -1
  3. data/ext/wikitext/ary.c +1 -1
  4. data/ext/wikitext/ary.h +1 -1
  5. data/ext/wikitext/depend +1 -1
  6. data/ext/wikitext/extconf.rb +2 -2
  7. data/ext/wikitext/parser.c +1 -1
  8. data/ext/wikitext/parser.h +1 -1
  9. data/ext/wikitext/ruby_compat.h +1 -1
  10. data/ext/wikitext/str.c +1 -1
  11. data/ext/wikitext/str.h +1 -1
  12. data/ext/wikitext/token.c +1 -1
  13. data/ext/wikitext/token.h +1 -1
  14. data/ext/wikitext/wikitext.c +1 -1
  15. data/ext/wikitext/wikitext.h +1 -1
  16. data/ext/wikitext/wikitext_ragel.c +1 -1
  17. data/ext/wikitext/wikitext_ragel.h +1 -1
  18. data/lib/wikitext/haml_filter.rb +1 -1
  19. data/lib/wikitext/nil_class.rb +1 -1
  20. data/lib/wikitext/parser.rb +1 -1
  21. data/lib/wikitext/preprocess.rb +1 -1
  22. data/lib/wikitext/rails_template_handler.rb +1 -1
  23. data/lib/wikitext/string.rb +1 -1
  24. data/lib/wikitext/version.rb +2 -2
  25. data/spec/autolinking_spec.rb +1 -1
  26. data/spec/base_heading_level_spec.rb +1 -1
  27. data/spec/blockquote_spec.rb +1 -1
  28. data/spec/em_spec.rb +1 -1
  29. data/spec/encoding_spec.rb +1 -1
  30. data/spec/entity_spec.rb +1 -1
  31. data/spec/external_link_spec.rb +1 -1
  32. data/spec/fulltext_spec.rb +1 -1
  33. data/spec/h1_spec.rb +1 -1
  34. data/spec/h2_spec.rb +1 -1
  35. data/spec/h3_spec.rb +1 -1
  36. data/spec/h4_spec.rb +1 -1
  37. data/spec/h5_spec.rb +1 -1
  38. data/spec/h6_spec.rb +1 -1
  39. data/spec/img_spec.rb +1 -1
  40. data/spec/indentation_spec.rb +1 -1
  41. data/spec/integration_spec.rb +1 -1
  42. data/spec/internal_link_spec.rb +1 -1
  43. data/spec/line_endings_spec.rb +1 -1
  44. data/spec/link_encoding_spec.rb +1 -1
  45. data/spec/link_sanitizing_spec.rb +1 -1
  46. data/spec/nil_class_spec.rb +1 -1
  47. data/spec/nowiki_spec.rb +1 -1
  48. data/spec/p_spec.rb +1 -1
  49. data/spec/parser_spec.rb +1 -1
  50. data/spec/pre_spec.rb +1 -1
  51. data/spec/rails_spec.rb +1 -1
  52. data/spec/regressions_spec.rb +1 -1
  53. data/spec/spec_helper.rb +1 -1
  54. data/spec/string_spec.rb +1 -1
  55. data/spec/strong_em_spec.rb +1 -1
  56. data/spec/strong_spec.rb +1 -1
  57. data/spec/tokenizing_spec.rb +1 -1
  58. data/spec/tt_spec.rb +1 -1
  59. data/spec/ul_spec.rb +1 -1
  60. data/spec/version_spec.rb +1 -1
  61. data/spec/wikitext_spec.rb +1 -1
  62. metadata +6 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: adb8b0bee90b1594b72581586c246100bfdfad68
4
- data.tar.gz: 62123f1974297e064ce6a65d88424dc801555026
3
+ metadata.gz: b1378ca1ddd1c1cf06f25d955061712f48503d43
4
+ data.tar.gz: c8bfe2d68c0640f78b525e228fb0560a83bcd884
5
5
  SHA512:
6
- metadata.gz: a8f8f3cc9893fcbb128d971a0c52a076f2eac3f0a10a406018e5789afd59fa17e812e36af655deb55c119a9212a24d18000de847dca09df92a0d316a2c6a048f
7
- data.tar.gz: a523ee12c625ba39f8a6472f57a1e4eb6b8404dca07042508e32036a12add67a1ab889d214b3127db3d1d3aa75736b3f3e5fb69d377ef8a2c9a206ff0da08dae
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-2014 Wincent Colaiuta. All rights reserved.
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-2009 Wincent Colaiuta. All rights reserved.
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-2009 Wincent Colaiuta. All rights reserved.
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-2010 Wincent Colaiuta. All rights reserved.
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-2013 Wincent Colaiuta. All rights reserved.
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\.[01]\./
31
+ if RUBY_VERSION !~ /\A2\.[012]\./
32
32
  raise "unsupported Ruby version: #{RUBY_VERSION}"
33
33
  end
34
34
 
@@ -1,4 +1,4 @@
1
- // Copyright 2007-2014 Wincent Colaiuta. All rights reserved.
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 2008-2014 Wincent Colaiuta. All rights reserved.
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-2009 Wincent Colaiuta. All rights reserved.
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-2009 Wincent Colaiuta. All rights reserved.
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-2009 Wincent Colaiuta. All rights reserved.
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-2009 Wincent Colaiuta. All rights reserved.
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-2009 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2009 Wincent Colaiuta. All rights reserved.
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-2009 Wincent Colaiuta. All rights reserved.
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-2009 Wincent Colaiuta. All rights reserved.
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 2014 Wincent Colaiuta. All rights reserved.
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:
@@ -1,4 +1,4 @@
1
- # Copyright 2008-2014 Wincent Colaiuta. All rights reserved.
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 2009-2014 Wincent Colaiuta. All rights reserved.
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:
@@ -1,4 +1,4 @@
1
- # Copyright 2008-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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 2007-2014 Wincent Colaiuta. All rights reserved.
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
@@ -1,4 +1,4 @@
1
- # Copyright 2007-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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:
@@ -1,4 +1,4 @@
1
- # Copyright 2007-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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 2008-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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 2007-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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:
@@ -1,4 +1,4 @@
1
- # Copyright 2008-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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:
@@ -1,4 +1,4 @@
1
- # Copyright 2007-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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 2008-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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-2014 Wincent Colaiuta. All rights reserved.
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:
@@ -1,4 +1,4 @@
1
- # Copyright 2007-2014 Wincent Colaiuta. All rights reserved.
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.1'
4
+ version: 4.1.2
5
5
  platform: ruby
6
6
  authors:
7
- - Wincent Colaiuta
7
+ - Greg Hurrell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-14 00:00:00.000000000 Z
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: |2
98
- Wikitext is a fast wikitext-to-HTML translator written in C.
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.2.0
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: