challah 1.0.0.beta2 → 1.0.0.beta3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/challah/authorization.rb +13 -6
- data/lib/challah/user/providers.rb +3 -1
- data/lib/challah/version.rb +1 -1
- data/test/authorization_test.rb +15 -0
- data/test/user_test.rb +2 -1
- data/vendor/bundle/build_info/highline-1.6.18.info +1 -0
- data/vendor/bundle/build_info/mime-types-1.23.info +1 -0
- data/vendor/bundle/build_info/minitest-4.7.4.info +1 -0
- data/vendor/bundle/build_info/multi_json-1.7.3.info +1 -0
- data/vendor/bundle/build_info/rdiscount-2.0.7.3.info +1 -0
- data/vendor/bundle/build_info/shoulda-3.5.0.info +1 -0
- data/vendor/bundle/build_info/shoulda-matchers-2.1.0.info +1 -0
- data/vendor/bundle/build_info/tilt-1.4.1.info +1 -0
- data/vendor/bundle/build_info/yard-0.8.6.1.info +1 -0
- data/vendor/bundle/cache/highline-1.6.18.gem +0 -0
- data/vendor/bundle/cache/mime-types-1.23.gem +0 -0
- data/vendor/bundle/cache/minitest-4.7.4.gem +0 -0
- data/vendor/bundle/cache/multi_json-1.7.3.gem +0 -0
- data/vendor/bundle/cache/rdiscount-2.0.7.3.gem +0 -0
- data/vendor/bundle/cache/shoulda-3.5.0.gem +0 -0
- data/vendor/bundle/cache/shoulda-matchers-2.1.0.gem +0 -0
- data/vendor/bundle/cache/tilt-1.4.1.gem +0 -0
- data/vendor/bundle/cache/yard-0.8.6.1.gem +0 -0
- data/vendor/bundle/gems/highline-1.6.18/AUTHORS +3 -0
- data/vendor/bundle/gems/highline-1.6.18/CHANGELOG +342 -0
- data/vendor/bundle/gems/highline-1.6.18/COPYING +340 -0
- data/vendor/bundle/gems/highline-1.6.18/INSTALL +55 -0
- data/vendor/bundle/gems/highline-1.6.18/LICENSE +7 -0
- data/vendor/bundle/gems/highline-1.6.18/README.rdoc +63 -0
- data/vendor/bundle/gems/highline-1.6.18/Rakefile +50 -0
- data/vendor/bundle/gems/highline-1.6.18/TODO +6 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/ansi_colors.rb +38 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/asking_for_arrays.rb +18 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/basic_usage.rb +75 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/color_scheme.rb +32 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/get_character.rb +12 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/limit.rb +12 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/menus.rb +65 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/overwrite.rb +19 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/page_and_wrap.rb +322 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/password.rb +7 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/repeat_entry.rb +21 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/trapping_eof.rb +22 -0
- data/vendor/bundle/gems/highline-1.6.18/examples/using_readline.rb +17 -0
- data/vendor/bundle/gems/highline-1.6.18/highline.gemspec +37 -0
- data/vendor/bundle/gems/highline-1.6.18/lib/highline/color_scheme.rb +134 -0
- data/vendor/bundle/gems/highline-1.6.18/lib/highline/compatibility.rb +16 -0
- data/vendor/bundle/gems/highline-1.6.18/lib/highline/import.rb +41 -0
- data/vendor/bundle/gems/highline-1.6.18/lib/highline/menu.rb +398 -0
- data/vendor/bundle/gems/highline-1.6.18/lib/highline/question.rb +475 -0
- data/vendor/bundle/gems/highline-1.6.18/lib/highline/simulate.rb +48 -0
- data/vendor/bundle/gems/highline-1.6.18/lib/highline/string_extensions.rb +131 -0
- data/vendor/bundle/gems/highline-1.6.18/lib/highline/style.rb +181 -0
- data/vendor/bundle/gems/highline-1.6.18/lib/highline/system_extensions.rb +218 -0
- data/vendor/bundle/gems/highline-1.6.18/lib/highline.rb +1012 -0
- data/vendor/bundle/gems/highline-1.6.18/setup.rb +1360 -0
- data/vendor/bundle/gems/highline-1.6.18/site/highline.css +65 -0
- data/vendor/bundle/gems/highline-1.6.18/site/images/logo.png +0 -0
- data/vendor/bundle/gems/highline-1.6.18/site/index.html +58 -0
- data/vendor/bundle/gems/highline-1.6.18/test/string_methods.rb +32 -0
- data/vendor/bundle/gems/highline-1.6.18/test/tc_color_scheme.rb +96 -0
- data/vendor/bundle/gems/highline-1.6.18/test/tc_highline.rb +1123 -0
- data/vendor/bundle/gems/highline-1.6.18/test/tc_import.rb +52 -0
- data/vendor/bundle/gems/highline-1.6.18/test/tc_menu.rb +439 -0
- data/vendor/bundle/gems/highline-1.6.18/test/tc_string_extension.rb +20 -0
- data/vendor/bundle/gems/highline-1.6.18/test/tc_string_highline.rb +38 -0
- data/vendor/bundle/gems/highline-1.6.18/test/tc_style.rb +567 -0
- data/vendor/bundle/gems/highline-1.6.18/test/ts_all.rb +16 -0
- data/vendor/bundle/gems/mime-types-1.23/Contributing.rdoc +68 -0
- data/vendor/bundle/gems/mime-types-1.23/Gemfile +21 -0
- data/vendor/bundle/gems/mime-types-1.23/History.rdoc +215 -0
- data/vendor/bundle/gems/mime-types-1.23/Licence.rdoc +37 -0
- data/vendor/bundle/gems/mime-types-1.23/Manifest.txt +40 -0
- data/vendor/bundle/gems/mime-types-1.23/README.rdoc +63 -0
- data/vendor/bundle/gems/mime-types-1.23/Rakefile +206 -0
- data/vendor/bundle/gems/mime-types-1.23/docs/COPYING.txt +339 -0
- data/vendor/bundle/gems/mime-types-1.23/docs/artistic.txt +127 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/application +1002 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/application.mac +3 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/application.nonstandard +131 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/application.obsolete +41 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/audio +138 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/audio.nonstandard +11 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/audio.obsolete +1 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/image +46 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/image.nonstandard +20 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/image.obsolete +5 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/message +18 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/message.obsolete +2 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/model +15 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/multipart +14 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/multipart.nonstandard +1 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/multipart.obsolete +7 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/other.nonstandard +8 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/text +61 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/text.nonstandard +7 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/text.obsolete +8 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/text.vms +1 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/video +73 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/video.nonstandard +16 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/video.obsolete +3 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime/types.rb +881 -0
- data/vendor/bundle/gems/mime-types-1.23/lib/mime-types.rb +3 -0
- data/vendor/bundle/gems/mime-types-1.23/test/test_mime_type.rb +319 -0
- data/vendor/bundle/gems/mime-types-1.23/test/test_mime_types.rb +119 -0
- data/vendor/bundle/gems/minitest-4.7.4/History.txt +796 -0
- data/vendor/bundle/gems/minitest-4.7.4/Manifest.txt +20 -0
- data/vendor/bundle/gems/minitest-4.7.4/README.txt +457 -0
- data/vendor/bundle/gems/minitest-4.7.4/Rakefile +94 -0
- data/vendor/bundle/gems/minitest-4.7.4/design_rationale.rb +52 -0
- data/vendor/bundle/gems/minitest-4.7.4/lib/hoe/minitest.rb +22 -0
- data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/autorun.rb +12 -0
- data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/benchmark.rb +416 -0
- data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/hell.rb +13 -0
- data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/mock.rb +193 -0
- data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/parallel_each.rb +73 -0
- data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/pride.rb +112 -0
- data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/spec.rb +545 -0
- data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/unit.rb +1415 -0
- data/vendor/bundle/gems/minitest-4.7.4/test/minitest/metametameta.rb +67 -0
- data/vendor/bundle/gems/minitest-4.7.4/test/minitest/test_minitest_benchmark.rb +128 -0
- data/vendor/bundle/gems/minitest-4.7.4/test/minitest/test_minitest_mock.rb +403 -0
- data/vendor/bundle/gems/minitest-4.7.4/test/minitest/test_minitest_spec.rb +804 -0
- data/vendor/bundle/gems/minitest-4.7.4/test/minitest/test_minitest_unit.rb +1860 -0
- data/vendor/bundle/gems/multi_json-1.7.3/CHANGELOG.md +147 -0
- data/vendor/bundle/gems/multi_json-1.7.3/CONTRIBUTING.md +46 -0
- data/vendor/bundle/gems/multi_json-1.7.3/Gemfile +31 -0
- data/vendor/bundle/gems/multi_json-1.7.3/LICENSE.md +20 -0
- data/vendor/bundle/gems/multi_json-1.7.3/README.md +109 -0
- data/vendor/bundle/gems/multi_json-1.7.3/Rakefile +12 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapter.rb +43 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/gson.rb +19 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/jr_jackson.rb +19 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/json_common.rb +35 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/json_gem.rb +15 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/json_pure.rb +15 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/nsjsonserialization.rb +34 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/oj.rb +28 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/ok_json.rb +22 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/yajl.rb +19 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/convertible_hash_keys.rb +43 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/options.rb +39 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/vendor/okjson.rb +600 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/version.rb +3 -0
- data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json.rb +154 -0
- data/vendor/bundle/gems/multi_json-1.7.3/multi_json.gemspec +22 -0
- data/vendor/bundle/gems/multi_json-1.7.3/spec/adapter_shared_example.rb +235 -0
- data/vendor/bundle/gems/multi_json-1.7.3/spec/has_options.rb +74 -0
- data/vendor/bundle/gems/multi_json-1.7.3/spec/helper.rb +32 -0
- data/vendor/bundle/gems/multi_json-1.7.3/spec/json_common_shared_example.rb +30 -0
- data/vendor/bundle/gems/multi_json-1.7.3/spec/multi_json_spec.rb +224 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/BUILDING +142 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/COPYING +52 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/README.markdown +72 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/Rakefile +218 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/bin/rdiscount +13 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/Csio.c +61 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/Csio.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/Makefile +237 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/VERSION +1 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/amalloc.c +111 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/amalloc.h +29 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/amalloc.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/basename.c +43 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/basename.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/config.h +25 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/css.c +85 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/css.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/cstring.h +77 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/docheader.c +49 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/docheader.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/dumptree.c +152 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/dumptree.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/emmatch.c +188 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/emmatch.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/extconf.rb +37 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/flags.c +84 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/flags.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/generate.c +1717 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/generate.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/html5.c +24 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/html5.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/markdown.c +1227 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/markdown.h +181 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/markdown.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/mkdio.c +354 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/mkdio.h +108 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/mkdio.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/mkmf.log +191 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/rdiscount.bundle +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/rdiscount.c +147 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/rdiscount.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/resource.c +157 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/resource.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/ruby-config.h +10 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/setup.c +47 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/setup.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/siteconf20130510-69347-e72tzr.rb +6 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/tags.c +123 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/tags.h +19 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/tags.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/toc.c +103 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/toc.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/version.c +22 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/version.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/xml.c +82 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/xml.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/xmlpage.c +48 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/xmlpage.o +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/lib/markdown.rb +1 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/lib/rdiscount.bundle +0 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/lib/rdiscount.rb +100 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/man/markdown.7 +1020 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/man/rdiscount.1 +22 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/man/rdiscount.1.ronn +24 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/rdiscount.gemspec +65 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/test/benchmark.rb +56 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/test/benchmark.txt +306 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/test/markdown_test.rb +158 -0
- data/vendor/bundle/gems/rdiscount-2.0.7.3/test/rdiscount_test.rb +132 -0
- data/vendor/bundle/gems/shoulda-3.5.0/Appraisals +15 -0
- data/vendor/bundle/gems/shoulda-3.5.0/CONTRIBUTING.md +38 -0
- data/vendor/bundle/gems/shoulda-3.5.0/Gemfile +3 -0
- data/vendor/bundle/gems/shoulda-3.5.0/MIT-LICENSE +22 -0
- data/vendor/bundle/gems/shoulda-3.5.0/README.md +103 -0
- data/vendor/bundle/gems/shoulda-3.5.0/Rakefile +17 -0
- data/vendor/bundle/gems/shoulda-3.5.0/features/rails_integration.feature +87 -0
- data/vendor/bundle/gems/shoulda-3.5.0/features/step_definitions/rails_steps.rb +77 -0
- data/vendor/bundle/gems/shoulda-3.5.0/features/support/env.rb +14 -0
- data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.0.gemfile +7 -0
- data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.0.gemfile.lock +127 -0
- data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.1.gemfile +9 -0
- data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.1.gemfile.lock +148 -0
- data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.2.gemfile +9 -0
- data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.2.gemfile.lock +146 -0
- data/vendor/bundle/gems/shoulda-3.5.0/lib/shoulda/version.rb +3 -0
- data/vendor/bundle/gems/shoulda-3.5.0/lib/shoulda.rb +3 -0
- data/vendor/bundle/gems/shoulda-3.5.0/shoulda.gemspec +30 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/Appraisals +17 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/CONTRIBUTING.md +41 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/Gemfile +15 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/Gemfile.lock +148 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/MIT-LICENSE +22 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/NEWS.md +181 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/README.md +93 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/Rakefile +28 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/features/rails_integration.feature +114 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/features/step_definitions/rails_steps.rb +130 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/features/support/env.rb +5 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.0.gemfile +14 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.0.gemfile.lock +139 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.1.gemfile +16 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.1.gemfile.lock +160 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.2.gemfile +16 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.2.gemfile.lock +158 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/filter_param_matcher.rb +46 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +65 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/render_template_matcher.rb +61 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +94 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/respond_with_matcher.rb +83 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/route_matcher.rb +96 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/set_session_matcher.rb +105 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/set_the_flash_matcher.rb +147 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller.rb +35 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/allow_mass_assignment_of_matcher.rb +113 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/allow_value_matcher.rb +174 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +42 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/ensure_exclusion_of_matcher.rb +94 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/ensure_inclusion_of_matcher.rb +156 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/ensure_length_of_matcher.rb +176 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/errors.rb +7 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/exception_message_finder.rb +58 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/helpers.rb +45 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/odd_even_number_matcher.rb +47 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/only_integer_matcher.rb +37 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +41 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +65 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +115 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +64 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validate_uniqueness_of_matcher.rb +221 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validation_matcher.rb +89 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validation_message_finder.rb +70 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model.rb +50 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb +140 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/association_matcher.rb +368 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/have_db_column_matcher.rb +195 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +111 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +55 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/serialize_matcher.rb +112 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record.rb +25 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/assertion_error.rb +16 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/integrations/rspec.rb +20 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/integrations/test_unit.rb +42 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/version.rb +5 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers.rb +8 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda-matchers.rb +1 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/shoulda-matchers.gemspec +33 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/active_model/validate_uniqueness_of_matcher_spec.rb +195 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/filter_param_matcher_spec.rb +22 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/redirect_to_matcher_spec.rb +42 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/render_template_matcher_spec.rb +78 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/render_with_layout_matcher_spec.rb +58 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/respond_with_matcher_spec.rb +31 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/route_matcher_spec.rb +65 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/set_session_matcher_spec.rb +51 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/set_the_flash_matcher_spec.rb +153 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/allow_mass_assignment_of_matcher_spec.rb +111 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/allow_value_matcher_spec.rb +146 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/disallow_value_matcher_spec.rb +43 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/ensure_exclusion_of_matcher_spec.rb +95 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/ensure_inclusion_of_matcher_spec.rb +194 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/ensure_length_of_matcher_spec.rb +159 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/exception_message_finder_spec.rb +112 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/helpers_spec.rb +158 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/odd_even_number_matcher_spec.rb +93 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/only_integer_matcher_spec.rb +52 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validate_acceptance_of_matcher_spec.rb +41 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validate_confirmation_of_matcher_spec.rb +47 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +133 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +143 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validate_uniqueness_of_matcher_spec.rb +212 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validation_message_finder_spec.rb +119 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/accept_nested_attributes_for_matcher_spec.rb +106 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/association_matcher_spec.rb +606 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/have_db_column_matcher_spec.rb +111 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/have_db_index_matcher_spec.rb +78 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/have_readonly_attributes_matcher_spec.rb +41 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/serialize_matcher_spec.rb +86 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/spec_helper.rb +28 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/active_model_versions.rb +13 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/activemodel_helpers.rb +19 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/class_builder.rb +42 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/controller_builder.rb +80 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/i18n_faker.rb +10 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/mailer_builder.rb +10 -0
- data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/model_builder.rb +77 -0
- data/vendor/bundle/gems/tilt-1.4.1/CHANGELOG.md +44 -0
- data/vendor/bundle/gems/tilt-1.4.1/COPYING +18 -0
- data/vendor/bundle/gems/tilt-1.4.1/Gemfile +32 -0
- data/vendor/bundle/gems/tilt-1.4.1/HACKING +16 -0
- data/vendor/bundle/gems/tilt-1.4.1/README.md +232 -0
- data/vendor/bundle/gems/tilt-1.4.1/Rakefile +104 -0
- data/vendor/bundle/gems/tilt-1.4.1/TEMPLATES.md +516 -0
- data/vendor/bundle/gems/tilt-1.4.1/bin/tilt +112 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/asciidoc.rb +34 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/builder.rb +40 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/coffee.rb +54 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/css.rb +80 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/csv.rb +71 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/erb.rb +110 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/etanni.rb +27 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/haml.rb +64 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/liquid.rb +45 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/markaby.rb +52 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/markdown.rb +214 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/nokogiri.rb +43 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/plain.rb +20 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/radius.rb +55 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/rdoc.rb +47 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/string.rb +21 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/template.rb +292 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/textile.rb +30 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/wiki.rb +58 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/yajl.rb +94 -0
- data/vendor/bundle/gems/tilt-1.4.1/lib/tilt.rb +204 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/contest.rb +68 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/markaby/locals.mab +1 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/markaby/markaby.mab +1 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/markaby/markaby_other_static.mab +1 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/markaby/render_twice.mab +1 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/markaby/scope.mab +1 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/markaby/yielding.mab +2 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_asciidoctor_test.rb +44 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_blueclothtemplate_test.rb +45 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_buildertemplate_test.rb +59 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_cache_test.rb +32 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_coffeescripttemplate_test.rb +114 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_compilesite_test.rb +51 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_creoletemplate_test.rb +28 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_csv_test.rb +69 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_erbtemplate_test.rb +239 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_erubistemplate_test.rb +151 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_etannitemplate_test.rb +173 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_fallback_test.rb +122 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_hamltemplate_test.rb +144 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_kramdown_test.rb +42 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_lesstemplate_test.less +1 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_lesstemplate_test.rb +42 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_liquidtemplate_test.rb +78 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_markaby_test.rb +88 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_markdown_test.rb +172 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_marukutemplate_test.rb +48 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_nokogiritemplate_test.rb +87 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_radiustemplate_test.rb +75 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_rdiscounttemplate_test.rb +55 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_rdoctemplate_test.rb +31 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_redcarpettemplate_test.rb +71 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_redclothtemplate_test.rb +36 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_sasstemplate_test.rb +41 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_stringtemplate_test.rb +170 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_template_test.rb +323 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_test.rb +65 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_wikiclothtemplate_test.rb +32 -0
- data/vendor/bundle/gems/tilt-1.4.1/test/tilt_yajltemplate_test.rb +101 -0
- data/vendor/bundle/gems/tilt-1.4.1/tilt.gemspec +120 -0
- data/vendor/bundle/gems/yard-0.8.6.1/LEGAL +66 -0
- data/vendor/bundle/gems/yard-0.8.6.1/LICENSE +22 -0
- data/vendor/bundle/gems/yard-0.8.6.1/README.md +601 -0
- data/vendor/bundle/gems/yard-0.8.6.1/Rakefile +61 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/builtins_vs_eval.rb +23 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/concat_vs_join.rb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/erb_vs_erubis.rb +53 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/format_args.rb +46 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/generation.rb +37 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/marshal_vs_dbm.rb +63 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/parsing.rb +46 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/pathname_vs_string.rb +50 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/rdoc_vs_yardoc.rb +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/registry_store_types.rb +48 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/ri_vs_yri.rb +18 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/ripper_parser.rb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/splat_vs_flatten.rb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/template_erb.rb +22 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/template_format.rb +6 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/template_profile.rb +17 -0
- data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/yri_cache.rb +19 -0
- data/vendor/bundle/gems/yard-0.8.6.1/bin/yard +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/bin/yardoc +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/bin/yri +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/CodeObjects.md +115 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/GettingStarted.md +592 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/Handlers.md +152 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/Overview.md +61 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/Parser.md +191 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/Tags.md +282 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/TagsArch.md +123 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/Templates.md +496 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/WhatsNew.md +1244 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/images/code-objects-class-diagram.png +0 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/images/handlers-class-diagram.png +0 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/images/overview-class-diagram.png +0 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/images/parser-class-diagram.png +0 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/images/tags-class-diagram.png +0 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/fulldoc/html/full_list_tag.erb +7 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/fulldoc/html/setup.rb +6 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/layout/html/setup.rb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/layout/html/tag_list.erb +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/yard_tags/html/list.erb +18 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/yard_tags/html/setup.rb +27 -0
- data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/plugin.rb +65 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/rubygems_plugin.rb +4 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/autoload.rb +290 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/command.rb +84 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/command_parser.rb +92 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/config.rb +136 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/diff.rb +270 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/display.rb +68 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/gems.rb +83 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/graph.rb +125 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/help.rb +18 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/i18n.rb +69 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/list.rb +22 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/markup_types.rb +33 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/server.rb +253 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/stats.rb +213 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/yardoc.rb +731 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/yardopts_command.rb +109 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/yri.rb +214 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/base.rb +585 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/class_object.rb +143 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/class_variable_object.rb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/constant_object.rb +13 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/extended_method_object.rb +23 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/extra_file_object.rb +128 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/macro_object.rb +172 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/method_object.rb +191 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/module_object.rb +18 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/namespace_object.rb +200 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/proxy.rb +258 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/root_object.rb +17 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/config.rb +269 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/array.rb +15 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/file.rb +65 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/hash.rb +15 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/insertion.rb +60 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/module.rb +19 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/string.rb +67 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/symbol_hash.rb +73 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/docstring.rb +364 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/docstring_parser.rb +321 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/globals.rb +18 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/base.rb +597 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/alias_handler.rb +15 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/attribute_handler.rb +13 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/base.rb +110 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/class_handler.rb +26 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/constant_handler.rb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/handler_methods.rb +166 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/init_handler.rb +18 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/method_handler.rb +35 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/mixin_handler.rb +13 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/module_handler.rb +16 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/override_comment_handler.rb +30 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/path_handler.rb +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/struct_handler.rb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/symbol_handler.rb +7 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/processor.rb +201 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/alias_handler.rb +41 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/attribute_handler.rb +82 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/base.rb +164 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/class_condition_handler.rb +86 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/class_handler.rb +121 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/class_variable_handler.rb +16 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/comment_handler.rb +9 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/constant_handler.rb +45 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/dsl_handler.rb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/dsl_handler_methods.rb +77 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/exception_handler.rb +26 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/extend_handler.rb +21 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/alias_handler.rb +34 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/attribute_handler.rb +60 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/base.rb +250 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/class_condition_handler.rb +83 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/class_handler.rb +111 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/class_variable_handler.rb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/comment_handler.rb +9 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/constant_handler.rb +28 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/dsl_handler.rb +16 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/exception_handler.rb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/extend_handler.rb +20 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/method_handler.rb +85 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/mixin_handler.rb +39 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/module_function_handler.rb +18 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/module_handler.rb +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/private_constant_handler.rb +21 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/visibility_handler.rb +16 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/yield_handler.rb +28 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/method_condition_handler.rb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/method_handler.rb +92 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/mixin_handler.rb +36 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/module_function_handler.rb +26 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/module_handler.rb +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/private_constant_handler.rb +36 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/struct_handler_methods.rb +141 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/visibility_handler.rb +24 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/yield_handler.rb +30 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/i18n/locale.rb +74 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/i18n/message.rb +56 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/i18n/messages.rb +55 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/i18n/pot_generator.rb +280 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/i18n/text.rb +173 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/logging.rb +190 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/options.rb +216 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/base.rb +56 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/c/c_parser.rb +225 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/c/comment_parser.rb +131 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/c/statement.rb +63 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/ast_node.rb +496 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/legacy/ruby_lex.rb +1377 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/legacy/ruby_parser.rb +31 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/legacy/statement.rb +65 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/legacy/statement_list.rb +384 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/legacy/token_list.rb +71 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/ruby_parser.rb +625 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/source_parser.rb +517 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rake/yardoc_task.rb +74 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/registry.rb +438 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/registry_store.rb +319 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/backports/LICENSE.txt +57 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/backports/MIT.txt +20 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/backports/gem.rb +9 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/backports/source_index.rb +370 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/backports.rb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/doc_manager.rb +88 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/specification.rb +41 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/serializers/base.rb +80 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/serializers/file_system_serializer.rb +90 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/serializers/process_serializer.rb +24 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/serializers/stdout_serializer.rb +32 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/serializers/yardoc_serializer.rb +124 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/adapter.rb +100 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/base.rb +192 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/display_file_command.rb +24 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/display_object_command.rb +58 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/frames_command.rb +15 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/library_command.rb +148 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/library_index_command.rb +24 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/list_command.rb +24 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/search_command.rb +78 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/static_file_command.rb +57 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/doc_server_helper.rb +76 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/doc_server_serializer.rb +33 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/library_version.rb +227 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/rack_adapter.rb +88 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/router.rb +176 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/static_caching.rb +45 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/fulldoc/html/css/custom.css +78 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/fulldoc/html/images/processing.gif +0 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/fulldoc/html/js/autocomplete.js +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/layout/html/breadcrumb.erb +46 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/layout/html/script_setup.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/layout/html/setup.rb +7 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/method_details/html/permalink.erb +4 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/method_details/html/setup.rb +4 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/library_list/html/contents.erb +13 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/library_list/html/headers.erb +26 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/library_list/html/library_list.erb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/library_list/html/setup.rb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/library_list/html/title.erb +2 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/processing/html/processing.erb +51 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/processing/html/setup.rb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/search/html/search.erb +18 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/search/html/setup.rb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/webrick_adapter.rb +43 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server.rb +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/default_factory.rb +176 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/default_tag.rb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/directives.rb +595 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/library.rb +630 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/option_tag.rb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/overload_tag.rb +65 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/ref_tag.rb +7 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/ref_tag_list.rb +27 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/tag.rb +57 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/tag_format_error.rb +6 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/engine.rb +185 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/erb_cache.rb +22 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/base_helper.rb +212 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/filter_helper.rb +26 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/html_helper.rb +599 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +59 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/markup/rdoc_markdown.rb +22 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/markup/rdoc_markup.rb +106 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/markup_helper.rb +169 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/method_helper.rb +74 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/module_helper.rb +19 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/text_helper.rb +95 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/uml_helper.rb +46 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/section.rb +106 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/template.rb +407 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/template_options.rb +88 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/verifier.rb +148 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/version.rb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/lib/yard.rb +71 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/command_parser_spec.rb +43 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/command_spec.rb +36 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/config_spec.rb +92 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/diff_spec.rb +260 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/display_spec.rb +30 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/gems_spec.rb +81 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/graph_spec.rb +17 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/help_spec.rb +22 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/i18n_spec.rb +111 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/list_spec.rb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/markup_types_spec.rb +22 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/server_spec.rb +327 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/stats_spec.rb +90 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/yardoc_spec.rb +777 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/yri_spec.rb +99 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/base_spec.rb +438 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/class_object_spec.rb +225 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/code_object_list_spec.rb +33 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/constants_spec.rb +82 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/extra_file_object_spec.rb +147 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/macro_object_spec.rb +148 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/method_object_spec.rb +175 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/module_object_spec.rb +141 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/namespace_object_spec.rb +170 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/proxy_spec.rb +140 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/spec_helper.rb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/config_spec.rb +176 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/array_spec.rb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/file_spec.rb +68 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/hash_spec.rb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/insertion_spec.rb +37 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/module_spec.rb +15 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/string_spec.rb +42 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/symbol_hash_spec.rb +86 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/docstring_parser_spec.rb +228 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/docstring_spec.rb +325 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/alias_handler_spec.rb +80 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/attribute_handler_spec.rb +94 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/base_spec.rb +206 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/alias_handler_spec.rb +33 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/attribute_handler_spec.rb +40 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/class_handler_spec.rb +63 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/constant_handler_spec.rb +68 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/init_handler_spec.rb +47 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/method_handler_spec.rb +229 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/mixin_handler_spec.rb +27 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/module_handler_spec.rb +38 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/override_comment_handler_spec.rb +46 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/path_handler_spec.rb +35 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/spec_helper.rb +13 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/struct_handler_spec.rb +15 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/class_condition_handler_spec.rb +67 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/class_handler_spec.rb +246 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/class_variable_handler_spec.rb +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/constant_handler_spec.rb +64 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/dsl_handler_spec.rb +197 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/alias_handler_001.rb.txt +44 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/attribute_handler_001.rb.txt +32 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/class_condition_handler_001.rb.txt +69 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/class_handler_001.rb.txt +120 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/class_variable_handler_001.rb.txt +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/constant_handler_001.rb.txt +25 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/dsl_handler_001.rb.txt +125 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/exception_handler_001.rb.txt +59 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/extend_handler_001.rb.txt +16 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/method_condition_handler_001.rb.txt +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/method_handler_001.rb.txt +126 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/mixin_handler_001.rb.txt +37 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/module_handler_001.rb.txt +29 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/private_constant_handler_001.rb.txt +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/process_handler_001.rb.txt +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/visibility_handler_001.rb.txt +32 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/yield_handler_001.rb.txt +54 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/exception_handler_spec.rb +48 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/extend_handler_spec.rb +23 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/legacy_base_spec.rb +128 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/method_condition_handler_spec.rb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/method_handler_spec.rb +184 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/mixin_handler_spec.rb +55 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/module_function_handler_spec.rb +105 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/module_handler_spec.rb +34 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/private_constant_handler_spec.rb +24 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/processor_spec.rb +34 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/ruby/base_spec.rb +94 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/ruby/legacy/base_spec.rb +82 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/spec_helper.rb +33 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/visibility_handler_spec.rb +39 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/yield_handler_spec.rb +51 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/i18n/locale_spec.rb +68 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/i18n/message_spec.rb +52 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/i18n/messages_spec.rb +67 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/i18n/pot_generator_spec.rb +262 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/i18n/text_spec.rb +180 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/logging_spec.rb +35 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/options_spec.rb +171 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/base_spec.rb +24 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/c_parser_spec.rb +166 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/array.c.txt +3887 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/example1.rb.txt +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/extrafile.c.txt +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/multifile.c.txt +6 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/override.c.txt +424 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/parse_in_order_001.rb.txt +2 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/parse_in_order_002.rb.txt +2 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/tag_handler_001.rb.txt +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/ruby/ast_node_spec.rb +33 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/ruby/legacy/statement_list_spec.rb +299 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/ruby/legacy/token_list_spec.rb +77 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/ruby/ruby_parser_spec.rb +334 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/source_parser_spec.rb +717 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/tag_parsing_spec.rb +18 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/rake/yardoc_task_spec.rb +101 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/registry_spec.rb +393 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/registry_store_spec.rb +315 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/rubygems/doc_manager_spec.rb +112 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/checksums +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/objects/Foo/bar_i.dat +0 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/objects/Foo/baz_i.dat +0 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/objects/Foo.dat +0 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/objects/root.dat +0 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/proxy_types +2 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/file_system_serializer_spec.rb +124 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/spec_helper.rb +2 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/yardoc_serializer_spec.rb +46 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server/adapter_spec.rb +38 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server/commands/base_spec.rb +87 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server/commands/library_command_spec.rb +39 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server/commands/static_file_command_spec.rb +84 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server/doc_server_helper_spec.rb +53 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server/doc_server_serializer_spec.rb +45 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server/rack_adapter_spec.rb +20 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server/router_spec.rb +122 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server/spec_helper.rb +17 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server/static_caching_spec.rb +39 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server/webrick_servlet_spec.rb +20 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/server_spec.rb +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/spec_helper.rb +128 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/default_factory_spec.rb +152 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/default_tag_spec.rb +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/directives_spec.rb +436 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/library_spec.rb +34 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/overload_tag_spec.rb +53 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/ref_tag_list_spec.rb +53 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/class_spec.rb +44 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/constant_spec.rb +40 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/engine_spec.rb +121 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/class001.html +280 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/class001.txt +36 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/class002.html +35 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/constant001.txt +25 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/constant002.txt +7 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/constant003.txt +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method001.html +130 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method001.txt +35 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method002.html +86 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method002.txt +20 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method003.html +159 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method003.txt +45 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method004.html +44 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method004.txt +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method005.html +99 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method005.txt +33 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module001.dot +33 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module001.html +791 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module001.txt +33 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module002.html +318 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module003.html +185 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module004.html +387 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/tag001.txt +82 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/base_helper_spec.rb +175 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/html_helper_spec.rb +612 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/html_syntax_highlight_helper_spec.rb +48 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/markup/rdoc_markup_spec.rb +84 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/markup_helper_spec.rb +135 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/method_helper_spec.rb +82 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/shared_signature_examples.rb +123 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/text_helper_spec.rb +44 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/method_spec.rb +102 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/module_spec.rb +181 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/onefile_spec.rb +64 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/section_spec.rb +146 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/spec_helper.rb +73 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/tag_spec.rb +51 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/template_spec.rb +409 -0
- data/vendor/bundle/gems/yard-0.8.6.1/spec/verifier_spec.rb +106 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/dot/setup.rb +6 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/dot/superklass.erb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/html/constructor_details.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/html/setup.rb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/html/subclasses.erb +4 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/setup.rb +36 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/text/setup.rb +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/text/subclasses.erb +5 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/constant/text/header.erb +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/constant/text/setup.rb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/abstract.erb +4 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/deprecated.erb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/index.erb +5 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/note.erb +6 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/private.erb +4 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/returns_void.erb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/text.erb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/todo.erb +6 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/setup.rb +49 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/abstract.erb +2 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/deprecated.erb +2 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/index.erb +2 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/note.erb +4 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/private.erb +2 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/returns_void.erb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/text.erb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/todo.erb +4 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/css/common.css +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/css/full_list.css +57 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/css/style.css +338 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/frames.erb +28 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/full_list.erb +39 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/full_list_class.erb +2 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/full_list_file.erb +5 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/full_list_method.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/js/app.js +214 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/js/full_list.js +178 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/js/jquery.js +4 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/setup.rb +199 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/dot/header.erb +6 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/dot/setup.rb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/breadcrumb.erb +13 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/files.erb +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/footer.erb +5 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/headers.erb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/index.erb +2 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/layout.erb +20 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/listing.erb +4 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/objects.erb +32 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/script_setup.erb +5 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/search.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/setup.rb +71 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method/html/header.erb +16 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method/setup.rb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method/text/header.erb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/html/header.erb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/html/method_signature.erb +25 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/html/source.erb +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/setup.rb +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/text/header.erb +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/text/method_signature.erb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/text/setup.rb +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/dot/child.erb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/dot/dependencies.erb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/dot/header.erb +6 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/dot/info.erb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/dot/setup.rb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/attribute_details.erb +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/attribute_summary.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/box_info.erb +37 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/children.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/constant_summary.erb +13 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/defines.erb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/header.erb +5 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/inherited_attributes.erb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/inherited_constants.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/inherited_methods.erb +19 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/item_summary.erb +40 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/method_details_list.erb +9 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/method_summary.erb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/methodmissing.erb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/pre_docstring.erb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/setup.rb +164 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/children.erb +10 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/class_meths_list.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/extends.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/header.erb +7 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/includes.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/instance_meths_list.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/setup.rb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/onefile/html/files.erb +5 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/onefile/html/headers.erb +6 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/onefile/html/layout.erb +17 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/onefile/html/readme.erb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/onefile/html/setup.rb +61 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/root/dot/child.erb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/root/dot/setup.rb +5 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/root/html/setup.rb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/example.erb +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/index.erb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/option.erb +24 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/overload.erb +14 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/see.erb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/tag.erb +20 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/setup.rb +55 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/example.erb +12 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/index.erb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/option.erb +20 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/overload.erb +19 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/see.erb +11 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/tag.erb +13 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/class/html/setup.rb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/docstring/html/setup.rb +1 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/fulldoc/html/css/style.css +108 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/fulldoc/html/js/app.js +33 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/fulldoc/html/setup.rb +73 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/layout/html/layout.erb +81 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/layout/html/setup.rb +28 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/method/html/header.erb +18 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/method/html/setup.rb +21 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/module/html/header.erb +7 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/module/html/method_list.erb +5 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/module/html/setup.rb +26 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/onefile/html/files.erb +4 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/onefile/html/setup.rb +5 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/onefile/html/toc.erb +3 -0
- data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/tags/html/setup.rb +8 -0
- data/vendor/bundle/gems/yard-0.8.6.1/yard.gemspec +25 -0
- data/vendor/bundle/specifications/highline-1.6.18.gemspec +21 -0
- data/vendor/bundle/specifications/mime-types-1.23.gemspec +67 -0
- data/vendor/bundle/specifications/minitest-4.7.4.gemspec +36 -0
- data/vendor/bundle/specifications/multi_json-1.7.3.gemspec +30 -0
- data/vendor/bundle/specifications/rdiscount-2.0.7.3.gemspec +21 -0
- data/vendor/bundle/specifications/shoulda-3.5.0.gemspec +50 -0
- data/vendor/bundle/specifications/shoulda-matchers-2.1.0.gemspec +57 -0
- data/vendor/bundle/specifications/tilt-1.4.1.gemspec +98 -0
- data/vendor/bundle/specifications/yard-0.8.6.1.gemspec +20 -0
- metadata +964 -2
@@ -0,0 +1,1227 @@
|
|
1
|
+
/* markdown: a C implementation of John Gruber's Markdown markup language.
|
2
|
+
*
|
3
|
+
* Copyright (C) 2007 David L Parsons.
|
4
|
+
* The redistribution terms are provided in the COPYRIGHT file that must
|
5
|
+
* be distributed with this source code.
|
6
|
+
*/
|
7
|
+
#include "config.h"
|
8
|
+
|
9
|
+
#include <stdio.h>
|
10
|
+
#include <string.h>
|
11
|
+
#include <stdarg.h>
|
12
|
+
#include <stdlib.h>
|
13
|
+
#include <time.h>
|
14
|
+
#include <ctype.h>
|
15
|
+
|
16
|
+
#include "cstring.h"
|
17
|
+
#include "markdown.h"
|
18
|
+
#include "amalloc.h"
|
19
|
+
#include "tags.h"
|
20
|
+
|
21
|
+
typedef int (*stfu)(const void*,const void*);
|
22
|
+
|
23
|
+
typedef ANCHOR(Paragraph) ParagraphRoot;
|
24
|
+
|
25
|
+
/* case insensitive string sort for Footnote tags.
|
26
|
+
*/
|
27
|
+
int
|
28
|
+
__mkd_footsort(Footnote *a, Footnote *b)
|
29
|
+
{
|
30
|
+
int i;
|
31
|
+
char ac, bc;
|
32
|
+
|
33
|
+
if ( S(a->tag) != S(b->tag) )
|
34
|
+
return S(a->tag) - S(b->tag);
|
35
|
+
|
36
|
+
for ( i=0; i < S(a->tag); i++) {
|
37
|
+
ac = tolower(T(a->tag)[i]);
|
38
|
+
bc = tolower(T(b->tag)[i]);
|
39
|
+
|
40
|
+
if ( isspace(ac) && isspace(bc) )
|
41
|
+
continue;
|
42
|
+
if ( ac != bc )
|
43
|
+
return ac - bc;
|
44
|
+
}
|
45
|
+
return 0;
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
/* find the first blank character after position <i>
|
50
|
+
*/
|
51
|
+
static int
|
52
|
+
nextblank(Line *t, int i)
|
53
|
+
{
|
54
|
+
while ( (i < S(t->text)) && !isspace(T(t->text)[i]) )
|
55
|
+
++i;
|
56
|
+
return i;
|
57
|
+
}
|
58
|
+
|
59
|
+
|
60
|
+
/* find the next nonblank character after position <i>
|
61
|
+
*/
|
62
|
+
static int
|
63
|
+
nextnonblank(Line *t, int i)
|
64
|
+
{
|
65
|
+
while ( (i < S(t->text)) && isspace(T(t->text)[i]) )
|
66
|
+
++i;
|
67
|
+
return i;
|
68
|
+
}
|
69
|
+
|
70
|
+
|
71
|
+
/* find the first nonblank character on the Line.
|
72
|
+
*/
|
73
|
+
int
|
74
|
+
mkd_firstnonblank(Line *p)
|
75
|
+
{
|
76
|
+
return nextnonblank(p,0);
|
77
|
+
}
|
78
|
+
|
79
|
+
|
80
|
+
static int
|
81
|
+
blankline(Line *p)
|
82
|
+
{
|
83
|
+
return ! (p && (S(p->text) > p->dle) );
|
84
|
+
}
|
85
|
+
|
86
|
+
|
87
|
+
static Line *
|
88
|
+
skipempty(Line *p)
|
89
|
+
{
|
90
|
+
while ( p && (p->dle == S(p->text)) )
|
91
|
+
p = p->next;
|
92
|
+
return p;
|
93
|
+
}
|
94
|
+
|
95
|
+
|
96
|
+
void
|
97
|
+
___mkd_tidy(Cstring *t)
|
98
|
+
{
|
99
|
+
while ( S(*t) && isspace(T(*t)[S(*t)-1]) )
|
100
|
+
--S(*t);
|
101
|
+
}
|
102
|
+
|
103
|
+
|
104
|
+
static struct kw comment = { "!--", 3, 0 };
|
105
|
+
|
106
|
+
static struct kw *
|
107
|
+
isopentag(Line *p)
|
108
|
+
{
|
109
|
+
int i=0, len;
|
110
|
+
char *line;
|
111
|
+
|
112
|
+
if ( !p ) return 0;
|
113
|
+
|
114
|
+
line = T(p->text);
|
115
|
+
len = S(p->text);
|
116
|
+
|
117
|
+
if ( len < 3 || line[0] != '<' )
|
118
|
+
return 0;
|
119
|
+
|
120
|
+
if ( line[1] == '!' && line[2] == '-' && line[3] == '-' )
|
121
|
+
/* comments need special case handling, because
|
122
|
+
* the !-- doesn't need to end in a whitespace
|
123
|
+
*/
|
124
|
+
return &comment;
|
125
|
+
|
126
|
+
/* find how long the tag is so we can check to see if
|
127
|
+
* it's a block-level tag
|
128
|
+
*/
|
129
|
+
for ( i=1; i < len && T(p->text)[i] != '>'
|
130
|
+
&& T(p->text)[i] != '/'
|
131
|
+
&& !isspace(T(p->text)[i]); ++i )
|
132
|
+
;
|
133
|
+
|
134
|
+
|
135
|
+
return mkd_search_tags(T(p->text)+1, i-1);
|
136
|
+
}
|
137
|
+
|
138
|
+
|
139
|
+
typedef struct _flo {
|
140
|
+
Line *t;
|
141
|
+
int i;
|
142
|
+
} FLO;
|
143
|
+
|
144
|
+
#define floindex(x) (x.i)
|
145
|
+
|
146
|
+
|
147
|
+
static int
|
148
|
+
flogetc(FLO *f)
|
149
|
+
{
|
150
|
+
if ( f && f->t ) {
|
151
|
+
if ( f->i < S(f->t->text) )
|
152
|
+
return T(f->t->text)[f->i++];
|
153
|
+
f->t = f->t->next;
|
154
|
+
f->i = 0;
|
155
|
+
return flogetc(f);
|
156
|
+
}
|
157
|
+
return EOF;
|
158
|
+
}
|
159
|
+
|
160
|
+
|
161
|
+
static void
|
162
|
+
splitline(Line *t, int cutpoint)
|
163
|
+
{
|
164
|
+
if ( t && (cutpoint < S(t->text)) ) {
|
165
|
+
Line *tmp = calloc(1, sizeof *tmp);
|
166
|
+
|
167
|
+
tmp->next = t->next;
|
168
|
+
t->next = tmp;
|
169
|
+
|
170
|
+
tmp->dle = t->dle;
|
171
|
+
SUFFIX(tmp->text, T(t->text)+cutpoint, S(t->text)-cutpoint);
|
172
|
+
S(t->text) = cutpoint;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
|
177
|
+
static Line *
|
178
|
+
commentblock(Paragraph *p, int *unclosed)
|
179
|
+
{
|
180
|
+
Line *t, *ret;
|
181
|
+
char *end;
|
182
|
+
|
183
|
+
for ( t = p->text; t ; t = t->next) {
|
184
|
+
if ( end = strstr(T(t->text), "-->") ) {
|
185
|
+
splitline(t, 3 + (end - T(t->text)) );
|
186
|
+
ret = t->next;
|
187
|
+
t->next = 0;
|
188
|
+
return ret;
|
189
|
+
}
|
190
|
+
}
|
191
|
+
*unclosed = 1;
|
192
|
+
return t;
|
193
|
+
|
194
|
+
}
|
195
|
+
|
196
|
+
|
197
|
+
static Line *
|
198
|
+
htmlblock(Paragraph *p, struct kw *tag, int *unclosed)
|
199
|
+
{
|
200
|
+
Line *ret;
|
201
|
+
FLO f = { p->text, 0 };
|
202
|
+
int c;
|
203
|
+
int i, closing, depth=0;
|
204
|
+
|
205
|
+
*unclosed = 0;
|
206
|
+
|
207
|
+
if ( tag == &comment )
|
208
|
+
return commentblock(p, unclosed);
|
209
|
+
|
210
|
+
if ( tag->selfclose ) {
|
211
|
+
ret = f.t->next;
|
212
|
+
f.t->next = 0;
|
213
|
+
return ret;
|
214
|
+
}
|
215
|
+
|
216
|
+
while ( (c = flogetc(&f)) != EOF ) {
|
217
|
+
if ( c == '<' ) {
|
218
|
+
/* tag? */
|
219
|
+
c = flogetc(&f);
|
220
|
+
if ( c == '!' ) { /* comment? */
|
221
|
+
if ( flogetc(&f) == '-' && flogetc(&f) == '-' ) {
|
222
|
+
/* yes */
|
223
|
+
while ( (c = flogetc(&f)) != EOF ) {
|
224
|
+
if ( c == '-' && flogetc(&f) == '-'
|
225
|
+
&& flogetc(&f) == '>')
|
226
|
+
/* consumed whole comment */
|
227
|
+
break;
|
228
|
+
}
|
229
|
+
}
|
230
|
+
}
|
231
|
+
else {
|
232
|
+
if ( closing = (c == '/') ) c = flogetc(&f);
|
233
|
+
|
234
|
+
for ( i=0; i < tag->size; c=flogetc(&f) ) {
|
235
|
+
if ( tag->id[i++] != toupper(c) )
|
236
|
+
break;
|
237
|
+
}
|
238
|
+
|
239
|
+
if ( (i == tag->size) && !isalnum(c) ) {
|
240
|
+
depth = depth + (closing ? -1 : 1);
|
241
|
+
if ( depth == 0 ) {
|
242
|
+
while ( c != EOF && c != '>' ) {
|
243
|
+
/* consume trailing gunk in close tag */
|
244
|
+
c = flogetc(&f);
|
245
|
+
}
|
246
|
+
if ( c == EOF )
|
247
|
+
break;
|
248
|
+
if ( !f.t )
|
249
|
+
return 0;
|
250
|
+
splitline(f.t, floindex(f));
|
251
|
+
ret = f.t->next;
|
252
|
+
f.t->next = 0;
|
253
|
+
return ret;
|
254
|
+
}
|
255
|
+
}
|
256
|
+
}
|
257
|
+
}
|
258
|
+
}
|
259
|
+
*unclosed = 1;
|
260
|
+
return 0;
|
261
|
+
}
|
262
|
+
|
263
|
+
|
264
|
+
/* tables look like
|
265
|
+
* header|header{|header}
|
266
|
+
* ------|------{|......}
|
267
|
+
* {body lines}
|
268
|
+
*/
|
269
|
+
static int
|
270
|
+
istable(Line *t)
|
271
|
+
{
|
272
|
+
char *p;
|
273
|
+
Line *dashes = t->next;
|
274
|
+
int contains = 0; /* found character bits; 0x01 is |, 0x02 is - */
|
275
|
+
|
276
|
+
/* two lines, first must contain | */
|
277
|
+
if ( !(dashes && memchr(T(t->text), '|', S(t->text))) )
|
278
|
+
return 0;
|
279
|
+
|
280
|
+
/* second line must contain - or | and nothing
|
281
|
+
* else except for whitespace or :
|
282
|
+
*/
|
283
|
+
for ( p = T(dashes->text)+S(dashes->text)-1; p >= T(dashes->text); --p)
|
284
|
+
if ( *p == '|' )
|
285
|
+
contains |= 0x01;
|
286
|
+
else if ( *p == '-' )
|
287
|
+
contains |= 0x02;
|
288
|
+
else if ( ! ((*p == ':') || isspace(*p)) )
|
289
|
+
return 0;
|
290
|
+
|
291
|
+
return (contains & 0x03);
|
292
|
+
}
|
293
|
+
|
294
|
+
|
295
|
+
/* footnotes look like ^<whitespace>{0,3}[stuff]: <content>$
|
296
|
+
*/
|
297
|
+
static int
|
298
|
+
isfootnote(Line *t)
|
299
|
+
{
|
300
|
+
int i;
|
301
|
+
|
302
|
+
if ( ( (i = t->dle) > 3) || (T(t->text)[i] != '[') )
|
303
|
+
return 0;
|
304
|
+
|
305
|
+
for ( ++i; i < S(t->text) ; ++i ) {
|
306
|
+
if ( T(t->text)[i] == '[' )
|
307
|
+
return 0;
|
308
|
+
else if ( T(t->text)[i] == ']' )
|
309
|
+
return ( T(t->text)[i+1] == ':' ) ;
|
310
|
+
}
|
311
|
+
return 0;
|
312
|
+
}
|
313
|
+
|
314
|
+
|
315
|
+
static int
|
316
|
+
isquote(Line *t)
|
317
|
+
{
|
318
|
+
int j;
|
319
|
+
|
320
|
+
for ( j=0; j < 4; j++ )
|
321
|
+
if ( T(t->text)[j] == '>' )
|
322
|
+
return 1;
|
323
|
+
else if ( !isspace(T(t->text)[j]) )
|
324
|
+
return 0;
|
325
|
+
return 0;
|
326
|
+
}
|
327
|
+
|
328
|
+
|
329
|
+
static int
|
330
|
+
dashchar(char c)
|
331
|
+
{
|
332
|
+
return (c == '*') || (c == '-') || (c == '_');
|
333
|
+
}
|
334
|
+
|
335
|
+
|
336
|
+
static int
|
337
|
+
iscode(Line *t)
|
338
|
+
{
|
339
|
+
return (t->dle >= 4);
|
340
|
+
}
|
341
|
+
|
342
|
+
|
343
|
+
static int
|
344
|
+
ishr(Line *t)
|
345
|
+
{
|
346
|
+
int i, count=0;
|
347
|
+
char dash = 0;
|
348
|
+
char c;
|
349
|
+
|
350
|
+
if ( iscode(t) ) return 0;
|
351
|
+
|
352
|
+
for ( i = 0; i < S(t->text); i++) {
|
353
|
+
c = T(t->text)[i];
|
354
|
+
if ( (dash == 0) && dashchar(c) )
|
355
|
+
dash = c;
|
356
|
+
|
357
|
+
if ( c == dash ) ++count;
|
358
|
+
else if ( !isspace(c) )
|
359
|
+
return 0;
|
360
|
+
}
|
361
|
+
return (count >= 3);
|
362
|
+
}
|
363
|
+
|
364
|
+
|
365
|
+
static int
|
366
|
+
issetext(Line *t, int *htyp)
|
367
|
+
{
|
368
|
+
int i;
|
369
|
+
/* then check for setext-style HEADER
|
370
|
+
* ======
|
371
|
+
*/
|
372
|
+
|
373
|
+
if ( t->next ) {
|
374
|
+
char *q = T(t->next->text);
|
375
|
+
int last = S(t->next->text);
|
376
|
+
|
377
|
+
if ( (*q == '=') || (*q == '-') ) {
|
378
|
+
/* ignore trailing whitespace */
|
379
|
+
while ( (last > 1) && isspace(q[last-1]) )
|
380
|
+
--last;
|
381
|
+
|
382
|
+
for (i=1; i < last; i++)
|
383
|
+
if ( q[0] != q[i] )
|
384
|
+
return 0;
|
385
|
+
*htyp = SETEXT;
|
386
|
+
return 1;
|
387
|
+
}
|
388
|
+
}
|
389
|
+
return 0;
|
390
|
+
}
|
391
|
+
|
392
|
+
|
393
|
+
static int
|
394
|
+
ishdr(Line *t, int *htyp)
|
395
|
+
{
|
396
|
+
int i;
|
397
|
+
|
398
|
+
|
399
|
+
/* first check for etx-style ###HEADER###
|
400
|
+
*/
|
401
|
+
|
402
|
+
/* leading run of `#`'s ?
|
403
|
+
*/
|
404
|
+
for ( i=0; T(t->text)[i] == '#'; ++i)
|
405
|
+
;
|
406
|
+
|
407
|
+
/* ANY leading `#`'s make this into an ETX header
|
408
|
+
*/
|
409
|
+
if ( i && (i < S(t->text) || i > 1) ) {
|
410
|
+
*htyp = ETX;
|
411
|
+
return 1;
|
412
|
+
}
|
413
|
+
|
414
|
+
return issetext(t, htyp);
|
415
|
+
}
|
416
|
+
|
417
|
+
|
418
|
+
static Line*
|
419
|
+
is_discount_dt(Line *t, int *clip)
|
420
|
+
{
|
421
|
+
#if USE_DISCOUNT_DL
|
422
|
+
if ( t && t->next
|
423
|
+
&& (S(t->text) > 2)
|
424
|
+
&& (t->dle == 0)
|
425
|
+
&& (T(t->text)[0] == '=')
|
426
|
+
&& (T(t->text)[S(t->text)-1] == '=') ) {
|
427
|
+
if ( t->next->dle >= 4 ) {
|
428
|
+
*clip = 4;
|
429
|
+
return t;
|
430
|
+
}
|
431
|
+
else
|
432
|
+
return is_discount_dt(t->next, clip);
|
433
|
+
}
|
434
|
+
#endif
|
435
|
+
return 0;
|
436
|
+
}
|
437
|
+
|
438
|
+
|
439
|
+
static int
|
440
|
+
is_extra_dd(Line *t)
|
441
|
+
{
|
442
|
+
return (t->dle < 4) && (T(t->text)[t->dle] == ':')
|
443
|
+
&& isspace(T(t->text)[t->dle+1]);
|
444
|
+
}
|
445
|
+
|
446
|
+
|
447
|
+
static Line*
|
448
|
+
is_extra_dt(Line *t, int *clip)
|
449
|
+
{
|
450
|
+
#if USE_EXTRA_DL
|
451
|
+
int i;
|
452
|
+
|
453
|
+
if ( t && t->next && T(t->text)[0] != '='
|
454
|
+
&& T(t->text)[S(t->text)-1] != '=') {
|
455
|
+
Line *x;
|
456
|
+
|
457
|
+
if ( iscode(t) || blankline(t) || ishdr(t,&i) || ishr(t) )
|
458
|
+
return 0;
|
459
|
+
|
460
|
+
if ( (x = skipempty(t->next)) && is_extra_dd(x) ) {
|
461
|
+
*clip = x->dle+2;
|
462
|
+
return t;
|
463
|
+
}
|
464
|
+
|
465
|
+
if ( x=is_extra_dt(t->next, clip) )
|
466
|
+
return x;
|
467
|
+
}
|
468
|
+
#endif
|
469
|
+
return 0;
|
470
|
+
}
|
471
|
+
|
472
|
+
|
473
|
+
static Line*
|
474
|
+
isdefinition(Line *t, int *clip, int *kind)
|
475
|
+
{
|
476
|
+
Line *ret;
|
477
|
+
|
478
|
+
*kind = 1;
|
479
|
+
if ( ret = is_discount_dt(t,clip) )
|
480
|
+
return ret;
|
481
|
+
|
482
|
+
*kind=2;
|
483
|
+
return is_extra_dt(t,clip);
|
484
|
+
}
|
485
|
+
|
486
|
+
|
487
|
+
static int
|
488
|
+
islist(Line *t, int *clip, DWORD flags, int *list_type)
|
489
|
+
{
|
490
|
+
int i, j;
|
491
|
+
char *q;
|
492
|
+
|
493
|
+
if ( /*iscode(t) ||*/ blankline(t) || ishdr(t,&i) || ishr(t) )
|
494
|
+
return 0;
|
495
|
+
|
496
|
+
if ( !(flags & (MKD_NODLIST|MKD_STRICT)) && isdefinition(t,clip,list_type) )
|
497
|
+
return DL;
|
498
|
+
|
499
|
+
if ( strchr("*-+", T(t->text)[t->dle]) && isspace(T(t->text)[t->dle+1]) ) {
|
500
|
+
i = nextnonblank(t, t->dle+1);
|
501
|
+
*clip = (i > 4) ? 4 : i;
|
502
|
+
*list_type = UL;
|
503
|
+
return AL;
|
504
|
+
}
|
505
|
+
|
506
|
+
if ( (j = nextblank(t,t->dle)) > t->dle ) {
|
507
|
+
if ( T(t->text)[j-1] == '.' ) {
|
508
|
+
|
509
|
+
if ( !(flags & (MKD_NOALPHALIST|MKD_STRICT))
|
510
|
+
&& (j == t->dle + 2)
|
511
|
+
&& isalpha(T(t->text)[t->dle]) ) {
|
512
|
+
j = nextnonblank(t,j);
|
513
|
+
*clip = (j > 4) ? 4 : j;
|
514
|
+
*list_type = AL;
|
515
|
+
return AL;
|
516
|
+
}
|
517
|
+
|
518
|
+
strtoul(T(t->text)+t->dle, &q, 10);
|
519
|
+
if ( (q > T(t->text)+t->dle) && (q == T(t->text) + (j-1)) ) {
|
520
|
+
j = nextnonblank(t,j);
|
521
|
+
*clip = (j > 4) ? 4 : j;
|
522
|
+
*list_type = OL;
|
523
|
+
return AL;
|
524
|
+
}
|
525
|
+
}
|
526
|
+
}
|
527
|
+
return 0;
|
528
|
+
}
|
529
|
+
|
530
|
+
|
531
|
+
static Line *
|
532
|
+
headerblock(Paragraph *pp, int htyp)
|
533
|
+
{
|
534
|
+
Line *ret = 0;
|
535
|
+
Line *p = pp->text;
|
536
|
+
int i, j;
|
537
|
+
|
538
|
+
switch (htyp) {
|
539
|
+
case SETEXT:
|
540
|
+
/* p->text is header, p->next->text is -'s or ='s
|
541
|
+
*/
|
542
|
+
pp->hnumber = (T(p->next->text)[0] == '=') ? 1 : 2;
|
543
|
+
|
544
|
+
ret = p->next->next;
|
545
|
+
___mkd_freeLine(p->next);
|
546
|
+
p->next = 0;
|
547
|
+
break;
|
548
|
+
|
549
|
+
case ETX:
|
550
|
+
/* p->text is ###header###, so we need to trim off
|
551
|
+
* the leading and trailing `#`'s
|
552
|
+
*/
|
553
|
+
|
554
|
+
for (i=0; (T(p->text)[i] == T(p->text)[0]) && (i < S(p->text)-1)
|
555
|
+
&& (i < 6); i++)
|
556
|
+
;
|
557
|
+
|
558
|
+
pp->hnumber = i;
|
559
|
+
|
560
|
+
while ( (i < S(p->text)) && isspace(T(p->text)[i]) )
|
561
|
+
++i;
|
562
|
+
|
563
|
+
CLIP(p->text, 0, i);
|
564
|
+
|
565
|
+
for (j=S(p->text); (j > 1) && (T(p->text)[j-1] == '#'); --j)
|
566
|
+
;
|
567
|
+
|
568
|
+
while ( j && isspace(T(p->text)[j-1]) )
|
569
|
+
--j;
|
570
|
+
|
571
|
+
S(p->text) = j;
|
572
|
+
|
573
|
+
ret = p->next;
|
574
|
+
p->next = 0;
|
575
|
+
break;
|
576
|
+
}
|
577
|
+
return ret;
|
578
|
+
}
|
579
|
+
|
580
|
+
|
581
|
+
static Line *
|
582
|
+
codeblock(Paragraph *p)
|
583
|
+
{
|
584
|
+
Line *t = p->text, *r;
|
585
|
+
|
586
|
+
for ( ; t; t = r ) {
|
587
|
+
CLIP(t->text,0,4);
|
588
|
+
t->dle = mkd_firstnonblank(t);
|
589
|
+
|
590
|
+
if ( !( (r = skipempty(t->next)) && iscode(r)) ) {
|
591
|
+
___mkd_freeLineRange(t,r);
|
592
|
+
t->next = 0;
|
593
|
+
return r;
|
594
|
+
}
|
595
|
+
}
|
596
|
+
return t;
|
597
|
+
}
|
598
|
+
|
599
|
+
|
600
|
+
static int
|
601
|
+
centered(Line *first, Line *last)
|
602
|
+
{
|
603
|
+
|
604
|
+
if ( first&&last ) {
|
605
|
+
int len = S(last->text);
|
606
|
+
|
607
|
+
if ( (len > 2) && (strncmp(T(first->text), "->", 2) == 0)
|
608
|
+
&& (strncmp(T(last->text)+len-2, "<-", 2) == 0) ) {
|
609
|
+
CLIP(first->text, 0, 2);
|
610
|
+
S(last->text) -= 2;
|
611
|
+
return CENTER;
|
612
|
+
}
|
613
|
+
}
|
614
|
+
return 0;
|
615
|
+
}
|
616
|
+
|
617
|
+
|
618
|
+
static int
|
619
|
+
endoftextblock(Line *t, int toplevelblock, DWORD flags)
|
620
|
+
{
|
621
|
+
int z;
|
622
|
+
|
623
|
+
if ( blankline(t)||isquote(t)||ishdr(t,&z)||ishr(t) )
|
624
|
+
return 1;
|
625
|
+
|
626
|
+
/* HORRIBLE STANDARDS KLUDGE: non-toplevel paragraphs absorb adjacent
|
627
|
+
* code blocks
|
628
|
+
*/
|
629
|
+
if ( toplevelblock && iscode(t) )
|
630
|
+
return 1;
|
631
|
+
|
632
|
+
/* HORRIBLE STANDARDS KLUDGE: Toplevel paragraphs eat absorb adjacent
|
633
|
+
* list items, but sublevel blocks behave properly.
|
634
|
+
*/
|
635
|
+
return toplevelblock ? 0 : islist(t,&z,flags, &z);
|
636
|
+
}
|
637
|
+
|
638
|
+
|
639
|
+
static Line *
|
640
|
+
textblock(Paragraph *p, int toplevel, DWORD flags)
|
641
|
+
{
|
642
|
+
Line *t, *next;
|
643
|
+
|
644
|
+
for ( t = p->text; t ; t = next ) {
|
645
|
+
if ( ((next = t->next) == 0) || endoftextblock(next, toplevel, flags) ) {
|
646
|
+
p->align = centered(p->text, t);
|
647
|
+
t->next = 0;
|
648
|
+
return next;
|
649
|
+
}
|
650
|
+
}
|
651
|
+
return t;
|
652
|
+
}
|
653
|
+
|
654
|
+
|
655
|
+
/* length of the id: or class: kind in a special div-not-quote block
|
656
|
+
*/
|
657
|
+
static int
|
658
|
+
szmarkerclass(char *p)
|
659
|
+
{
|
660
|
+
if ( strncasecmp(p, "id:", 3) == 0 )
|
661
|
+
return 3;
|
662
|
+
if ( strncasecmp(p, "class:", 6) == 0 )
|
663
|
+
return 6;
|
664
|
+
return 0;
|
665
|
+
}
|
666
|
+
|
667
|
+
|
668
|
+
/*
|
669
|
+
* check if the first line of a quoted block is the special div-not-quote
|
670
|
+
* marker %[kind:]name%
|
671
|
+
*/
|
672
|
+
#define iscsschar(c) (isalpha(c) || (c == '-') || (c == '_') )
|
673
|
+
|
674
|
+
static int
|
675
|
+
isdivmarker(Line *p, int start, DWORD flags)
|
676
|
+
{
|
677
|
+
char *s;
|
678
|
+
int last, i;
|
679
|
+
|
680
|
+
if ( flags & (MKD_NODIVQUOTE|MKD_STRICT) )
|
681
|
+
return 0;
|
682
|
+
|
683
|
+
last= S(p->text) - (1 + start);
|
684
|
+
s = T(p->text) + start;
|
685
|
+
|
686
|
+
if ( (last <= 0) || (*s != '%') || (s[last] != '%') )
|
687
|
+
return 0;
|
688
|
+
|
689
|
+
i = szmarkerclass(s+1);
|
690
|
+
|
691
|
+
if ( !iscsschar(s[i+1]) )
|
692
|
+
return 0;
|
693
|
+
while ( ++i < last )
|
694
|
+
if ( !(isdigit(s[i]) || iscsschar(s[i])) )
|
695
|
+
return 0;
|
696
|
+
|
697
|
+
return 1;
|
698
|
+
}
|
699
|
+
|
700
|
+
|
701
|
+
/*
|
702
|
+
* accumulate a blockquote.
|
703
|
+
*
|
704
|
+
* one sick horrible thing about blockquotes is that even though
|
705
|
+
* it just takes ^> to start a quote, following lines, if quoted,
|
706
|
+
* assume that the prefix is ``>''. This means that code needs
|
707
|
+
* to be indented *5* spaces from the leading '>', but *4* spaces
|
708
|
+
* from the start of the line. This does not appear to be
|
709
|
+
* documented in the reference implementation, but it's the
|
710
|
+
* way the markdown sample web form at Daring Fireball works.
|
711
|
+
*/
|
712
|
+
static Line *
|
713
|
+
quoteblock(Paragraph *p, DWORD flags)
|
714
|
+
{
|
715
|
+
Line *t, *q;
|
716
|
+
int qp;
|
717
|
+
|
718
|
+
for ( t = p->text; t ; t = q ) {
|
719
|
+
if ( isquote(t) ) {
|
720
|
+
/* clip leading spaces */
|
721
|
+
for (qp = 0; T(t->text)[qp] != '>'; qp ++)
|
722
|
+
/* assert: the first nonblank character on this line
|
723
|
+
* will be a >
|
724
|
+
*/;
|
725
|
+
/* clip '>' */
|
726
|
+
qp++;
|
727
|
+
/* clip next space, if any */
|
728
|
+
if ( T(t->text)[qp] == ' ' )
|
729
|
+
qp++;
|
730
|
+
CLIP(t->text, 0, qp);
|
731
|
+
t->dle = mkd_firstnonblank(t);
|
732
|
+
}
|
733
|
+
|
734
|
+
q = skipempty(t->next);
|
735
|
+
|
736
|
+
if ( (q == 0) || ((q != t->next) && (!isquote(q) || isdivmarker(q,1,flags))) ) {
|
737
|
+
___mkd_freeLineRange(t, q);
|
738
|
+
t = q;
|
739
|
+
break;
|
740
|
+
}
|
741
|
+
}
|
742
|
+
if ( isdivmarker(p->text,0,flags) ) {
|
743
|
+
char *prefix = "class";
|
744
|
+
int i;
|
745
|
+
|
746
|
+
q = p->text;
|
747
|
+
p->text = p->text->next;
|
748
|
+
|
749
|
+
if ( (i = szmarkerclass(1+T(q->text))) == 3 )
|
750
|
+
/* and this would be an "%id:" prefix */
|
751
|
+
prefix="id";
|
752
|
+
|
753
|
+
if ( p->ident = malloc(4+strlen(prefix)+S(q->text)) )
|
754
|
+
sprintf(p->ident, "%s=\"%.*s\"", prefix, S(q->text)-(i+2),
|
755
|
+
T(q->text)+(i+1) );
|
756
|
+
|
757
|
+
___mkd_freeLine(q);
|
758
|
+
}
|
759
|
+
return t;
|
760
|
+
}
|
761
|
+
|
762
|
+
|
763
|
+
/*
|
764
|
+
* A table block starts with a table header (see istable()), and continues
|
765
|
+
* until EOF or a line that /doesn't/ contain a |.
|
766
|
+
*/
|
767
|
+
static Line *
|
768
|
+
tableblock(Paragraph *p)
|
769
|
+
{
|
770
|
+
Line *t, *q;
|
771
|
+
|
772
|
+
for ( t = p->text; t && (q = t->next); t = t->next ) {
|
773
|
+
if ( !memchr(T(q->text), '|', S(q->text)) ) {
|
774
|
+
t->next = 0;
|
775
|
+
return q;
|
776
|
+
}
|
777
|
+
}
|
778
|
+
return 0;
|
779
|
+
}
|
780
|
+
|
781
|
+
|
782
|
+
static Paragraph *Pp(ParagraphRoot *, Line *, int);
|
783
|
+
static Paragraph *compile(Line *, int, MMIOT *);
|
784
|
+
|
785
|
+
typedef int (*linefn)(Line *);
|
786
|
+
|
787
|
+
|
788
|
+
/*
|
789
|
+
* pull in a list block. A list block starts with a list marker and
|
790
|
+
* runs until the next list marker, the next non-indented paragraph,
|
791
|
+
* or EOF. You do not have to indent nonblank lines after the list
|
792
|
+
* marker, but multiple paragraphs need to start with a 4-space indent.
|
793
|
+
*/
|
794
|
+
static Line *
|
795
|
+
listitem(Paragraph *p, int indent, DWORD flags, linefn check)
|
796
|
+
{
|
797
|
+
Line *t, *q;
|
798
|
+
int clip = indent;
|
799
|
+
int z;
|
800
|
+
|
801
|
+
for ( t = p->text; t ; t = q) {
|
802
|
+
CLIP(t->text, 0, clip);
|
803
|
+
t->dle = mkd_firstnonblank(t);
|
804
|
+
|
805
|
+
if ( (q = skipempty(t->next)) == 0 ) {
|
806
|
+
___mkd_freeLineRange(t,q);
|
807
|
+
return 0;
|
808
|
+
}
|
809
|
+
|
810
|
+
/* after a blank line, the next block needs to start with a line
|
811
|
+
* that's indented 4(? -- reference implementation allows a 1
|
812
|
+
* character indent, but that has unfortunate side effects here)
|
813
|
+
* spaces, but after that the line doesn't need any indentation
|
814
|
+
*/
|
815
|
+
if ( q != t->next ) {
|
816
|
+
if (q->dle < indent) {
|
817
|
+
q = t->next;
|
818
|
+
t->next = 0;
|
819
|
+
return q;
|
820
|
+
}
|
821
|
+
/* indent at least 2, and at most as
|
822
|
+
* as far as the initial line was indented. */
|
823
|
+
indent = clip ? clip : 2;
|
824
|
+
}
|
825
|
+
|
826
|
+
if ( (q->dle < indent) && (ishr(q) || islist(q,&z,flags,&z)
|
827
|
+
|| (check && (*check)(q)))
|
828
|
+
&& !issetext(q,&z) ) {
|
829
|
+
q = t->next;
|
830
|
+
t->next = 0;
|
831
|
+
return q;
|
832
|
+
}
|
833
|
+
|
834
|
+
clip = (q->dle > indent) ? indent : q->dle;
|
835
|
+
}
|
836
|
+
return t;
|
837
|
+
}
|
838
|
+
|
839
|
+
|
840
|
+
static Line *
|
841
|
+
definition_block(Paragraph *top, int clip, MMIOT *f, int kind)
|
842
|
+
{
|
843
|
+
ParagraphRoot d = { 0, 0 };
|
844
|
+
Paragraph *p;
|
845
|
+
Line *q = top->text, *text = 0, *labels;
|
846
|
+
int z, para;
|
847
|
+
|
848
|
+
while (( labels = q )) {
|
849
|
+
|
850
|
+
if ( (q = isdefinition(labels, &z, &kind)) == 0 )
|
851
|
+
break;
|
852
|
+
|
853
|
+
if ( (text = skipempty(q->next)) == 0 )
|
854
|
+
break;
|
855
|
+
|
856
|
+
if (( para = (text != q->next) ))
|
857
|
+
___mkd_freeLineRange(q, text);
|
858
|
+
|
859
|
+
q->next = 0;
|
860
|
+
if ( kind == 1 /* discount dl */ )
|
861
|
+
for ( q = labels; q; q = q->next ) {
|
862
|
+
CLIP(q->text, 0, 1);
|
863
|
+
S(q->text)--;
|
864
|
+
}
|
865
|
+
|
866
|
+
dd_block:
|
867
|
+
p = Pp(&d, text, LISTITEM);
|
868
|
+
|
869
|
+
text = listitem(p, clip, f->flags, (kind==2) ? is_extra_dd : 0);
|
870
|
+
p->down = compile(p->text, 0, f);
|
871
|
+
p->text = labels; labels = 0;
|
872
|
+
|
873
|
+
if ( para && p->down ) p->down->align = PARA;
|
874
|
+
|
875
|
+
if ( (q = skipempty(text)) == 0 )
|
876
|
+
break;
|
877
|
+
|
878
|
+
if (( para = (q != text) )) {
|
879
|
+
Line anchor;
|
880
|
+
|
881
|
+
anchor.next = text;
|
882
|
+
___mkd_freeLineRange(&anchor,q);
|
883
|
+
text = q;
|
884
|
+
|
885
|
+
}
|
886
|
+
|
887
|
+
if ( kind == 2 && is_extra_dd(q) )
|
888
|
+
goto dd_block;
|
889
|
+
}
|
890
|
+
top->text = 0;
|
891
|
+
top->down = T(d);
|
892
|
+
return text;
|
893
|
+
}
|
894
|
+
|
895
|
+
|
896
|
+
static Line *
|
897
|
+
enumerated_block(Paragraph *top, int clip, MMIOT *f, int list_class)
|
898
|
+
{
|
899
|
+
ParagraphRoot d = { 0, 0 };
|
900
|
+
Paragraph *p;
|
901
|
+
Line *q = top->text, *text;
|
902
|
+
int para = 0, z;
|
903
|
+
|
904
|
+
while (( text = q )) {
|
905
|
+
|
906
|
+
p = Pp(&d, text, LISTITEM);
|
907
|
+
text = listitem(p, clip, f->flags, 0);
|
908
|
+
|
909
|
+
p->down = compile(p->text, 0, f);
|
910
|
+
p->text = 0;
|
911
|
+
|
912
|
+
if ( para && p->down ) p->down->align = PARA;
|
913
|
+
|
914
|
+
if ( (q = skipempty(text)) == 0
|
915
|
+
|| islist(q, &clip, f->flags, &z) != list_class )
|
916
|
+
break;
|
917
|
+
|
918
|
+
if ( para = (q != text) ) {
|
919
|
+
Line anchor;
|
920
|
+
|
921
|
+
anchor.next = text;
|
922
|
+
___mkd_freeLineRange(&anchor, q);
|
923
|
+
|
924
|
+
if ( p->down ) p->down->align = PARA;
|
925
|
+
}
|
926
|
+
}
|
927
|
+
top->text = 0;
|
928
|
+
top->down = T(d);
|
929
|
+
return text;
|
930
|
+
}
|
931
|
+
|
932
|
+
|
933
|
+
static int
|
934
|
+
tgood(char c)
|
935
|
+
{
|
936
|
+
switch (c) {
|
937
|
+
case '\'':
|
938
|
+
case '"': return c;
|
939
|
+
case '(': return ')';
|
940
|
+
}
|
941
|
+
return 0;
|
942
|
+
}
|
943
|
+
|
944
|
+
|
945
|
+
/*
|
946
|
+
* add a new (image or link) footnote to the footnote table
|
947
|
+
*/
|
948
|
+
static Line*
|
949
|
+
addfootnote(Line *p, MMIOT* f)
|
950
|
+
{
|
951
|
+
int j, i;
|
952
|
+
int c;
|
953
|
+
Line *np = p->next;
|
954
|
+
|
955
|
+
Footnote *foot = &EXPAND(*f->footnotes);
|
956
|
+
|
957
|
+
CREATE(foot->tag);
|
958
|
+
CREATE(foot->link);
|
959
|
+
CREATE(foot->title);
|
960
|
+
foot->flags = foot->height = foot->width = 0;
|
961
|
+
|
962
|
+
for (j=i=p->dle+1; T(p->text)[j] != ']'; j++)
|
963
|
+
EXPAND(foot->tag) = T(p->text)[j];
|
964
|
+
|
965
|
+
EXPAND(foot->tag) = 0;
|
966
|
+
S(foot->tag)--;
|
967
|
+
j = nextnonblank(p, j+2);
|
968
|
+
|
969
|
+
if ( (f->flags & MKD_EXTRA_FOOTNOTE) && (T(foot->tag)[0] == '^') ) {
|
970
|
+
while ( j < S(p->text) )
|
971
|
+
EXPAND(foot->title) = T(p->text)[j++];
|
972
|
+
goto skip_to_end;
|
973
|
+
}
|
974
|
+
|
975
|
+
while ( (j < S(p->text)) && !isspace(T(p->text)[j]) )
|
976
|
+
EXPAND(foot->link) = T(p->text)[j++];
|
977
|
+
EXPAND(foot->link) = 0;
|
978
|
+
S(foot->link)--;
|
979
|
+
j = nextnonblank(p,j);
|
980
|
+
|
981
|
+
if ( T(p->text)[j] == '=' ) {
|
982
|
+
sscanf(T(p->text)+j, "=%dx%d", &foot->width, &foot->height);
|
983
|
+
while ( (j < S(p->text)) && !isspace(T(p->text)[j]) )
|
984
|
+
++j;
|
985
|
+
j = nextnonblank(p,j);
|
986
|
+
}
|
987
|
+
|
988
|
+
|
989
|
+
if ( (j >= S(p->text)) && np && np->dle && tgood(T(np->text)[np->dle]) ) {
|
990
|
+
___mkd_freeLine(p);
|
991
|
+
p = np;
|
992
|
+
np = p->next;
|
993
|
+
j = p->dle;
|
994
|
+
}
|
995
|
+
|
996
|
+
if ( (c = tgood(T(p->text)[j])) ) {
|
997
|
+
/* Try to take the rest of the line as a comment; read to
|
998
|
+
* EOL, then shrink the string back to before the final
|
999
|
+
* quote.
|
1000
|
+
*/
|
1001
|
+
++j; /* skip leading quote */
|
1002
|
+
|
1003
|
+
while ( j < S(p->text) )
|
1004
|
+
EXPAND(foot->title) = T(p->text)[j++];
|
1005
|
+
|
1006
|
+
while ( S(foot->title) && T(foot->title)[S(foot->title)-1] != c )
|
1007
|
+
--S(foot->title);
|
1008
|
+
if ( S(foot->title) ) /* skip trailing quote */
|
1009
|
+
--S(foot->title);
|
1010
|
+
EXPAND(foot->title) = 0;
|
1011
|
+
--S(foot->title);
|
1012
|
+
}
|
1013
|
+
|
1014
|
+
skip_to_end:
|
1015
|
+
___mkd_freeLine(p);
|
1016
|
+
return np;
|
1017
|
+
}
|
1018
|
+
|
1019
|
+
|
1020
|
+
/*
|
1021
|
+
* allocate a paragraph header, link it to the
|
1022
|
+
* tail of the current document
|
1023
|
+
*/
|
1024
|
+
static Paragraph *
|
1025
|
+
Pp(ParagraphRoot *d, Line *ptr, int typ)
|
1026
|
+
{
|
1027
|
+
Paragraph *ret = calloc(sizeof *ret, 1);
|
1028
|
+
|
1029
|
+
ret->text = ptr;
|
1030
|
+
ret->typ = typ;
|
1031
|
+
|
1032
|
+
return ATTACH(*d, ret);
|
1033
|
+
}
|
1034
|
+
|
1035
|
+
|
1036
|
+
|
1037
|
+
static Line*
|
1038
|
+
consume(Line *ptr, int *eaten)
|
1039
|
+
{
|
1040
|
+
Line *next;
|
1041
|
+
int blanks=0;
|
1042
|
+
|
1043
|
+
for (; ptr && blankline(ptr); ptr = next, blanks++ ) {
|
1044
|
+
next = ptr->next;
|
1045
|
+
___mkd_freeLine(ptr);
|
1046
|
+
}
|
1047
|
+
if ( ptr ) *eaten = blanks;
|
1048
|
+
return ptr;
|
1049
|
+
}
|
1050
|
+
|
1051
|
+
|
1052
|
+
/*
|
1053
|
+
* top-level compilation; break the document into
|
1054
|
+
* style, html, and source blocks with footnote links
|
1055
|
+
* weeded out.
|
1056
|
+
*/
|
1057
|
+
static Paragraph *
|
1058
|
+
compile_document(Line *ptr, MMIOT *f)
|
1059
|
+
{
|
1060
|
+
ParagraphRoot d = { 0, 0 };
|
1061
|
+
ANCHOR(Line) source = { 0, 0 };
|
1062
|
+
Paragraph *p = 0;
|
1063
|
+
struct kw *tag;
|
1064
|
+
int eaten, unclosed;
|
1065
|
+
|
1066
|
+
while ( ptr ) {
|
1067
|
+
if ( !(f->flags & MKD_NOHTML) && (tag = isopentag(ptr)) ) {
|
1068
|
+
/* If we encounter a html/style block, compile and save all
|
1069
|
+
* of the cached source BEFORE processing the html/style.
|
1070
|
+
*/
|
1071
|
+
if ( T(source) ) {
|
1072
|
+
E(source)->next = 0;
|
1073
|
+
p = Pp(&d, 0, SOURCE);
|
1074
|
+
p->down = compile(T(source), 1, f);
|
1075
|
+
T(source) = E(source) = 0;
|
1076
|
+
}
|
1077
|
+
p = Pp(&d, ptr, strcmp(tag->id, "STYLE") == 0 ? STYLE : HTML);
|
1078
|
+
ptr = htmlblock(p, tag, &unclosed);
|
1079
|
+
if ( unclosed ) {
|
1080
|
+
p->typ = SOURCE;
|
1081
|
+
p->down = compile(p->text, 1, f);
|
1082
|
+
p->text = 0;
|
1083
|
+
}
|
1084
|
+
}
|
1085
|
+
else if ( isfootnote(ptr) ) {
|
1086
|
+
/* footnotes, like cats, sleep anywhere; pull them
|
1087
|
+
* out of the input stream and file them away for
|
1088
|
+
* later processing
|
1089
|
+
*/
|
1090
|
+
ptr = consume(addfootnote(ptr, f), &eaten);
|
1091
|
+
}
|
1092
|
+
else {
|
1093
|
+
/* source; cache it up to wait for eof or the
|
1094
|
+
* next html/style block
|
1095
|
+
*/
|
1096
|
+
ATTACH(source,ptr);
|
1097
|
+
ptr = ptr->next;
|
1098
|
+
}
|
1099
|
+
}
|
1100
|
+
if ( T(source) ) {
|
1101
|
+
/* if there's any cached source at EOF, compile
|
1102
|
+
* it now.
|
1103
|
+
*/
|
1104
|
+
E(source)->next = 0;
|
1105
|
+
p = Pp(&d, 0, SOURCE);
|
1106
|
+
p->down = compile(T(source), 1, f);
|
1107
|
+
}
|
1108
|
+
return T(d);
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
|
1112
|
+
/*
|
1113
|
+
* break a collection of markdown input into
|
1114
|
+
* blocks of lists, code, html, and text to
|
1115
|
+
* be marked up.
|
1116
|
+
*/
|
1117
|
+
static Paragraph *
|
1118
|
+
compile(Line *ptr, int toplevel, MMIOT *f)
|
1119
|
+
{
|
1120
|
+
ParagraphRoot d = { 0, 0 };
|
1121
|
+
Paragraph *p = 0;
|
1122
|
+
Line *r;
|
1123
|
+
int para = toplevel;
|
1124
|
+
int blocks = 0;
|
1125
|
+
int hdr_type, list_type, list_class, indent;
|
1126
|
+
|
1127
|
+
ptr = consume(ptr, ¶);
|
1128
|
+
|
1129
|
+
while ( ptr ) {
|
1130
|
+
if ( iscode(ptr) ) {
|
1131
|
+
p = Pp(&d, ptr, CODE);
|
1132
|
+
|
1133
|
+
if ( f->flags & MKD_1_COMPAT) {
|
1134
|
+
/* HORRIBLE STANDARDS KLUDGE: the first line of every block
|
1135
|
+
* has trailing whitespace trimmed off.
|
1136
|
+
*/
|
1137
|
+
___mkd_tidy(&p->text->text);
|
1138
|
+
}
|
1139
|
+
|
1140
|
+
ptr = codeblock(p);
|
1141
|
+
}
|
1142
|
+
else if ( ishr(ptr) ) {
|
1143
|
+
p = Pp(&d, 0, HR);
|
1144
|
+
r = ptr;
|
1145
|
+
ptr = ptr->next;
|
1146
|
+
___mkd_freeLine(r);
|
1147
|
+
}
|
1148
|
+
else if (( list_class = islist(ptr, &indent, f->flags, &list_type) )) {
|
1149
|
+
if ( list_class == DL ) {
|
1150
|
+
p = Pp(&d, ptr, DL);
|
1151
|
+
ptr = definition_block(p, indent, f, list_type);
|
1152
|
+
}
|
1153
|
+
else {
|
1154
|
+
p = Pp(&d, ptr, list_type);
|
1155
|
+
ptr = enumerated_block(p, indent, f, list_class);
|
1156
|
+
}
|
1157
|
+
}
|
1158
|
+
else if ( isquote(ptr) ) {
|
1159
|
+
p = Pp(&d, ptr, QUOTE);
|
1160
|
+
ptr = quoteblock(p, f->flags);
|
1161
|
+
p->down = compile(p->text, 1, f);
|
1162
|
+
p->text = 0;
|
1163
|
+
}
|
1164
|
+
else if ( ishdr(ptr, &hdr_type) ) {
|
1165
|
+
p = Pp(&d, ptr, HDR);
|
1166
|
+
ptr = headerblock(p, hdr_type);
|
1167
|
+
}
|
1168
|
+
else if ( istable(ptr) && !(f->flags & (MKD_STRICT|MKD_NOTABLES)) ) {
|
1169
|
+
p = Pp(&d, ptr, TABLE);
|
1170
|
+
ptr = tableblock(p);
|
1171
|
+
}
|
1172
|
+
else {
|
1173
|
+
p = Pp(&d, ptr, MARKUP);
|
1174
|
+
ptr = textblock(p, toplevel, f->flags);
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
if ( (para||toplevel) && !p->align )
|
1178
|
+
p->align = PARA;
|
1179
|
+
|
1180
|
+
blocks++;
|
1181
|
+
para = toplevel || (blocks > 1);
|
1182
|
+
ptr = consume(ptr, ¶);
|
1183
|
+
|
1184
|
+
if ( para && !p->align )
|
1185
|
+
p->align = PARA;
|
1186
|
+
|
1187
|
+
}
|
1188
|
+
return T(d);
|
1189
|
+
}
|
1190
|
+
|
1191
|
+
|
1192
|
+
/*
|
1193
|
+
* the guts of the markdown() function, ripped out so I can do
|
1194
|
+
* debugging.
|
1195
|
+
*/
|
1196
|
+
|
1197
|
+
/*
|
1198
|
+
* prepare and compile `text`, returning a Paragraph tree.
|
1199
|
+
*/
|
1200
|
+
int
|
1201
|
+
mkd_compile(Document *doc, DWORD flags)
|
1202
|
+
{
|
1203
|
+
if ( !doc )
|
1204
|
+
return 0;
|
1205
|
+
|
1206
|
+
if ( doc->compiled )
|
1207
|
+
return 1;
|
1208
|
+
|
1209
|
+
doc->compiled = 1;
|
1210
|
+
memset(doc->ctx, 0, sizeof(MMIOT) );
|
1211
|
+
doc->ctx->ref_prefix= doc->ref_prefix;
|
1212
|
+
doc->ctx->cb = &(doc->cb);
|
1213
|
+
doc->ctx->flags = flags & USER_FLAGS;
|
1214
|
+
CREATE(doc->ctx->in);
|
1215
|
+
doc->ctx->footnotes = malloc(sizeof doc->ctx->footnotes[0]);
|
1216
|
+
CREATE(*doc->ctx->footnotes);
|
1217
|
+
|
1218
|
+
mkd_initialize();
|
1219
|
+
|
1220
|
+
doc->code = compile_document(T(doc->content), doc->ctx);
|
1221
|
+
qsort(T(*doc->ctx->footnotes), S(*doc->ctx->footnotes),
|
1222
|
+
sizeof T(*doc->ctx->footnotes)[0],
|
1223
|
+
(stfu)__mkd_footsort);
|
1224
|
+
memset(&doc->content, 0, sizeof doc->content);
|
1225
|
+
return 1;
|
1226
|
+
}
|
1227
|
+
|