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,131 @@
|
|
1
|
+
*application/acad 'LTSW
|
2
|
+
*application/appledouble :base64
|
3
|
+
*application/clariscad 'LTSW
|
4
|
+
*application/drafting 'LTSW
|
5
|
+
*application/dxf 'LTSW
|
6
|
+
*application/excel @xls,xlt 'LTSW
|
7
|
+
*application/fractals 'LTSW
|
8
|
+
*application/i-deas 'LTSW
|
9
|
+
*application/macbinary 'LTSW
|
10
|
+
*application/netcdf @nc,cdf 'LTSW
|
11
|
+
*application/powerpoint @ppt,pps,pot :base64 'LTSW
|
12
|
+
*application/pro_eng 'LTSW
|
13
|
+
*application/set 'LTSW
|
14
|
+
*application/SLA 'LTSW
|
15
|
+
*application/solids 'LTSW
|
16
|
+
*application/STEP 'LTSW
|
17
|
+
*application/vda 'LTSW
|
18
|
+
*application/vnd.adobe.air-application-installer-package+zip @air :base64
|
19
|
+
*application/vnd.android.package-archive @apk
|
20
|
+
*application/vnd.ms-fontobject @eot
|
21
|
+
*application/vnd.rn-realmedia @rm
|
22
|
+
*application/vnd.stardivision.calc @sdc
|
23
|
+
*application/vnd.stardivision.chart @sds
|
24
|
+
*application/vnd.stardivision.draw @sda
|
25
|
+
*application/vnd.stardivision.impress @sdd
|
26
|
+
*application/vnd.stardivision.math @sdf
|
27
|
+
*application/vnd.stardivision.writer @sdw
|
28
|
+
*application/vnd.stardivision.writer-global @sgl
|
29
|
+
*application/vnd.sun.xml.calc @sxc
|
30
|
+
*application/vnd.sun.xml.calc.template @stc
|
31
|
+
*application/vnd.sun.xml.draw @sxd
|
32
|
+
*application/vnd.sun.xml.draw.template @std
|
33
|
+
*application/vnd.sun.xml.impress @sxi
|
34
|
+
*application/vnd.sun.xml.impress.template @sti
|
35
|
+
*application/vnd.sun.xml.math @sxm
|
36
|
+
*application/vnd.sun.xml.writer @sxw
|
37
|
+
*application/vnd.sun.xml.writer.global @sxg
|
38
|
+
*application/vnd.sun.xml.writer.template @stw
|
39
|
+
*application/word @doc,dot 'LTSW
|
40
|
+
application/epub+zip @epub
|
41
|
+
application/rss+xml @rss
|
42
|
+
application/x-bcpio @bcpio 'LTSW
|
43
|
+
application/x-bleeper @bleep :base64
|
44
|
+
application/x-bzip2 @bz2
|
45
|
+
application/x-cdlink @vcd
|
46
|
+
application/x-chess-pgn @pgn
|
47
|
+
application/x-chrome-extension @crx
|
48
|
+
application/x-clariscad
|
49
|
+
application/x-compressed @z,Z :base64 'LTSW
|
50
|
+
application/x-cpio @cpio :base64 'LTSW
|
51
|
+
application/x-csh @csh :8bit 'LTSW
|
52
|
+
application/x-cu-seeme @csm,cu
|
53
|
+
application/x-debian-package @deb
|
54
|
+
application/x-director @dcr,@dir,@dxr
|
55
|
+
application/x-drafting
|
56
|
+
application/x-dvi @dvi :base64 'LTSW
|
57
|
+
application/x-dxf
|
58
|
+
application/x-excel
|
59
|
+
application/x-font-opentype @otf :base64
|
60
|
+
application/x-font-truetype @ttf :base64
|
61
|
+
application/x-fractals
|
62
|
+
application/x-futuresplash @spl
|
63
|
+
application/x-ghostview
|
64
|
+
application/x-gtar @gtar,tgz,tbz2,tbz :base64 'LTSW
|
65
|
+
application/x-gzip @gz :base64 'LTSW
|
66
|
+
application/x-hdf @hdf 'LTSW
|
67
|
+
application/x-hep @hep
|
68
|
+
application/x-html+ruby @rhtml :8bit
|
69
|
+
application/x-httpd-php @phtml,pht,php :8bit
|
70
|
+
application/x-ibooks+zip @ibooks
|
71
|
+
application/x-ica @ica
|
72
|
+
application/x-ideas
|
73
|
+
application/x-imagemap @imagemap,imap :8bit
|
74
|
+
application/x-iwork-keynote-sffkey @key
|
75
|
+
application/x-iwork-numbers-sffnumbers @numbers
|
76
|
+
application/x-iwork-pages-sffpages @pages
|
77
|
+
application/x-java-archive @jar 'LTSW
|
78
|
+
application/x-java-jnlp-file @jnlp 'LTSW
|
79
|
+
application/x-java-serialized-object @ser 'LTSW
|
80
|
+
application/x-java-vm @class 'LTSW
|
81
|
+
application/x-koan @skp,skd,skt,skm
|
82
|
+
application/x-latex @ltx,latex :8bit 'LTSW
|
83
|
+
application/x-mac-compactpro @cpt
|
84
|
+
application/x-macbinary
|
85
|
+
application/x-maker @frm,maker,frame,fm,fb,book,fbdoc =use-instead:application/vnd.framemaker
|
86
|
+
application/x-mathematica-old
|
87
|
+
application/x-mif @mif 'LTSW
|
88
|
+
application/x-mobipocket-ebook @mobi
|
89
|
+
application/x-ms-wmd @wmd
|
90
|
+
application/x-ms-wmz @wmz
|
91
|
+
application/x-msaccess @mda,mdb,mde,mdf
|
92
|
+
application/x-msdos-program @cmd,bat,com,exe :base64
|
93
|
+
application/x-msdownload @exe,com :base64
|
94
|
+
application/x-netcdf @nc,cdf
|
95
|
+
application/x-ns-proxy-autoconfig @pac
|
96
|
+
application/x-opera-extension @oex
|
97
|
+
application/x-pagemaker @pm,pm5,pt5
|
98
|
+
application/x-perl @pl,pm :8bit
|
99
|
+
application/x-pgp
|
100
|
+
application/x-python @py :8bit
|
101
|
+
application/x-quicktimeplayer @qtl
|
102
|
+
application/x-rar-compressed @rar :base64
|
103
|
+
application/x-remote_printing
|
104
|
+
application/x-ruby @rb,rbw :8bit
|
105
|
+
application/x-set
|
106
|
+
application/x-sh @sh :8bit 'LTSW
|
107
|
+
application/x-shar @shar :8bit 'LTSW
|
108
|
+
application/x-shockwave-flash @swf
|
109
|
+
application/x-SLA
|
110
|
+
application/x-solids
|
111
|
+
application/x-spss @sav,sbs,sps,spo,spp
|
112
|
+
application/x-STEP
|
113
|
+
application/x-stuffit @sit :base64 'LTSW
|
114
|
+
application/x-sv4cpio @sv4cpio :base64 'LTSW
|
115
|
+
application/x-sv4crc @sv4crc :base64 'LTSW
|
116
|
+
application/x-tar @tar :base64 'LTSW
|
117
|
+
application/x-tcl @tcl :8bit 'LTSW
|
118
|
+
application/x-tex @tex :8bit
|
119
|
+
application/x-texinfo @texinfo,texi :8bit
|
120
|
+
application/x-toolbook @tbk
|
121
|
+
application/x-troff-man @man :8bit 'LTSW
|
122
|
+
application/x-troff-me @me 'LTSW
|
123
|
+
application/x-troff-ms @ms 'LTSW
|
124
|
+
application/x-ustar @ustar :base64 'LTSW
|
125
|
+
application/x-VMSBACKUP @bck :base64
|
126
|
+
application/x-wais-source @src 'LTSW
|
127
|
+
application/x-web-app-manifest+json @webapp
|
128
|
+
application/x-Wingz @wz
|
129
|
+
application/x-wordperfect6.1 @wp6
|
130
|
+
application/x-x509-ca-cert @crt :base64
|
131
|
+
application/x-xpinstall @xpi
|
@@ -0,0 +1,41 @@
|
|
1
|
+
!application/smil @smi,smil :8bit 'IANA,RFC4536 =use-instead:application/smil+xml
|
2
|
+
!application/vnd.arastra.swi 'IANA,[Fenner] =use-instead:application/vnd.aristanetworks.swi
|
3
|
+
!application/vnd.geocube+xml :8bit 'IANA,[Pirsch]
|
4
|
+
!application/vnd.gmx 'IANA,[Sciberras]
|
5
|
+
!application/vnd.nokia.ncd+xml 'IANA,[Nokia] =use-instead:application/vnd.nokia.ncd
|
6
|
+
!application/x-123 @wk =use-instead:application/vnd.lotus-1-2-3
|
7
|
+
!application/x-access @mdf,mda,mdb,mde =use-instead:application/x-msaccess
|
8
|
+
!application/x-compress @z,Z :base64 =use-instead:application/x-compressed
|
9
|
+
!application/x-javascript @js :8bit =use-instead:application/javascript
|
10
|
+
!application/x-lotus-123 @wks =use-instead:application/vnd.lotus-1-2-3
|
11
|
+
!application/x-mathcad @mcd :base64 =use-instead:application/vnd.mcd
|
12
|
+
!application/x-msword @doc,dot,wrd :base64 =use-instead:application/msword
|
13
|
+
!application/x-rtf @rtf :base64 'LTSW =use-instead:application/rtf
|
14
|
+
!application/x-troff @t,tr,roff 'LTSW =use-instead:text/troff
|
15
|
+
!application/x-u-star 'LTSW =use-instead:application/x-ustar
|
16
|
+
!application/x-word @doc,dot :base64 =use-instead:application/msword
|
17
|
+
!application/x-wordperfect @wp =use-instead:application/vnd.wordperfect
|
18
|
+
!application/x-wordperfectd @wpd =use-instead:application/vnd.wordperfect
|
19
|
+
!application/xhtml-voice+xml 'IANA,{RFC-mccobb-xplusv-media-type-04.txt=https://datatracker.ietf.org/public/idindex.cgi?command=id_detail&filename=draft-mccobb-xplusv-media-type}
|
20
|
+
*!application/access @mdf,mda,mdb,mde =use-instead:application/x-msaccess
|
21
|
+
*!application/bleeper @bleep :base64 =use-instead:application/x-bleeper
|
22
|
+
*!application/cals1840 'LTSW =use-instead:application/cals-1840
|
23
|
+
*!application/futuresplash @spl =use-instead:application/x-futuresplash
|
24
|
+
*!application/ghostview =use-instead:application/x-ghostview
|
25
|
+
*!application/hep @hep =use-instead:application/x-hep
|
26
|
+
*!application/imagemap @imagemap,imap :8bit =use-instead:application/x-imagemap
|
27
|
+
*!application/lotus-123 @wks =use-instead:application/vnd.lotus-1-2-3
|
28
|
+
*!application/mac-compactpro @cpt =use-instead:application/x-mac-compactpro
|
29
|
+
*!application/mathcad @mcd :base64 =use-instead:application/vnd.mcd
|
30
|
+
*!application/mathematica-old =use-instead:application/x-mathematica-old
|
31
|
+
*!application/news-message-id 'IANA,RFC1036,[Spencer]
|
32
|
+
*!application/quicktimeplayer @qtl =use-instead:application/x-quicktimeplayer
|
33
|
+
*!application/remote_printing 'LTSW =use-instead:application/remote-printing
|
34
|
+
*!application/toolbook @tbk =use-instead:application/x-toolbook
|
35
|
+
*!application/VMSBACKUP @bck :base64 =use-instead:application/x-VMSBACKUP
|
36
|
+
*!application/vnd.ms-word.document.macroEnabled.12 @docm
|
37
|
+
*!application/vnd.ms-word.template.macroEnabled.12 @dotm
|
38
|
+
*!application/wordperfect @wp =use-instead:application/vnd.wordperfect
|
39
|
+
*!application/wordperfect6.1 @wp6 =use-instead:application/x-wordperfect6.1
|
40
|
+
*!application/wordperfectd @wpd =use-instead:application/vnd.wordperfect
|
41
|
+
*!application/x400.bp 'LTSW =use-instead:application/x400-bp
|
@@ -0,0 +1,138 @@
|
|
1
|
+
audio/1d-interleaved-parityfec 'IANA,RFC6015
|
2
|
+
audio/32kadpcm 'IANA,RFC3802,RFC2421
|
3
|
+
audio/3gpp 'IANA,RFC3839,RFC6381
|
4
|
+
audio/3gpp2 'IANA,RFC4393,RFC6381
|
5
|
+
audio/ac3 'IANA,RFC4184
|
6
|
+
audio/AMR @amr :base64 'RFC4867
|
7
|
+
audio/AMR-WB @awb :base64 'RFC4867
|
8
|
+
audio/amr-wb+ 'IANA,RFC4352
|
9
|
+
audio/asc 'IANA,RFC6295
|
10
|
+
audio/ATRAC-ADVANCED-LOSSLESS 'IANA,RFC5584
|
11
|
+
audio/ATRAC-X 'IANA,RFC5584
|
12
|
+
audio/ATRAC3 'IANA,RFC5584
|
13
|
+
audio/basic @au,snd :base64 'IANA,RFC2045,RFC2046
|
14
|
+
audio/BV16 'IANA,RFC4298
|
15
|
+
audio/BV32 'IANA,RFC4298
|
16
|
+
audio/clearmode 'IANA,RFC4040
|
17
|
+
audio/CN 'IANA,RFC3389
|
18
|
+
audio/DAT12 'IANA,RFC3190
|
19
|
+
audio/dls 'IANA,RFC4613
|
20
|
+
audio/dsr-es201108 'IANA,RFC3557
|
21
|
+
audio/dsr-es202050 'IANA,RFC4060
|
22
|
+
audio/dsr-es202211 'IANA,RFC4060
|
23
|
+
audio/dsr-es202212 'IANA,RFC4060
|
24
|
+
audio/DV 'IANA,RFC6469
|
25
|
+
audio/DVI4 'IANA,RFC4856
|
26
|
+
audio/eac3 'IANA,RFC4598
|
27
|
+
audio/encaprtp 'IANA,RFC6849
|
28
|
+
audio/EVRC @evc 'IANA,RFC4788
|
29
|
+
audio/EVRC-QCP 'IANA,RFC3625
|
30
|
+
audio/EVRC0 'IANA,RFC4788
|
31
|
+
audio/EVRC1 'IANA,RFC4788
|
32
|
+
audio/EVRCB 'IANA,RFC5188
|
33
|
+
audio/EVRCB0 'IANA,RFC5188
|
34
|
+
audio/EVRCB1 'IANA,RFC4788
|
35
|
+
audio/EVRCNW 'IANA,RFC6884
|
36
|
+
audio/EVRCNW0 'IANA,RFC6884
|
37
|
+
audio/EVRCNW1 'IANA,RFC6884
|
38
|
+
audio/EVRCWB 'IANA,RFC5188
|
39
|
+
audio/EVRCWB0 'IANA,RFC5188
|
40
|
+
audio/EVRCWB1 'IANA,RFC5188
|
41
|
+
audio/example 'IANA,RFC4735
|
42
|
+
audio/fwdred 'IANA,RFC6354
|
43
|
+
audio/G719 'IANA,RFC5404,{Errata3245=http://www.rfc-editor.org/errata_search.php?rfc=5404&eid=3245}
|
44
|
+
audio/G722 'IANA,RFC4856
|
45
|
+
audio/G7221 'IANA,RFC5577
|
46
|
+
audio/G723 'IANA,RFC4856
|
47
|
+
audio/G726-16 'IANA,RFC4856
|
48
|
+
audio/G726-24 'IANA,RFC4856
|
49
|
+
audio/G726-32 'IANA,RFC4856
|
50
|
+
audio/G726-40 'IANA,RFC4856
|
51
|
+
audio/G728 'IANA,RFC4856
|
52
|
+
audio/G729 'IANA,RFC4856
|
53
|
+
audio/G7291 'IANA,RFC4749,RFC5459
|
54
|
+
audio/G729D 'IANA,RFC4856
|
55
|
+
audio/G729E 'IANA,RFC4856
|
56
|
+
audio/GSM 'IANA,RFC4856
|
57
|
+
audio/GSM-EFR 'IANA,RFC4856
|
58
|
+
audio/GSM-HR-08 'IANA,RFC5993
|
59
|
+
audio/iLBC 'IANA,RFC3952
|
60
|
+
audio/ip-mr_v2.5 'IANA,RFC6262
|
61
|
+
audio/L16 @l16 'IANA,RFC4856
|
62
|
+
audio/L20 'IANA,RFC3190
|
63
|
+
audio/L24 'IANA,RFC3190
|
64
|
+
audio/L8 'IANA,RFC4856
|
65
|
+
audio/LPC 'IANA,RFC4856
|
66
|
+
audio/mobile-xmf 'IANA,RFC4723
|
67
|
+
audio/mp4 @mp4,mpg4,f4a,f4b 'IANA,RFC4337,{Adobe=http://www.kaourantin.net/2007/10/new-file-extensions-and-mime-types.html}
|
68
|
+
audio/MP4A-LATM @m4a 'IANA,RFC6416
|
69
|
+
audio/MPA 'IANA,RFC3555
|
70
|
+
audio/mpa-robust 'IANA,RFC5219
|
71
|
+
audio/mpeg @mpga,mp2,mp3 :base64 'IANA,RFC3003
|
72
|
+
audio/mpeg4-generic 'IANA,RFC3640,RFC5691,RFC6295
|
73
|
+
audio/ogg @ogg 'IANA,RFC5334
|
74
|
+
audio/parityfec 'IANA,RFC5109
|
75
|
+
audio/PCMA 'IANA,RFC4856
|
76
|
+
audio/PCMA-WB 'IANA,RFC5391
|
77
|
+
audio/PCMU 'IANA,RFC4856
|
78
|
+
audio/PCMU-WB 'IANA,RFC5391
|
79
|
+
audio/prs.sid 'IANA,[Walleij]
|
80
|
+
audio/QCELP 'IANA,RFC3555,RFC3625
|
81
|
+
audio/raptorfec 'IANA,RFC6682
|
82
|
+
audio/RED 'IANA,RFC3555
|
83
|
+
audio/rtp-enc-aescm128 'IANA,[3GPP]
|
84
|
+
audio/rtp-midi 'IANA,RFC6295
|
85
|
+
audio/rtploopback 'IANA,RFC6849
|
86
|
+
audio/rtx 'IANA,RFC4588
|
87
|
+
audio/SMV @smv 'IANA,RFC3558
|
88
|
+
audio/SMV-QCP 'IANA,RFC3625
|
89
|
+
audio/SMV0 'IANA,RFC3558
|
90
|
+
audio/sp-midi 'IANA,[Kosonen],[T. White=T.White]
|
91
|
+
audio/speex 'IANA,RFC5574
|
92
|
+
audio/t140c 'IANA,RFC4351
|
93
|
+
audio/t38 'IANA,RFC4612
|
94
|
+
audio/telephone-event 'IANA,RFC4733
|
95
|
+
audio/tone 'IANA,RFC4733
|
96
|
+
audio/UEMCLIP 'IANA,RFC5686
|
97
|
+
audio/ulpfec 'IANA,RFC5109
|
98
|
+
audio/VDVI 'IANA,RFC4856
|
99
|
+
audio/VMR-WB 'IANA,RFC4348,RFC4424
|
100
|
+
audio/vnd.3gpp.iufp 'IANA,[Belling]
|
101
|
+
audio/vnd.4SB 'IANA,[De Jaham]
|
102
|
+
audio/vnd.audiokoz 'IANA,[DeBarros]
|
103
|
+
audio/vnd.CELP 'IANA,[De Jaham]
|
104
|
+
audio/vnd.cisco.nse 'IANA,[Kumar]
|
105
|
+
audio/vnd.cmles.radio-events 'IANA,[Goulet]
|
106
|
+
audio/vnd.cns.anp1 'IANA,[McLaughlin]
|
107
|
+
audio/vnd.cns.inf1 'IANA,[McLaughlin]
|
108
|
+
audio/vnd.dece.audio 'IANA,[Dolan]
|
109
|
+
audio/vnd.digital-winds @eol :7bit 'IANA,[Strazds]
|
110
|
+
audio/vnd.dlna.adts 'IANA,[Heredia]
|
111
|
+
audio/vnd.dolby.heaac.1 'IANA,[Hattersley]
|
112
|
+
audio/vnd.dolby.heaac.2 'IANA,[Hattersley]
|
113
|
+
audio/vnd.dolby.mlp 'IANA,[Ward]
|
114
|
+
audio/vnd.dolby.mps 'IANA,[Hattersley]
|
115
|
+
audio/vnd.dolby.pl2 'IANA,[Hattersley]
|
116
|
+
audio/vnd.dolby.pl2x 'IANA,[Hattersley]
|
117
|
+
audio/vnd.dolby.pl2z 'IANA,[Hattersley]
|
118
|
+
audio/vnd.dolby.pulse.1 'IANA,[Hattersley]
|
119
|
+
audio/vnd.dra 'IANA,[Tian]
|
120
|
+
audio/vnd.dts 'IANA,[Zou]
|
121
|
+
audio/vnd.dts.hd 'IANA,[Zou]
|
122
|
+
audio/vnd.dvb.file 'IANA,[Siebert]
|
123
|
+
audio/vnd.everad.plj @plj 'IANA,[Cicelsky]
|
124
|
+
audio/vnd.hns.audio 'IANA,[Swaminathan]
|
125
|
+
audio/vnd.lucent.voice @lvp 'IANA,[Vaudreuil]
|
126
|
+
audio/vnd.ms-playready.media.pya 'IANA,[DiAcetis]
|
127
|
+
audio/vnd.nokia.mobile-xmf @mxmf 'IANA,[Nokia Corporation=Nokia]
|
128
|
+
audio/vnd.nortel.vbk @vbk 'IANA,[Parsons]
|
129
|
+
audio/vnd.nuera.ecelp4800 @ecelp4800 'IANA,[Fox]
|
130
|
+
audio/vnd.nuera.ecelp7470 @ecelp7470 'IANA,[Fox]
|
131
|
+
audio/vnd.nuera.ecelp9600 @ecelp9600 'IANA,[Fox]
|
132
|
+
audio/vnd.octel.sbc 'IANA,[Vaudreuil]
|
133
|
+
audio/vnd.rhetorex.32kadpcm 'IANA,[Vaudreuil]
|
134
|
+
audio/vnd.rip 'IANA,[Dawe]
|
135
|
+
audio/vnd.sealedmedia.softseal.mpeg @smp3,smp,s1m 'IANA,[Petersen]
|
136
|
+
audio/vnd.vmx.cvsd 'IANA,[Vaudreuil]
|
137
|
+
audio/vorbis 'IANA,RFC5215
|
138
|
+
audio/vorbis-config 'IANA,RFC5215
|
@@ -0,0 +1,11 @@
|
|
1
|
+
audio/x-aac @aac
|
2
|
+
audio/x-aiff @aif,aifc,aiff :base64
|
3
|
+
audio/x-midi @mid,midi,kar :base64
|
4
|
+
audio/x-ms-wax @wax
|
5
|
+
audio/x-ms-wma @wma
|
6
|
+
audio/x-ms-wmv @wmv
|
7
|
+
audio/x-pn-realaudio @ra,ram :base64
|
8
|
+
audio/x-pn-realaudio-plugin @rpm
|
9
|
+
audio/x-realaudio @ra :base64
|
10
|
+
audio/x-wav @wav :base64
|
11
|
+
*audio/webm @webm '{WebM=http://www.webmproject.org/code/specs/container/}
|
@@ -0,0 +1 @@
|
|
1
|
+
!audio/vnd.qcelp @qcp 'IANA,RFC3625 =use-instead:audio/QCELP
|
@@ -0,0 +1,46 @@
|
|
1
|
+
image/cgm 'IANA,[Francis]
|
2
|
+
image/example 'IANA,RFC4735
|
3
|
+
image/fits 'IANA,RFC4047
|
4
|
+
image/g3fax 'IANA,RFC1494
|
5
|
+
image/gif @gif :base64 'IANA,RFC2045,RFC2046
|
6
|
+
image/ief @ief :base64 'IANA,RFC1314
|
7
|
+
image/jp2 @jp2,jpg2 :base64 'IANA,RFC3745
|
8
|
+
image/jpeg @jpeg,jpg,jpe :base64 'IANA,RFC2045,RFC2046
|
9
|
+
image/jpm @jpm,jpgm :base64 'IANA,RFC3745
|
10
|
+
image/jpx @jpx,jpf :base64 'IANA,RFC3745
|
11
|
+
image/ktx 'IANA,[Callow],[Khronos]
|
12
|
+
image/naplps 'IANA,[Ferber]
|
13
|
+
image/png @png :base64 'IANA,[Randers-Pehrson]
|
14
|
+
image/prs.btif 'IANA,[Simon]
|
15
|
+
image/prs.pti 'IANA,[Laun]
|
16
|
+
image/pwg-raster 'IANA,[Sweet]
|
17
|
+
image/svg+xml @svg,svgz :8bit 'IANA,[W3C]
|
18
|
+
image/t38 'IANA,RFC3362
|
19
|
+
image/tiff @tiff,tif :base64 'IANA,RFC2302
|
20
|
+
image/tiff-fx 'IANA,RFC3950
|
21
|
+
image/vnd.adobe.photoshop 'IANA,[Scarborough]
|
22
|
+
image/vnd.airzip.accelerator.azv 'IANA,[Clueit]
|
23
|
+
image/vnd.cns.inf2 'IANA,[McLaughlin]
|
24
|
+
image/vnd.dece.graphic 'IANA,[Dolan]
|
25
|
+
image/vnd.djvu @djvu,djv 'IANA,[Bottou]
|
26
|
+
image/vnd.dvb.subtitle 'IANA,[Siebert],[Lagally]
|
27
|
+
image/vnd.dwg @dwg 'IANA,[Moline]
|
28
|
+
image/vnd.dxf 'IANA,[Moline]
|
29
|
+
image/vnd.fastbidsheet 'IANA,[Becker]
|
30
|
+
image/vnd.fpx 'IANA,[Spencer]
|
31
|
+
image/vnd.fst 'IANA,[Fuldseth]
|
32
|
+
image/vnd.fujixerox.edmics-mmr 'IANA,[Onda]
|
33
|
+
image/vnd.fujixerox.edmics-rlc 'IANA,[Onda]
|
34
|
+
image/vnd.globalgraphics.pgb @pgb 'IANA,[Bailey]
|
35
|
+
image/vnd.microsoft.icon @ico 'IANA,[Butcher]
|
36
|
+
image/vnd.mix 'IANA,[Reddy]
|
37
|
+
image/vnd.ms-modi @mdi 'IANA,[Vaughan]
|
38
|
+
image/vnd.net-fpx 'IANA,[Spencer]
|
39
|
+
image/vnd.radiance 'IANA,[Fritz],[GWard]
|
40
|
+
image/vnd.sealed.png 'IANA,[Petersen]
|
41
|
+
image/vnd.sealedmedia.softseal.gif 'IANA,[Petersen]
|
42
|
+
image/vnd.sealedmedia.softseal.jpg 'IANA,[Petersen]
|
43
|
+
image/vnd.svf 'IANA,[Moline]
|
44
|
+
image/vnd.wap.wbmp 'IANA,[Stark]
|
45
|
+
image/vnd.xiff 'IANA,[S.Martin]
|
46
|
+
image/webp @webp
|
@@ -0,0 +1,20 @@
|
|
1
|
+
*image/pjpeg :base64 =Fixes a bug with IE6 and progressive JPEGs
|
2
|
+
image/x-bmp @bmp
|
3
|
+
image/x-cmu-raster @ras
|
4
|
+
image/x-compressed-xcf @xcfbz2,xcfgz =see-also:image/x-xcf
|
5
|
+
image/x-hasselblad-3fr @3fr :base64
|
6
|
+
image/x-paintshoppro @psp,pspimage :base64
|
7
|
+
image/x-pict
|
8
|
+
image/x-portable-anymap @pnm :base64
|
9
|
+
image/x-portable-bitmap @pbm :base64
|
10
|
+
image/x-portable-graymap @pgm :base64
|
11
|
+
image/x-portable-pixmap @ppm :base64
|
12
|
+
image/x-rgb @rgb :base64
|
13
|
+
image/x-targa @tga
|
14
|
+
image/x-vnd.dgn @dgn
|
15
|
+
image/x-win-bmp
|
16
|
+
image/x-xbitmap @xbm :7bit
|
17
|
+
image/x-xbm @xbm :7bit
|
18
|
+
image/x-xcf @xcf '{XCF=http://git.gnome.org/browse/gimp/tree/devel-docs/xcf.txt}
|
19
|
+
image/x-xpixmap @xpm :8bit
|
20
|
+
image/x-xwindowdump @xwd :base64
|
@@ -0,0 +1,18 @@
|
|
1
|
+
message/CPIM 'IANA,RFC3862
|
2
|
+
message/delivery-status 'IANA,RFC1894
|
3
|
+
message/disposition-notification 'IANA,RFC3798
|
4
|
+
message/example 'IANA,RFC4735
|
5
|
+
message/external-body :8bit 'IANA,RFC2045,RFC2046
|
6
|
+
message/feedback-report 'IANA,RFC5965
|
7
|
+
message/global 'IANA,RFC6532
|
8
|
+
message/global-delivery-status 'IANA,RFC6533
|
9
|
+
message/global-disposition-notification 'IANA,RFC6533
|
10
|
+
message/global-headers 'IANA,RFC6533
|
11
|
+
message/http 'IANA,RFC2616
|
12
|
+
message/imdn+xml 'IANA,RFC5438
|
13
|
+
message/partial :8bit 'IANA,RFC2045,RFC2046
|
14
|
+
message/rfc822 @eml :8bit 'IANA,RFC2045,RFC2046
|
15
|
+
message/s-http 'IANA,RFC2660
|
16
|
+
message/sip 'IANA,RFC3261
|
17
|
+
message/sipfrag 'IANA,RFC3420
|
18
|
+
message/tracking-status 'IANA,RFC3886
|
@@ -0,0 +1,15 @@
|
|
1
|
+
model/example 'IANA,RFC4735
|
2
|
+
model/iges @igs,iges 'IANA,[Parks]
|
3
|
+
model/mesh @msh,mesh,silo 'IANA,RFC2077
|
4
|
+
model/vnd.collada+xml 'IANA,[Riordon]
|
5
|
+
model/vnd.dwf 'IANA,[Pratt]
|
6
|
+
model/vnd.flatland.3dml 'IANA,[Powers]
|
7
|
+
model/vnd.gdl 'IANA,[Babits]
|
8
|
+
model/vnd.gs-gdl 'IANA,[Babits]
|
9
|
+
model/vnd.gtw 'IANA,[Ozaki]
|
10
|
+
model/vnd.moml+xml 'IANA,[Brooks]
|
11
|
+
model/vnd.mts 'IANA,[Rabinovitch]
|
12
|
+
model/vnd.parasolid.transmit.binary @x_b,xmt_bin 'IANA,[Parasolid]
|
13
|
+
model/vnd.parasolid.transmit.text @x_t,xmt_txt :quoted-printable 'IANA,[Parasolid]
|
14
|
+
model/vnd.vtu 'IANA,[Rabinovitch]
|
15
|
+
model/vrml @wrl,vrml 'IANA,RFC2077
|
@@ -0,0 +1,14 @@
|
|
1
|
+
multipart/alternative :8bit 'IANA,RFC2045,RFC2046
|
2
|
+
multipart/appledouble :8bit 'IANA,[Faltstrom]
|
3
|
+
multipart/byteranges 'IANA,RFC2616
|
4
|
+
multipart/digest :8bit 'IANA,RFC2045,RFC2046
|
5
|
+
multipart/encrypted 'IANA,RFC1847
|
6
|
+
multipart/example 'IANA,RFC4735
|
7
|
+
multipart/form-data 'IANA,RFC2388
|
8
|
+
multipart/header-set 'IANA,[Crocker]
|
9
|
+
multipart/mixed :8bit 'IANA,RFC2045,RFC2046
|
10
|
+
multipart/parallel :8bit 'IANA,RFC2045,RFC2046
|
11
|
+
multipart/related 'IANA,RFC2387
|
12
|
+
multipart/report 'IANA,RFC6522
|
13
|
+
multipart/signed 'IANA,RFC1847
|
14
|
+
multipart/voice-message 'IANA,RFC2421,RFC2423
|
@@ -0,0 +1 @@
|
|
1
|
+
!multipart/x-parallel =use-instead:multipart/parallel
|
@@ -0,0 +1,8 @@
|
|
1
|
+
!chemical/x-pdb @pdb =use-instead:x-chemical/x-pdb
|
2
|
+
!chemical/x-xyz @xyz =use-instead:x-chemical/x-xyz
|
3
|
+
*!drawing/dwf @dwf =use-instead:x-drawing/dwf
|
4
|
+
x-chemical/x-pdb @pdb
|
5
|
+
x-chemical/x-xyz @xyz
|
6
|
+
x-conference/x-cooltalk @ice
|
7
|
+
x-drawing/dwf @dwf
|
8
|
+
x-world/x-vrml @wrl,vrml
|
@@ -0,0 +1,61 @@
|
|
1
|
+
text/1d-interleaved-parityfec 'IANA,RFC6015
|
2
|
+
text/calendar 'IANA,RFC5545
|
3
|
+
text/css @css :8bit 'IANA,RFC2318
|
4
|
+
text/csv @csv :8bit 'IANA,RFC4180
|
5
|
+
text/dns 'IANA,RFC4027
|
6
|
+
text/encaprtp 'IANA,RFC6849
|
7
|
+
text/enriched 'IANA,RFC1896
|
8
|
+
text/example 'IANA,RFC4735
|
9
|
+
text/fwdred 'IANA,RFC6354
|
10
|
+
text/grammar-ref-list 'IANA,RFC6787
|
11
|
+
text/html @html,htm,htmlx,shtml,htx :8bit 'IANA,[Michael Smith=MSmith],[W3C]
|
12
|
+
text/jcr-cnd 'IANA,[Piegaze]
|
13
|
+
text/mizar 'IANA,[Jesse Alama=Jesse_Alama]
|
14
|
+
text/n3 'IANA,[Prud'hommeaux=Prudhommeaux],[W3C]
|
15
|
+
text/parityfec 'IANA,RFC5109
|
16
|
+
text/plain @txt,asc,c,cc,h,hh,cpp,hpp,dat,hlp 'IANA,RFC2046,RFC3676,RFC5147
|
17
|
+
text/provenance-notation 'IANA,[Herman],[W3C]
|
18
|
+
text/prs.fallenstein.rst @rst 'IANA,[Fallenstein]
|
19
|
+
text/prs.lines.tag 'IANA,[Lines]
|
20
|
+
text/raptorfec 'IANA,RFC6682
|
21
|
+
text/RED 'IANA,RFC4102
|
22
|
+
text/rfc822-headers 'IANA,RFC6522
|
23
|
+
text/richtext @rtx :8bit 'IANA,RFC2045,RFC2046
|
24
|
+
text/rtf @rtf :8bit 'IANA,[Lindner]
|
25
|
+
text/rtp-enc-aescm128 'IANA,[3GPP]
|
26
|
+
text/rtploopback 'IANA,RFC6849
|
27
|
+
text/rtx 'IANA,RFC4588
|
28
|
+
text/sgml @sgml,sgm 'IANA,RFC1874
|
29
|
+
text/t140 'IANA,RFC4103
|
30
|
+
text/tab-separated-values @tsv 'IANA,[Lindner]
|
31
|
+
text/troff @t,tr,roff,troff :8bit 'IANA,RFC4263
|
32
|
+
text/turtle 'IANA,[Prud'hommeaux=Prudhommeaux],[W3C]
|
33
|
+
text/ulpfec 'IANA,RFC5109
|
34
|
+
text/uri-list 'IANA,RFC2483
|
35
|
+
text/vcard 'IANA,RFC6350
|
36
|
+
text/vnd.abc 'IANA,[Allen]
|
37
|
+
text/vnd.curl 'IANA,[Byrnes]
|
38
|
+
text/vnd.debian.copyright 'IANA,[Plessy]
|
39
|
+
text/vnd.DMClientScript 'IANA,[Bradley]
|
40
|
+
text/vnd.dvb.subtitle 'IANA,[Siebert],[Lagally]
|
41
|
+
text/vnd.esmertec.theme-descriptor 'IANA,[Eilemann]
|
42
|
+
text/vnd.fly 'IANA,[Gurney]
|
43
|
+
text/vnd.fmi.flexstor 'IANA,[Hurtta]
|
44
|
+
text/vnd.graphviz 'IANA,[Ellson]
|
45
|
+
text/vnd.in3d.3dml 'IANA,[Powers]
|
46
|
+
text/vnd.in3d.spot 'IANA,[Powers]
|
47
|
+
text/vnd.IPTC.NewsML 'IANA,[IPTC]
|
48
|
+
text/vnd.IPTC.NITF 'IANA,[IPTC]
|
49
|
+
text/vnd.latex-z 'IANA,[Lubos]
|
50
|
+
text/vnd.motorola.reflex 'IANA,[Patton]
|
51
|
+
text/vnd.ms-mediapackage 'IANA,[Nelson]
|
52
|
+
text/vnd.net2phone.commcenter.command @ccc 'IANA,[Xie]
|
53
|
+
text/vnd.radisys.msml-basic-layout 'IANA,RFC5707
|
54
|
+
text/vnd.sun.j2me.app-descriptor @jad :8bit 'IANA,[G.Adams]
|
55
|
+
text/vnd.trolltech.linguist 'IANA,[D.Lambert]
|
56
|
+
text/vnd.wap.si @si 'IANA,[WAP-Forum]
|
57
|
+
text/vnd.wap.sl @sl 'IANA,[WAP-Forum]
|
58
|
+
text/vnd.wap.wml @wml 'IANA,[Stark]
|
59
|
+
text/vnd.wap.wmlscript @wmls 'IANA,[Stark]
|
60
|
+
text/xml @xml,dtd :8bit 'IANA,RFC3023
|
61
|
+
text/xml-external-parsed-entity 'IANA,RFC3023
|
@@ -0,0 +1,8 @@
|
|
1
|
+
!text/directory 'IANA,RFC2425,RFC6350
|
2
|
+
!text/ecmascript 'IANA,RFC4329
|
3
|
+
!text/javascript 'IANA,RFC4329
|
4
|
+
!text/x-rtf @rtf :8bit =use-instead:text/rtf
|
5
|
+
!text/x-vnd.flatland.3dml =use-instead:model/vnd.flatland.3dml
|
6
|
+
*!text/comma-separated-values @csv :8bit =use-instead:text/csv
|
7
|
+
*!text/vnd.flatland.3dml =use-instead:model/vnd.flatland.3dml
|
8
|
+
!text/vnd.si.uricatalogue 'IANA,[Parks Young=ParksYoung]
|
@@ -0,0 +1 @@
|
|
1
|
+
vms:text/plain @doc :8bit
|
@@ -0,0 +1,73 @@
|
|
1
|
+
video/1d-interleaved-parityfec 'IANA,RFC6015
|
2
|
+
video/3gpp @3gp,3gpp 'IANA,RFC3839,RFC6381
|
3
|
+
video/3gpp-tt 'IANA,RFC4396
|
4
|
+
video/3gpp2 @3g2,3gpp2 'IANA,RFC4393,RFC6381
|
5
|
+
video/BMPEG 'IANA,RFC3555
|
6
|
+
video/BT656 'IANA,RFC3555
|
7
|
+
video/CelB 'IANA,RFC3555
|
8
|
+
video/DV 'IANA,RFC6469
|
9
|
+
video/encaprtp 'IANA,RFC6849
|
10
|
+
video/example 'IANA,RFC4735
|
11
|
+
video/H261 'IANA,RFC4587
|
12
|
+
video/H263 'IANA,RFC3555
|
13
|
+
video/H263-1998 'IANA,RFC4629
|
14
|
+
video/H263-2000 'IANA,RFC4629
|
15
|
+
video/H264 'IANA,RFC6184
|
16
|
+
video/H264-RCDO 'IANA,RFC6185
|
17
|
+
video/H264-SVC 'IANA,RFC6190
|
18
|
+
video/JPEG 'IANA,RFC3555
|
19
|
+
video/jpeg2000 'IANA,RFC5371,RFC5372
|
20
|
+
video/MJ2 @mj2,mjp2 'IANA,RFC3745
|
21
|
+
video/MP1S 'IANA,RFC3555
|
22
|
+
video/MP2P 'IANA,RFC3555
|
23
|
+
video/MP2T @ts 'IANA,RFC3555
|
24
|
+
video/mp4 @mp4,mpg4,f4v,f4p 'IANA,RFC4337,RFC6381,{Adobe=http://www.kaourantin.net/2007/10/new-file-extensions-and-mime-types.html}
|
25
|
+
video/MP4V-ES 'IANA,RFC6416
|
26
|
+
video/mpeg @mp2,mp3g,mpe,mpeg,mpg :base64 'IANA,RFC2045,RFC2046
|
27
|
+
video/mpeg4-generic 'IANA,RFC3640
|
28
|
+
video/MPV 'IANA,RFC3555
|
29
|
+
video/nv 'IANA,RFC4856
|
30
|
+
video/ogg @ogg,ogv 'IANA,RFC5334
|
31
|
+
video/parityfec 'IANA,RFC5109
|
32
|
+
video/pointer 'IANA,RFC2862
|
33
|
+
video/quicktime @qt,mov :base64 'IANA,RFC6381,[Lindner]
|
34
|
+
video/raptorfec 'IANA,RFC6682
|
35
|
+
video/raw 'IANA,RFC4175
|
36
|
+
video/rtp-enc-aescm128 'IANA,[3GPP]
|
37
|
+
video/rtploopback 'IANA,RFC6849
|
38
|
+
video/rtx 'IANA,RFC4588
|
39
|
+
video/SMPTE292M 'IANA,RFC3497
|
40
|
+
video/ulpfec 'IANA,RFC5109
|
41
|
+
video/vc1 'IANA,RFC4425
|
42
|
+
video/vnd.CCTV 'IANA,[Rottmann]
|
43
|
+
video/vnd.dece.hd 'IANA,[Dolan]
|
44
|
+
video/vnd.dece.mobile 'IANA,[Dolan]
|
45
|
+
video/vnd.dece.mp4 'IANA,[Dolan]
|
46
|
+
video/vnd.dece.pd 'IANA,[Dolan]
|
47
|
+
video/vnd.dece.sd 'IANA,[Dolan]
|
48
|
+
video/vnd.dece.video 'IANA,[Dolan]
|
49
|
+
video/vnd.directv.mpeg 'IANA,[Zerbe]
|
50
|
+
video/vnd.directv.mpeg-tts 'IANA,[Zerbe]
|
51
|
+
video/vnd.dlna.mpeg-tts 'IANA,[Heredia]
|
52
|
+
video/vnd.dvb.file 'IANA,[Siebert],[Murray]
|
53
|
+
video/vnd.fvt 'IANA,[Fuldseth]
|
54
|
+
video/vnd.hns.video 'IANA,[Swaminathan]
|
55
|
+
video/vnd.iptvforum.1dparityfec-1010 'IANA,[Nakamura]
|
56
|
+
video/vnd.iptvforum.1dparityfec-2005 'IANA,[Nakamura]
|
57
|
+
video/vnd.iptvforum.2dparityfec-1010 'IANA,[Nakamura]
|
58
|
+
video/vnd.iptvforum.2dparityfec-2005 'IANA,[Nakamura]
|
59
|
+
video/vnd.iptvforum.ttsavc 'IANA,[Nakamura]
|
60
|
+
video/vnd.iptvforum.ttsmpeg2 'IANA,[Nakamura]
|
61
|
+
video/vnd.motorola.video 'IANA,[McGinty]
|
62
|
+
video/vnd.motorola.videop 'IANA,[McGinty]
|
63
|
+
video/vnd.mpegurl @mxu,m4u :8bit 'IANA,[Recktenwald]
|
64
|
+
video/vnd.ms-playready.media.pyv 'IANA,[DiAcetis]
|
65
|
+
video/vnd.nokia.interleaved-multimedia @nim 'IANA,[Kangaslampi]
|
66
|
+
video/vnd.nokia.videovoip 'IANA,[Nokia]
|
67
|
+
video/vnd.objectvideo @mp4,m4v 'IANA,[Clark]
|
68
|
+
video/vnd.sealed.mpeg1 @s11 'IANA,[Petersen]
|
69
|
+
video/vnd.sealed.mpeg4 @smpg,s14 'IANA,[Petersen]
|
70
|
+
video/vnd.sealed.swf @sswf,ssw 'IANA,[Petersen]
|
71
|
+
video/vnd.sealedmedia.softseal.mov @smov,smo,s1q 'IANA,[Petersen]
|
72
|
+
video/vnd.uvvu.mp4 'IANA,[Dolan]
|
73
|
+
video/vnd.vivo @viv,vivo 'IANA,[Wolfe]
|
@@ -0,0 +1,16 @@
|
|
1
|
+
video/x-dl @dl :base64
|
2
|
+
video/x-dv @dv
|
3
|
+
video/x-fli @fli :base64
|
4
|
+
video/x-flv @flv :base64
|
5
|
+
video/x-gl @gl :base64
|
6
|
+
video/x-ivf @ivf
|
7
|
+
video/x-matroska @mkv
|
8
|
+
video/x-motion-jpeg @mjpg
|
9
|
+
video/x-ms-asf @asf,asx
|
10
|
+
video/x-ms-wm @wm
|
11
|
+
video/x-ms-wmv @wmv
|
12
|
+
video/x-ms-wmx @wmx
|
13
|
+
video/x-ms-wvx @wvx
|
14
|
+
video/x-msvideo @avi :base64
|
15
|
+
video/x-sgi-movie @movie :base64
|
16
|
+
*video/webm @webm '{WebM=http://www.webmproject.org/code/specs/container/}
|