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,567 @@
|
|
1
|
+
# tc_style.rb
|
2
|
+
#
|
3
|
+
# Created by Richard LeBer on 2011-06-11.
|
4
|
+
#
|
5
|
+
# This is Free Software. See LICENSE and COPYING for details.
|
6
|
+
|
7
|
+
require "test/unit"
|
8
|
+
|
9
|
+
require "highline"
|
10
|
+
require "stringio"
|
11
|
+
|
12
|
+
class TestStyle < Test::Unit::TestCase
|
13
|
+
|
14
|
+
def setup
|
15
|
+
@input = StringIO.new
|
16
|
+
@output = StringIO.new
|
17
|
+
@terminal = HighLine.new(@input, @output)
|
18
|
+
@style1 = HighLine::Style.new(:name=>:foo, :code=>"\e[99m", :rgb=>[1,2,3])
|
19
|
+
@style2 = HighLine::Style.new(:name=>:lando, :code=>"\e[98m")
|
20
|
+
@style3 = HighLine::Style.new(:name=>[:foo, :lando], :list=>[:foo, :lando])
|
21
|
+
@style4 = HighLine::Style(:rgb_654321)
|
22
|
+
end
|
23
|
+
|
24
|
+
def teardown
|
25
|
+
# HighLine::Style.clear_index
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_style_method
|
29
|
+
# Retrieve a style from an existing Style (no new Style created)
|
30
|
+
new_style = @style1.dup # This will replace @style1 in the indexes
|
31
|
+
s = HighLine.Style(@style1)
|
32
|
+
assert_instance_of HighLine::Style, s
|
33
|
+
assert_same new_style, s # i.e. s===the latest style created, but not the one searched for
|
34
|
+
|
35
|
+
# Retrieve a style from a new Style (no new Style created)
|
36
|
+
s2 = HighLine::Style.new(:name=>:bar, :code=>"\e[97m")
|
37
|
+
s = HighLine.Style(s2)
|
38
|
+
assert_instance_of HighLine::Style, s
|
39
|
+
assert_same s2, s
|
40
|
+
|
41
|
+
# Create a builtin style from an existing ANSI escape string
|
42
|
+
s = HighLine.Style("\e[1m")
|
43
|
+
assert_instance_of HighLine::Style, s
|
44
|
+
assert_nil s.list
|
45
|
+
assert_equal "\e[1m", s.code
|
46
|
+
assert_equal :bold, s.name
|
47
|
+
|
48
|
+
# Create a builtin style from a new ANSI escape string
|
49
|
+
s = HighLine.Style("\e[96m")
|
50
|
+
assert_instance_of HighLine::Style, s
|
51
|
+
assert_nil s.list
|
52
|
+
assert_equal "\e[96m", s.code
|
53
|
+
|
54
|
+
# Create a builtin style from a symbol
|
55
|
+
s = HighLine.Style(:red)
|
56
|
+
assert_instance_of HighLine::Style, s
|
57
|
+
assert_nil s.list
|
58
|
+
assert_equal :red, s.name
|
59
|
+
|
60
|
+
# Retrieve an existing style by name (no new Style created)
|
61
|
+
s = HighLine.Style(@style2.name)
|
62
|
+
assert_instance_of HighLine::Style, s
|
63
|
+
assert_same @style2, s
|
64
|
+
|
65
|
+
# See below for color scheme tests
|
66
|
+
|
67
|
+
# Create style from a Hash
|
68
|
+
s = HighLine.Style(:name=>:han, :code=>"blah", :rgb=>'phooey')
|
69
|
+
assert_instance_of HighLine::Style, s
|
70
|
+
assert_equal :han, s.name
|
71
|
+
assert_equal "blah", s.code
|
72
|
+
assert_equal "phooey", s.rgb
|
73
|
+
|
74
|
+
# Create style from an RGB foreground color code
|
75
|
+
s = HighLine.Style(:rgb_1f2e3d)
|
76
|
+
assert_instance_of HighLine::Style, s
|
77
|
+
assert_equal :rgb_1f2e3d, s.name
|
78
|
+
assert_equal "\e[38;5;23m", s.code # Trust me; more testing below
|
79
|
+
assert_equal [31,46,61], s.rgb # 0x1f==31, 0x2e==46, 0x3d=61
|
80
|
+
|
81
|
+
# Create style from an RGB background color code
|
82
|
+
s = HighLine.Style(:on_rgb_1f2e3d)
|
83
|
+
assert_instance_of HighLine::Style, s
|
84
|
+
assert_equal :on_rgb_1f2e3d, s.name
|
85
|
+
assert_equal "\e[48;5;23m", s.code # Trust me; more testing below
|
86
|
+
assert_equal [31,46,61], s.rgb # 0x1f==31, 0x2e==46, 0x3d=61
|
87
|
+
|
88
|
+
# Create a style list
|
89
|
+
s1 = HighLine.Style(:bold, :red)
|
90
|
+
assert_instance_of HighLine::Style, s1
|
91
|
+
assert_equal [:bold, :red], s1.list
|
92
|
+
|
93
|
+
# Find an existing style list
|
94
|
+
s2 = HighLine.Style(:bold, :red)
|
95
|
+
assert_instance_of HighLine::Style, s2
|
96
|
+
assert_same s1, s2
|
97
|
+
|
98
|
+
# Create a style list with nils
|
99
|
+
s1 = HighLine.Style(:underline, nil, :blue)
|
100
|
+
assert_instance_of HighLine::Style, s1
|
101
|
+
assert_equal [:underline, :blue], s1.list
|
102
|
+
|
103
|
+
# Raise an error for an undefined style
|
104
|
+
assert_raise(::NameError) { HighLine.Style(:fubar) }
|
105
|
+
end
|
106
|
+
|
107
|
+
def test_no_color_scheme
|
108
|
+
HighLine.color_scheme = nil
|
109
|
+
assert_raise(::NameError) { HighLine.Style(:critical) }
|
110
|
+
end
|
111
|
+
|
112
|
+
def test_with_color_scheme
|
113
|
+
HighLine.color_scheme = HighLine::SampleColorScheme.new
|
114
|
+
s = HighLine.Style(:critical)
|
115
|
+
assert_instance_of HighLine::Style, s
|
116
|
+
assert_equal :critical, s.name
|
117
|
+
assert_equal [:yellow, :on_red], s.list
|
118
|
+
end
|
119
|
+
|
120
|
+
def test_builtin_foreground_colors_defined
|
121
|
+
HighLine::COLORS.each do |color|
|
122
|
+
style = HighLine.const_get(color+'_STYLE')
|
123
|
+
assert_instance_of HighLine::Style, style
|
124
|
+
assert_equal color.downcase.to_sym, style.name
|
125
|
+
assert style.builtin
|
126
|
+
code = HighLine.const_get(color)
|
127
|
+
assert_instance_of String, code, "Bad code for #{color}"
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
def test_builtin_background_colors_defined
|
132
|
+
HighLine::COLORS.each do |color|
|
133
|
+
style = HighLine.const_get('ON_' + color+'_STYLE')
|
134
|
+
assert_instance_of HighLine::Style, style
|
135
|
+
assert_equal "ON_#{color}".downcase.to_sym, style.name
|
136
|
+
assert style.builtin
|
137
|
+
code = HighLine.const_get('ON_' + color)
|
138
|
+
assert_instance_of String, code, "Bad code for ON_#{color}"
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
def test_builtin_styles_defined
|
143
|
+
HighLine::STYLES.each do |style_constant|
|
144
|
+
style = HighLine.const_get(style_constant+'_STYLE')
|
145
|
+
assert_instance_of HighLine::Style, style
|
146
|
+
assert_equal style_constant.downcase.to_sym, style.name
|
147
|
+
assert style.builtin
|
148
|
+
code = HighLine.const_get(style_constant)
|
149
|
+
assert_instance_of String, code, "Bad code for #{style_constant}"
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
def test_index
|
154
|
+
# Add a Style with a new name and code
|
155
|
+
assert_nil HighLine::Style.list[:s1]
|
156
|
+
assert_nil HighLine::Style.code_index['foo']
|
157
|
+
s1 = HighLine::Style.new(:name=>:s1, :code=>'foo')
|
158
|
+
assert_not_nil HighLine::Style.list[:s1]
|
159
|
+
assert_same s1, HighLine::Style.list[:s1]
|
160
|
+
assert_equal :s1, HighLine::Style.list[:s1].name
|
161
|
+
assert_equal 'foo', HighLine::Style.list[:s1].code
|
162
|
+
styles = HighLine::Style.list.size
|
163
|
+
codes = HighLine::Style.code_index.size
|
164
|
+
assert_instance_of Array, HighLine::Style.code_index['foo']
|
165
|
+
assert_equal 1, HighLine::Style.code_index['foo'].size
|
166
|
+
assert_same s1, HighLine::Style.code_index['foo'].last
|
167
|
+
assert_equal :s1, HighLine::Style.code_index['foo'].last.name
|
168
|
+
assert_equal 'foo', HighLine::Style.code_index['foo'].last.code
|
169
|
+
|
170
|
+
# Add another Style with a new name and code
|
171
|
+
assert_nil HighLine::Style.list[:s2]
|
172
|
+
assert_nil HighLine::Style.code_index['bar']
|
173
|
+
s2 = HighLine::Style.new(:name=>:s2, :code=>'bar')
|
174
|
+
assert_equal styles+1, HighLine::Style.list.size
|
175
|
+
assert_equal codes+1, HighLine::Style.code_index.size
|
176
|
+
assert_not_nil HighLine::Style.list[:s2]
|
177
|
+
assert_same s2, HighLine::Style.list[:s2]
|
178
|
+
assert_equal :s2, HighLine::Style.list[:s2].name
|
179
|
+
assert_equal 'bar', HighLine::Style.list[:s2].code
|
180
|
+
assert_instance_of Array, HighLine::Style.code_index['bar']
|
181
|
+
assert_equal 1, HighLine::Style.code_index['bar'].size
|
182
|
+
assert_same s2, HighLine::Style.code_index['bar'].last
|
183
|
+
assert_equal :s2, HighLine::Style.code_index['bar'].last.name
|
184
|
+
assert_equal 'bar', HighLine::Style.code_index['bar'].last.code
|
185
|
+
|
186
|
+
# Add a Style with an existing name
|
187
|
+
s3_before = HighLine::Style.list[:s2]
|
188
|
+
assert_not_nil HighLine::Style.list[:s2]
|
189
|
+
assert_nil HighLine::Style.code_index['baz']
|
190
|
+
s3 = HighLine::Style.new(:name=>:s2, :code=>'baz')
|
191
|
+
assert_not_same s2, s3
|
192
|
+
assert_not_same s3_before, s3
|
193
|
+
assert_equal styles+1, HighLine::Style.list.size
|
194
|
+
assert_equal codes+2, HighLine::Style.code_index.size
|
195
|
+
assert_not_nil HighLine::Style.list[:s2]
|
196
|
+
assert_same s3, HighLine::Style.list[:s2]
|
197
|
+
assert_not_same s2, HighLine::Style.list[:s2]
|
198
|
+
assert_equal :s2, HighLine::Style.list[:s2].name
|
199
|
+
assert_equal 'baz', HighLine::Style.list[:s2].code
|
200
|
+
assert_instance_of Array, HighLine::Style.code_index['baz']
|
201
|
+
assert_equal 1, HighLine::Style.code_index['baz'].size
|
202
|
+
assert_same s3, HighLine::Style.code_index['baz'].last
|
203
|
+
assert_equal :s2, HighLine::Style.code_index['baz'].last.name
|
204
|
+
assert_equal 'baz', HighLine::Style.code_index['baz'].last.code
|
205
|
+
|
206
|
+
# Add a Style with an existing code
|
207
|
+
assert_equal 1, HighLine::Style.code_index['baz'].size
|
208
|
+
s4 = HighLine::Style.new(:name=>:s4, :code=>'baz')
|
209
|
+
assert_equal styles+2, HighLine::Style.list.size
|
210
|
+
assert_equal codes+2, HighLine::Style.code_index.size
|
211
|
+
assert_not_nil HighLine::Style.list[:s4]
|
212
|
+
assert_same s4, HighLine::Style.list[:s4]
|
213
|
+
assert_equal :s4, HighLine::Style.list[:s4].name
|
214
|
+
assert_equal 'baz', HighLine::Style.list[:s4].code
|
215
|
+
assert_equal 2, HighLine::Style.code_index['baz'].size
|
216
|
+
assert_same s3, HighLine::Style.code_index['baz'].first # Unchanged from last time
|
217
|
+
assert_equal :s2, HighLine::Style.code_index['baz'].first.name # Unchanged from last time
|
218
|
+
assert_equal 'baz', HighLine::Style.code_index['baz'].first.code # Unchanged from last time
|
219
|
+
assert_same s4, HighLine::Style.code_index['baz'].last
|
220
|
+
assert_equal :s4, HighLine::Style.code_index['baz'].last.name
|
221
|
+
assert_equal 'baz', HighLine::Style.code_index['baz'].last.code
|
222
|
+
end
|
223
|
+
|
224
|
+
def test_rgb_hex
|
225
|
+
assert_equal "abcdef", HighLine::Style.rgb_hex("abcdef")
|
226
|
+
assert_equal "ABCDEF", HighLine::Style.rgb_hex("AB","CD","EF")
|
227
|
+
assert_equal "010203", HighLine::Style.rgb_hex(1,2,3)
|
228
|
+
assert_equal "123456", HighLine::Style.rgb_hex(18,52,86)
|
229
|
+
end
|
230
|
+
|
231
|
+
def test_rgb_parts
|
232
|
+
assert_equal [1,2,3], HighLine::Style.rgb_parts("010203")
|
233
|
+
assert_equal [18,52,86], HighLine::Style.rgb_parts("123456")
|
234
|
+
end
|
235
|
+
|
236
|
+
def test_rgb
|
237
|
+
s = HighLine::Style.rgb(1, 2, 3)
|
238
|
+
assert_instance_of HighLine::Style, s
|
239
|
+
assert_equal :rgb_010203, s.name
|
240
|
+
assert_equal [1,2,3], s.rgb
|
241
|
+
assert_equal "\e[38;5;16m", s.code
|
242
|
+
|
243
|
+
s = HighLine::Style.rgb("12", "34","56")
|
244
|
+
assert_instance_of HighLine::Style, s
|
245
|
+
assert_equal :rgb_123456, s.name
|
246
|
+
assert_equal [0x12, 0x34, 0x56], s.rgb
|
247
|
+
assert_equal "\e[38;5;24m", s.code
|
248
|
+
|
249
|
+
s = HighLine::Style.rgb("abcdef")
|
250
|
+
assert_instance_of HighLine::Style, s
|
251
|
+
assert_equal :rgb_abcdef, s.name
|
252
|
+
assert_equal [0xab, 0xcd, 0xef], s.rgb
|
253
|
+
assert_equal "\e[38;5;189m", s.code
|
254
|
+
end
|
255
|
+
|
256
|
+
def test_rgb_number
|
257
|
+
# ANSI RGB coding splits 0..255 into equal sixths, and then the
|
258
|
+
# red green and blue are encoded in base 6, plus 16, i.e.
|
259
|
+
# 16 + 36*(red_level) + 6*(green_level) + blue_level,
|
260
|
+
# where each of red_level, green_level, and blue_level are in
|
261
|
+
# the range 0..5
|
262
|
+
|
263
|
+
# This test logic works because 42 is just below 1/6 of 255,
|
264
|
+
# and 43 is just above
|
265
|
+
|
266
|
+
assert_equal 16 + 0*36 + 0*6 + 0, HighLine::Style.rgb_number( 0, 0, 0)
|
267
|
+
assert_equal 16 + 0*36 + 0*6 + 0, HighLine::Style.rgb_number( 0, 0, 42)
|
268
|
+
assert_equal 16 + 0*36 + 0*6 + 1, HighLine::Style.rgb_number( 0, 0, 43)
|
269
|
+
|
270
|
+
assert_equal 16 + 0*36 + 0*6 + 0, HighLine::Style.rgb_number( 0, 42, 0)
|
271
|
+
assert_equal 16 + 0*36 + 0*6 + 0, HighLine::Style.rgb_number( 0, 42, 42)
|
272
|
+
assert_equal 16 + 0*36 + 0*6 + 1, HighLine::Style.rgb_number( 0, 42, 43)
|
273
|
+
|
274
|
+
assert_equal 16 + 0*36 + 1*6 + 0, HighLine::Style.rgb_number( 0, 43, 0)
|
275
|
+
assert_equal 16 + 0*36 + 1*6 + 0, HighLine::Style.rgb_number( 0, 43, 42)
|
276
|
+
assert_equal 16 + 0*36 + 1*6 + 1, HighLine::Style.rgb_number( 0, 43, 43)
|
277
|
+
|
278
|
+
assert_equal 16 + 0*36 + 0*6 + 0, HighLine::Style.rgb_number( 42, 0, 0)
|
279
|
+
assert_equal 16 + 0*36 + 0*6 + 0, HighLine::Style.rgb_number( 42, 0, 42)
|
280
|
+
assert_equal 16 + 0*36 + 0*6 + 1, HighLine::Style.rgb_number( 42, 0, 43)
|
281
|
+
|
282
|
+
assert_equal 16 + 0*36 + 0*6 + 0, HighLine::Style.rgb_number( 42, 42, 0)
|
283
|
+
assert_equal 16 + 0*36 + 0*6 + 0, HighLine::Style.rgb_number( 42, 42, 42)
|
284
|
+
assert_equal 16 + 0*36 + 0*6 + 1, HighLine::Style.rgb_number( 42, 42, 43)
|
285
|
+
|
286
|
+
assert_equal 16 + 0*36 + 1*6 + 0, HighLine::Style.rgb_number( 42, 43, 0)
|
287
|
+
assert_equal 16 + 0*36 + 1*6 + 0, HighLine::Style.rgb_number( 42, 43, 42)
|
288
|
+
assert_equal 16 + 0*36 + 1*6 + 1, HighLine::Style.rgb_number( 42, 43, 43)
|
289
|
+
|
290
|
+
assert_equal 16 + 1*36 + 0*6 + 0, HighLine::Style.rgb_number( 43, 0, 0)
|
291
|
+
assert_equal 16 + 1*36 + 0*6 + 0, HighLine::Style.rgb_number( 43, 0, 42)
|
292
|
+
assert_equal 16 + 1*36 + 0*6 + 1, HighLine::Style.rgb_number( 43, 0, 43)
|
293
|
+
|
294
|
+
assert_equal 16 + 1*36 + 0*6 + 0, HighLine::Style.rgb_number( 43, 42, 0)
|
295
|
+
assert_equal 16 + 1*36 + 0*6 + 0, HighLine::Style.rgb_number( 43, 42, 42)
|
296
|
+
assert_equal 16 + 1*36 + 0*6 + 1, HighLine::Style.rgb_number( 43, 42, 43)
|
297
|
+
|
298
|
+
assert_equal 16 + 1*36 + 1*6 + 0, HighLine::Style.rgb_number( 43, 43, 0)
|
299
|
+
assert_equal 16 + 1*36 + 1*6 + 0, HighLine::Style.rgb_number( 43, 43, 42)
|
300
|
+
assert_equal 16 + 1*36 + 1*6 + 1, HighLine::Style.rgb_number( 43, 43, 43)
|
301
|
+
|
302
|
+
assert_equal 16 + 5*36 + 5*6 + 5, HighLine::Style.rgb_number(255,255,255)
|
303
|
+
end
|
304
|
+
|
305
|
+
def test_ansi_rgb_to_hex
|
306
|
+
assert_equal "000000", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 0)
|
307
|
+
assert_equal "000000", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 0)
|
308
|
+
assert_equal "00002b", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 1)
|
309
|
+
|
310
|
+
assert_equal "000000", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 0)
|
311
|
+
assert_equal "000000", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 0)
|
312
|
+
assert_equal "00002b", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 1)
|
313
|
+
|
314
|
+
assert_equal "002b00", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 1*6 + 0)
|
315
|
+
assert_equal "002b00", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 1*6 + 0)
|
316
|
+
assert_equal "002b2b", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 1*6 + 1)
|
317
|
+
|
318
|
+
assert_equal "000000", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 0)
|
319
|
+
assert_equal "000000", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 0)
|
320
|
+
assert_equal "00002b", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 1)
|
321
|
+
|
322
|
+
assert_equal "000000", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 0)
|
323
|
+
assert_equal "000000", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 0)
|
324
|
+
assert_equal "00002b", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 0*6 + 1)
|
325
|
+
|
326
|
+
assert_equal "002b00", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 1*6 + 0)
|
327
|
+
assert_equal "002b00", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 1*6 + 0)
|
328
|
+
assert_equal "002b2b", HighLine::Style.ansi_rgb_to_hex(16 + 0*36 + 1*6 + 1)
|
329
|
+
|
330
|
+
assert_equal "2b0000", HighLine::Style.ansi_rgb_to_hex(16 + 1*36 + 0*6 + 0)
|
331
|
+
assert_equal "2b0000", HighLine::Style.ansi_rgb_to_hex(16 + 1*36 + 0*6 + 0)
|
332
|
+
assert_equal "2b002b", HighLine::Style.ansi_rgb_to_hex(16 + 1*36 + 0*6 + 1)
|
333
|
+
|
334
|
+
assert_equal "2b0000", HighLine::Style.ansi_rgb_to_hex(16 + 1*36 + 0*6 + 0)
|
335
|
+
assert_equal "2b0000", HighLine::Style.ansi_rgb_to_hex(16 + 1*36 + 0*6 + 0)
|
336
|
+
assert_equal "2b002b", HighLine::Style.ansi_rgb_to_hex(16 + 1*36 + 0*6 + 1)
|
337
|
+
|
338
|
+
assert_equal "2b2b00", HighLine::Style.ansi_rgb_to_hex(16 + 1*36 + 1*6 + 0)
|
339
|
+
assert_equal "2b2b00", HighLine::Style.ansi_rgb_to_hex(16 + 1*36 + 1*6 + 0)
|
340
|
+
assert_equal "2b2b2b", HighLine::Style.ansi_rgb_to_hex(16 + 1*36 + 1*6 + 1)
|
341
|
+
|
342
|
+
# 0xd5 is the smallest number where n/255.0*6.0 > 5
|
343
|
+
assert_equal "d5d5d5", HighLine::Style.ansi_rgb_to_hex(16 + 5*36 + 5*6 + 5)
|
344
|
+
end
|
345
|
+
|
346
|
+
def test_list
|
347
|
+
list_size = HighLine::Style.list.size
|
348
|
+
# Add a Style with a new name and code
|
349
|
+
assert_nil HighLine::Style.list[:s5]
|
350
|
+
s5 = HighLine::Style.new(:name=>:s5, :code=>'foo')
|
351
|
+
assert_not_nil HighLine::Style.list[:s5]
|
352
|
+
assert_equal list_size+1, HighLine::Style.list.size
|
353
|
+
assert_not_nil HighLine::Style.list[:s5]
|
354
|
+
assert_same s5, HighLine::Style.list[:s5]
|
355
|
+
assert_equal :s5, HighLine::Style.list[:s5].name
|
356
|
+
assert_equal 'foo', HighLine::Style.list[:s5].code
|
357
|
+
|
358
|
+
# Add another Style with a new name and code
|
359
|
+
assert_nil HighLine::Style.list[:s6]
|
360
|
+
s6 = HighLine::Style.new(:name=>:s6, :code=>'bar')
|
361
|
+
assert_equal list_size+2, HighLine::Style.list.size
|
362
|
+
assert_not_nil HighLine::Style.list[:s6]
|
363
|
+
assert_same s6, HighLine::Style.list[:s6]
|
364
|
+
assert_equal :s6, HighLine::Style.list[:s6].name
|
365
|
+
assert_equal 'bar', HighLine::Style.list[:s6].code
|
366
|
+
|
367
|
+
# Add a Style with an existing name
|
368
|
+
s7 = HighLine::Style.new(:name=>:s6, :code=>'baz')
|
369
|
+
assert_equal list_size+2, HighLine::Style.list.size # No net addition to list
|
370
|
+
assert_not_nil HighLine::Style.list[:s6]
|
371
|
+
assert_same s7, HighLine::Style.list[:s6] # New one replaces old one
|
372
|
+
assert_not_same s6, HighLine::Style.list[:s6]
|
373
|
+
assert_equal :s6, HighLine::Style.list[:s6].name
|
374
|
+
assert_equal 'baz', HighLine::Style.list[:s6].code
|
375
|
+
end
|
376
|
+
|
377
|
+
def test_code_index
|
378
|
+
list_size = HighLine::Style.code_index.size
|
379
|
+
|
380
|
+
# Add a Style with a new name and code
|
381
|
+
assert_nil HighLine::Style.code_index['chewie']
|
382
|
+
HighLine::Style.new(:name=>:s8, :code=>'chewie')
|
383
|
+
assert_equal list_size+1, HighLine::Style.code_index.size
|
384
|
+
assert_instance_of Array, HighLine::Style.code_index['chewie']
|
385
|
+
assert_equal 1, HighLine::Style.code_index['chewie'].size
|
386
|
+
assert_equal :s8, HighLine::Style.code_index['chewie'].last.name
|
387
|
+
assert_equal 'chewie', HighLine::Style.code_index['chewie'].last.code
|
388
|
+
|
389
|
+
# Add another Style with a new name and code
|
390
|
+
assert_nil HighLine::Style.code_index['c3po']
|
391
|
+
HighLine::Style.new(:name=>:s9, :code=>'c3po')
|
392
|
+
assert_equal list_size+2, HighLine::Style.code_index.size
|
393
|
+
assert_instance_of Array, HighLine::Style.code_index['c3po']
|
394
|
+
assert_equal 1, HighLine::Style.code_index['c3po'].size
|
395
|
+
assert_equal :s9, HighLine::Style.code_index['c3po'].last.name
|
396
|
+
assert_equal 'c3po', HighLine::Style.code_index['c3po'].last.code
|
397
|
+
|
398
|
+
# Add a Style with an existing code
|
399
|
+
assert_equal 1, HighLine::Style.code_index['c3po'].size
|
400
|
+
HighLine::Style.new(:name=>:s10, :code=>'c3po')
|
401
|
+
assert_equal list_size+2, HighLine::Style.code_index.size
|
402
|
+
assert_equal 2, HighLine::Style.code_index['c3po'].size
|
403
|
+
assert_equal :s10, HighLine::Style.code_index['c3po'].last.name
|
404
|
+
assert_equal 'c3po', HighLine::Style.code_index['c3po'].last.code
|
405
|
+
end
|
406
|
+
|
407
|
+
def test_uncolor
|
408
|
+
# Normal color
|
409
|
+
assert_equal "This should be reverse underlined magenta!\n",
|
410
|
+
HighLine::Style.uncolor("This should be \e[7m\e[4m\e[35mreverse underlined magenta\e[0m!\n" )
|
411
|
+
|
412
|
+
# RGB color
|
413
|
+
assert_equal "This should be rgb_906030!\n",
|
414
|
+
HighLine::Style.uncolor("This should be \e[38;5;137mrgb_906030\e[0m!\n" )
|
415
|
+
end
|
416
|
+
|
417
|
+
def test_color
|
418
|
+
assert_equal "\e[99mstring\e[0m", @style1.color("string") # simple style
|
419
|
+
assert_equal "\e[99m\e[98mstring\e[0m", @style3.color("string") # Style list
|
420
|
+
end
|
421
|
+
|
422
|
+
def test_code
|
423
|
+
assert_equal "\e[99m", @style1.code # simple style
|
424
|
+
assert_equal "\e[99m\e[98m", @style3.code # Style list
|
425
|
+
end
|
426
|
+
|
427
|
+
def test_red
|
428
|
+
assert_equal 0x65, @style4.red
|
429
|
+
assert_equal 0, HighLine::Style(:none).red # Probably reliable
|
430
|
+
assert_equal 0, HighLine::Style(:black).red # Probably reliable
|
431
|
+
assert_equal 255, HighLine::Style(:bright_magenta).red # Seems to be reliable
|
432
|
+
assert_equal 255, HighLine::Style(:on_none).red # Probably reliable
|
433
|
+
end
|
434
|
+
|
435
|
+
def test_green
|
436
|
+
assert_equal 0x43, @style4.green
|
437
|
+
assert_equal 0, HighLine::Style(:none).green # Probably reliable
|
438
|
+
assert_equal 0, HighLine::Style(:black).green # Probably reliable
|
439
|
+
assert 240 <= HighLine::Style(:bright_cyan).green # Probably reliable
|
440
|
+
assert_equal 255, HighLine::Style(:on_none).green # Probably reliable
|
441
|
+
end
|
442
|
+
|
443
|
+
def test_blue
|
444
|
+
assert_equal 0x21, @style4.blue
|
445
|
+
assert_equal 0, HighLine::Style(:none).blue # Probably reliable
|
446
|
+
assert_equal 0, HighLine::Style(:black).blue # Probably reliable
|
447
|
+
assert_equal 255, HighLine::Style(:bright_blue).blue # Probably reliable
|
448
|
+
assert_equal 255, HighLine::Style(:on_none).blue # Probably reliable
|
449
|
+
end
|
450
|
+
|
451
|
+
def test_builtin
|
452
|
+
assert HighLine::Style(:red).builtin
|
453
|
+
assert !@style1.builtin
|
454
|
+
end
|
455
|
+
|
456
|
+
def test_variant
|
457
|
+
style1_name = @style1.name
|
458
|
+
style1_code = @style1.code
|
459
|
+
style1_rgb = @style1.rgb
|
460
|
+
|
461
|
+
s1 = @style1.variant(:new_foo1, :code=>'abracadabra')
|
462
|
+
assert_instance_of HighLine::Style, s1
|
463
|
+
assert_not_same @style1, s1 # This is a copy
|
464
|
+
assert_equal :new_foo1, s1.name # Changed
|
465
|
+
assert_equal 'abracadabra', s1.code # Changed
|
466
|
+
assert_equal [1,2,3], s1.rgb # Unchanged
|
467
|
+
|
468
|
+
s2 = @style1.variant(:new_foo2, :increment=>-15)
|
469
|
+
assert_instance_of HighLine::Style, s2
|
470
|
+
assert_not_same @style1, s2 # This is a copy
|
471
|
+
assert_equal :new_foo2, s2.name # Changed
|
472
|
+
assert_equal "\e[84m", s2.code # 99 (original code) - 15
|
473
|
+
assert_equal [1,2,3], s2.rgb # Unchanged
|
474
|
+
|
475
|
+
s3 = @style1.variant(:new_foo3, :code=>"\e[55m", :increment=>15)
|
476
|
+
assert_instance_of HighLine::Style, s3
|
477
|
+
assert_not_same @style1, s3 # This is a copy
|
478
|
+
assert_equal :new_foo3, s3.name # Changed
|
479
|
+
assert_equal "\e[70m", s3.code # 99 (new code) + 15
|
480
|
+
assert_equal [1,2,3], s3.rgb # Unchanged
|
481
|
+
|
482
|
+
s4 = @style1.variant(:new_foo4, :code=>"\e[55m", :increment=>15, :rgb=>"blah")
|
483
|
+
assert_instance_of HighLine::Style, s4
|
484
|
+
assert_not_same @style1, s4 # This is a copy
|
485
|
+
assert_equal :new_foo4, s4.name # Changed
|
486
|
+
assert_equal "\e[70m", s4.code # 99 (new code) + 15
|
487
|
+
assert_equal 'blah', s4.rgb # Changed
|
488
|
+
|
489
|
+
s5 = @style1.variant(:new_foo5)
|
490
|
+
assert_instance_of HighLine::Style, s5
|
491
|
+
assert_not_same @style1, s5 # This is a copy
|
492
|
+
assert_equal :new_foo5, s5.name # Changed
|
493
|
+
assert_equal "\e[99m", s5.code # Unchanged
|
494
|
+
assert_equal [1,2,3], s5.rgb # Unchanged
|
495
|
+
|
496
|
+
# No @style1's have been harmed in the running of this test
|
497
|
+
assert_equal style1_name, @style1.name
|
498
|
+
assert_equal style1_code, @style1.code
|
499
|
+
assert_equal style1_rgb, @style1.rgb
|
500
|
+
|
501
|
+
assert_raise(::RuntimeError) { @style3.variant(:new_foo6) } # Can't create a variant of a list style
|
502
|
+
end
|
503
|
+
|
504
|
+
def test_on
|
505
|
+
style1_name = @style1.name
|
506
|
+
style1_code = @style1.code
|
507
|
+
style1_rgb = @style1.rgb
|
508
|
+
|
509
|
+
s1 = @style1.on
|
510
|
+
assert_instance_of HighLine::Style, s1
|
511
|
+
assert_not_same @style1, s1 # This is a copy
|
512
|
+
assert_equal :on_foo, s1.name # Changed
|
513
|
+
assert_equal "\e[109m", s1.code # Changed
|
514
|
+
assert_equal [1,2,3], s1.rgb # Unchanged
|
515
|
+
|
516
|
+
# No @style1's have been harmed in the running of this test
|
517
|
+
assert_equal style1_name, @style1.name
|
518
|
+
assert_equal style1_code, @style1.code
|
519
|
+
assert_equal style1_rgb, @style1.rgb
|
520
|
+
|
521
|
+
assert_raise(::RuntimeError) { @style3.on } # Can't create a variant of a list style
|
522
|
+
end
|
523
|
+
|
524
|
+
def test_bright
|
525
|
+
style1_name = @style1.name
|
526
|
+
style1_code = @style1.code
|
527
|
+
style1_rgb = @style1.rgb
|
528
|
+
|
529
|
+
s1 = @style1.bright
|
530
|
+
assert_instance_of HighLine::Style, s1
|
531
|
+
assert_not_same @style1, s1 # This is a copy
|
532
|
+
assert_equal :bright_foo, s1.name # Changed
|
533
|
+
assert_equal "\e[159m", s1.code # Changed
|
534
|
+
assert_equal [129,130,131], s1.rgb # Changed
|
535
|
+
|
536
|
+
# No @style1's have been harmed in the running of this test
|
537
|
+
assert_equal style1_name, @style1.name
|
538
|
+
assert_equal style1_code, @style1.code
|
539
|
+
assert_equal style1_rgb, @style1.rgb
|
540
|
+
|
541
|
+
s2_base = HighLine::Style.new(:name=>:leia, :code=>"\e[92m", :rgb=>[0,0,14])
|
542
|
+
s2 = s2_base.bright
|
543
|
+
assert_instance_of HighLine::Style, s2
|
544
|
+
assert_not_same s2_base, s2 # This is a copy
|
545
|
+
assert_equal :bright_leia, s2.name # Changed
|
546
|
+
assert_equal "\e[152m", s2.code # Changed
|
547
|
+
assert_equal [0,0,142], s2.rgb # Changed
|
548
|
+
|
549
|
+
s3_base = HighLine::Style.new(:name=>:luke, :code=>"\e[93m", :rgb=>[20,21,0])
|
550
|
+
s3 = s3_base.bright
|
551
|
+
assert_instance_of HighLine::Style, s3
|
552
|
+
assert_not_same s3_base, s3 # This is a copy
|
553
|
+
assert_equal :bright_luke, s3.name # Changed
|
554
|
+
assert_equal "\e[153m", s3.code # Changed
|
555
|
+
assert_equal [148,149,0], s3.rgb # Changed
|
556
|
+
|
557
|
+
s4_base = HighLine::Style.new(:name=>:r2d2, :code=>"\e[94m", :rgb=>[0,0,0])
|
558
|
+
s4 = s4_base.bright
|
559
|
+
assert_instance_of HighLine::Style, s4
|
560
|
+
assert_not_same s4_base, s4 # This is a copy
|
561
|
+
assert_equal :bright_r2d2, s4.name # Changed
|
562
|
+
assert_equal "\e[154m", s4.code # Changed
|
563
|
+
assert_equal [128,128,128], s4.rgb # Changed; special case
|
564
|
+
|
565
|
+
assert_raise(::RuntimeError) { @style3.bright } # Can't create a variant of a list style
|
566
|
+
end
|
567
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# ts_all.rb
|
2
|
+
#
|
3
|
+
# Created by James Edward Gray II on 2005-04-26.
|
4
|
+
# Copyright 2005 Gray Productions. All rights reserved.
|
5
|
+
#
|
6
|
+
# This is Free Software. See LICENSE and COPYING for details.
|
7
|
+
|
8
|
+
require "test/unit"
|
9
|
+
|
10
|
+
require "tc_highline"
|
11
|
+
require "tc_import"
|
12
|
+
require "tc_menu"
|
13
|
+
require "tc_style"
|
14
|
+
require "tc_color_scheme"
|
15
|
+
require "tc_string_highline"
|
16
|
+
require "tc_string_extension"
|
@@ -0,0 +1,68 @@
|
|
1
|
+
== Contributing
|
2
|
+
|
3
|
+
I value any contribution to MIME::Types you can provide: a bug report, a feature
|
4
|
+
request, or code contributions.
|
5
|
+
|
6
|
+
Code contributions to MIME::Types are especially <del>welcome</del>encouraged.
|
7
|
+
Because MIME::Types is a complex codebase, there are a few guidelines:
|
8
|
+
|
9
|
+
* Changes (aside from new MIME types) <strong>will not</strong> be accepted
|
10
|
+
without tests. The test suite is written with MiniTest.
|
11
|
+
* Match my coding style.
|
12
|
+
* Use a thoughtfully-named topic branch that contains your change. Rebase your
|
13
|
+
commits into logical chunks as necessary.
|
14
|
+
* Use {quality commit messages}[http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html].
|
15
|
+
* Do not change the version number; when your patch is accepted and a release
|
16
|
+
is made, the version will be updated at that point.
|
17
|
+
* Submit a GitHub pull request with your changes.
|
18
|
+
* New features require new documentation.
|
19
|
+
|
20
|
+
=== Test Dependencies
|
21
|
+
|
22
|
+
To run the test suite, you will need to install the development dependencies
|
23
|
+
for MIME::Types. If you have Bundler, you can accomplish this easily:
|
24
|
+
|
25
|
+
$ bundle install
|
26
|
+
|
27
|
+
MIME::Types uses Ryan Davis’s excellent {Hoe}[https://github.com/seattlerb/hoe]
|
28
|
+
to manage the release process, and it adds a number of rake tasks. You will
|
29
|
+
mostly be interested in:
|
30
|
+
|
31
|
+
$ rake
|
32
|
+
|
33
|
+
which runs the tests the same way that:
|
34
|
+
|
35
|
+
$ rake test
|
36
|
+
$ rake travis
|
37
|
+
|
38
|
+
will do.
|
39
|
+
|
40
|
+
=== Workflow
|
41
|
+
|
42
|
+
Here's the most direct way to get your work merged into the project:
|
43
|
+
|
44
|
+
* Fork the project.
|
45
|
+
* Clone down your fork (+git clone git://github.com/<username>/diff-lcs.git+).
|
46
|
+
* Create a topic branch to contain your change (+git checkout -b my\_awesome\_feature+).
|
47
|
+
* Hack away, add tests. Not necessarily in that order.
|
48
|
+
* Make sure everything still passes by running `rake`.
|
49
|
+
* If necessary, rebase your commits into logical chunks, without errors.
|
50
|
+
* Push the branch up (+git push origin my\_awesome\_feature+).
|
51
|
+
* Create a pull request against halostatue/diff-lcs and describe what your
|
52
|
+
change does and the why you think it should be merged.
|
53
|
+
|
54
|
+
=== Contributors
|
55
|
+
|
56
|
+
* Austin Ziegler created MIME::Types.
|
57
|
+
|
58
|
+
Thanks to everyone else who has contributed to MIME::Types:
|
59
|
+
|
60
|
+
* Andre Pankratz
|
61
|
+
* Mauricio Linhares
|
62
|
+
* Richard Hirner
|
63
|
+
* Todd Carrico
|
64
|
+
* Garret Alfert
|
65
|
+
* Hans de Graaff
|
66
|
+
* Henrik Hodne
|
67
|
+
* Martin d'Allens
|
68
|
+
* cgat
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- ruby -*-
|
2
|
+
|
3
|
+
# DO NOT EDIT THIS FILE. Instead, edit Rakefile, and run `rake bundler:gemfile`.
|
4
|
+
|
5
|
+
source "https://rubygems.org/"
|
6
|
+
|
7
|
+
|
8
|
+
gem "rubyforge", ">=2.0.4", :group => [:development, :test]
|
9
|
+
gem "minitest", "~>4.7", :group => [:development, :test]
|
10
|
+
gem "rdoc", "~>4.0", :group => [:development, :test]
|
11
|
+
gem "hoe-bundler", "~>1.2", :group => [:development, :test]
|
12
|
+
gem "hoe-doofus", "~>1.0", :group => [:development, :test]
|
13
|
+
gem "hoe-gemspec", "~>1.0", :group => [:development, :test]
|
14
|
+
gem "hoe-git", "~>1.5", :group => [:development, :test]
|
15
|
+
gem "hoe-rubygems", "~>1.0", :group => [:development, :test]
|
16
|
+
gem "hoe-travis", "~>1.2", :group => [:development, :test]
|
17
|
+
gem "nokogiri", "~>1.5", :group => [:development, :test]
|
18
|
+
gem "rake", "~>10.0", :group => [:development, :test]
|
19
|
+
gem "hoe", "~>3.6", :group => [:development, :test]
|
20
|
+
|
21
|
+
# vim: syntax=ruby
|