shoulda-matchers 3.1.0 → 5.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/{MIT-LICENSE → LICENSE} +1 -1
- data/README.md +407 -232
- data/docs/errors/NonCaseSwappableValueError.md +2 -2
- data/lib/shoulda/matchers/action_controller/callback_matcher.rb +7 -80
- data/lib/shoulda/matchers/action_controller/filter_param_matcher.rb +4 -3
- data/lib/shoulda/matchers/action_controller/flash_store.rb +2 -4
- data/lib/shoulda/matchers/action_controller/permit_matcher.rb +36 -30
- data/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +8 -10
- data/lib/shoulda/matchers/action_controller/render_template_matcher.rb +7 -9
- data/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +18 -15
- data/lib/shoulda/matchers/action_controller/rescue_from_matcher.rb +3 -2
- data/lib/shoulda/matchers/action_controller/respond_with_matcher.rb +3 -3
- data/lib/shoulda/matchers/action_controller/route_matcher.rb +88 -29
- data/lib/shoulda/matchers/action_controller/route_params.rb +2 -2
- data/lib/shoulda/matchers/action_controller/set_flash_matcher.rb +4 -4
- data/lib/shoulda/matchers/action_controller/set_session_matcher.rb +3 -3
- data/lib/shoulda/matchers/action_controller/set_session_or_flash_matcher.rb +19 -13
- data/lib/shoulda/matchers/action_controller.rb +2 -0
- data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_changed_value_error.rb +1 -1
- data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setter.rb +5 -9
- data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setter_and_validator.rb +2 -2
- data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setters.rb +1 -1
- data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setters_and_validators.rb +1 -1
- data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +42 -39
- data/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +1 -1
- data/lib/shoulda/matchers/active_model/have_secure_password_matcher.rb +52 -26
- data/lib/shoulda/matchers/active_model/helpers.rb +2 -2
- data/lib/shoulda/matchers/active_model/numericality_matchers/comparison_matcher.rb +32 -30
- data/lib/shoulda/matchers/active_model/numericality_matchers/numeric_type_matcher.rb +2 -1
- data/lib/shoulda/matchers/active_model/qualifiers/allow_blank.rb +26 -0
- data/lib/shoulda/matchers/active_model/qualifiers/allow_nil.rb +26 -0
- data/lib/shoulda/matchers/active_model/qualifiers/ignoring_interference_by_writer.rb +1 -1
- data/lib/shoulda/matchers/active_model/qualifiers.rb +2 -0
- data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +30 -6
- data/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +8 -3
- data/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +31 -16
- data/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +52 -16
- data/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +137 -84
- data/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +159 -46
- data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +130 -66
- data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +251 -24
- data/lib/shoulda/matchers/active_model/validation_matcher/build_description.rb +12 -9
- data/lib/shoulda/matchers/active_model/validation_matcher.rb +38 -6
- data/lib/shoulda/matchers/active_model/validation_message_finder.rb +2 -4
- data/lib/shoulda/matchers/active_model/validator.rb +4 -9
- data/lib/shoulda/matchers/active_model.rb +3 -5
- data/lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb +10 -7
- data/lib/shoulda/matchers/active_record/association_matcher.rb +386 -111
- data/lib/shoulda/matchers/active_record/association_matchers/counter_cache_matcher.rb +5 -2
- data/lib/shoulda/matchers/active_record/association_matchers/dependent_matcher.rb +4 -4
- data/lib/shoulda/matchers/active_record/association_matchers/inverse_of_matcher.rb +1 -1
- data/lib/shoulda/matchers/active_record/association_matchers/join_table_matcher.rb +11 -6
- data/lib/shoulda/matchers/active_record/association_matchers/model_reflection.rb +14 -15
- data/lib/shoulda/matchers/active_record/association_matchers/model_reflector.rb +30 -8
- data/lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb +34 -11
- data/lib/shoulda/matchers/active_record/association_matchers/optional_matcher.rb +69 -0
- data/lib/shoulda/matchers/active_record/association_matchers/order_matcher.rb +1 -1
- data/lib/shoulda/matchers/active_record/association_matchers/required_matcher.rb +74 -0
- data/lib/shoulda/matchers/active_record/association_matchers/source_matcher.rb +3 -2
- data/lib/shoulda/matchers/active_record/association_matchers/through_matcher.rb +7 -5
- data/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +458 -42
- data/lib/shoulda/matchers/active_record/have_attached_matcher.rb +185 -0
- data/lib/shoulda/matchers/active_record/have_db_column_matcher.rb +63 -23
- data/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +164 -48
- data/lib/shoulda/matchers/active_record/have_implicit_order_column.rb +106 -0
- data/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +13 -11
- data/lib/shoulda/matchers/active_record/have_rich_text_matcher.rb +83 -0
- data/lib/shoulda/matchers/active_record/have_secure_token_matcher.rb +132 -0
- data/lib/shoulda/matchers/active_record/serialize_matcher.rb +18 -18
- data/lib/shoulda/matchers/active_record/uniqueness/test_model_creator.rb +1 -3
- data/lib/shoulda/matchers/active_record/uniqueness/test_models.rb +0 -2
- data/lib/shoulda/matchers/active_record/uniqueness.rb +1 -1
- data/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +430 -200
- data/lib/shoulda/matchers/active_record.rb +28 -20
- data/lib/shoulda/matchers/configuration.rb +12 -1
- data/lib/shoulda/matchers/doublespeak/double.rb +1 -1
- data/lib/shoulda/matchers/doublespeak/double_collection.rb +3 -3
- data/lib/shoulda/matchers/doublespeak/double_implementation_registry.rb +8 -5
- data/lib/shoulda/matchers/doublespeak/object_double.rb +6 -2
- data/lib/shoulda/matchers/doublespeak/stub_implementation.rb +1 -5
- data/lib/shoulda/matchers/doublespeak/world.rb +2 -2
- data/lib/shoulda/matchers/doublespeak.rb +2 -1
- data/lib/shoulda/matchers/error.rb +1 -1
- data/lib/shoulda/matchers/independent/delegate_method_matcher.rb +109 -29
- data/lib/shoulda/matchers/independent.rb +2 -2
- data/lib/shoulda/matchers/integrations/configuration.rb +8 -4
- data/lib/shoulda/matchers/integrations/libraries/action_controller.rb +1 -1
- data/lib/shoulda/matchers/integrations/libraries/rails.rb +2 -2
- data/lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb +1 -1
- data/lib/shoulda/matchers/integrations/test_frameworks/minitest_4.rb +1 -1
- data/lib/shoulda/matchers/integrations/test_frameworks/minitest_5.rb +1 -1
- data/lib/shoulda/matchers/integrations/test_frameworks/missing_test_framework.rb +1 -1
- data/lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb +1 -1
- data/lib/shoulda/matchers/rails_shim.rb +172 -51
- data/lib/shoulda/matchers/routing.rb +2 -2
- data/lib/shoulda/matchers/util/word_wrap.rb +17 -12
- data/lib/shoulda/matchers/util.rb +39 -5
- data/lib/shoulda/matchers/version.rb +1 -1
- data/lib/shoulda/matchers/warn.rb +4 -3
- data/shoulda-matchers.gemspec +33 -15
- metadata +31 -338
- data/.gitignore +0 -12
- data/.hound.yml +0 -3
- data/.hound_config/ruby.yml +0 -12
- data/.travis.yml +0 -19
- data/.yardopts +0 -10
- data/Appraisals +0 -73
- data/CONTRIBUTING.md +0 -101
- data/Gemfile +0 -15
- data/Gemfile.lock +0 -70
- data/NEWS.md +0 -986
- data/Rakefile +0 -39
- data/custom_plan.rb +0 -88
- data/doc_config/gh-pages/index.html.erb +0 -9
- data/doc_config/yard/setup.rb +0 -22
- data/doc_config/yard/templates/default/fulldoc/html/css/bootstrap.css +0 -5967
- data/doc_config/yard/templates/default/fulldoc/html/css/full_list.css +0 -12
- data/doc_config/yard/templates/default/fulldoc/html/css/global.css +0 -62
- data/doc_config/yard/templates/default/fulldoc/html/css/solarized.css +0 -69
- data/doc_config/yard/templates/default/fulldoc/html/css/style.css +0 -312
- data/doc_config/yard/templates/default/fulldoc/html/full_list.erb +0 -32
- data/doc_config/yard/templates/default/fulldoc/html/full_list_class.erb +0 -1
- data/doc_config/yard/templates/default/fulldoc/html/full_list_method.erb +0 -8
- data/doc_config/yard/templates/default/fulldoc/html/js/app.js +0 -298
- data/doc_config/yard/templates/default/fulldoc/html/js/full_list.js +0 -1
- data/doc_config/yard/templates/default/fulldoc/html/js/jquery.stickyheaders.js +0 -289
- data/doc_config/yard/templates/default/fulldoc/html/js/underscore.min.js +0 -6
- data/doc_config/yard/templates/default/fulldoc/html/setup.rb +0 -8
- data/doc_config/yard/templates/default/layout/html/breadcrumb.erb +0 -14
- data/doc_config/yard/templates/default/layout/html/fonts.erb +0 -1
- data/doc_config/yard/templates/default/layout/html/footer.erb +0 -6
- data/doc_config/yard/templates/default/layout/html/layout.erb +0 -23
- data/doc_config/yard/templates/default/layout/html/search.erb +0 -13
- data/doc_config/yard/templates/default/layout/html/setup.rb +0 -40
- data/doc_config/yard/templates/default/method_details/html/source.erb +0 -10
- data/doc_config/yard/templates/default/module/html/box_info.erb +0 -31
- data/gemfiles/4.0.0.gemfile +0 -38
- data/gemfiles/4.0.0.gemfile.lock +0 -223
- data/gemfiles/4.0.1.gemfile +0 -38
- data/gemfiles/4.0.1.gemfile.lock +0 -225
- data/gemfiles/4.1.gemfile +0 -38
- data/gemfiles/4.1.gemfile.lock +0 -220
- data/gemfiles/4.2.gemfile +0 -38
- data/gemfiles/4.2.gemfile.lock +0 -243
- data/lib/shoulda/matchers/active_model/allow_mass_assignment_of_matcher.rb +0 -159
- data/lib/shoulda/matchers/independent/delegate_method_matcher/stubbed_target.rb +0 -37
- data/script/SUPPORTED_VERSIONS +0 -1
- data/script/install_gems_in_all_appraisals +0 -14
- data/script/run_all_tests +0 -14
- data/script/update_gem_in_all_appraisals +0 -15
- data/script/update_gems_in_all_appraisals +0 -14
- data/spec/acceptance/active_model_integration_spec.rb +0 -23
- data/spec/acceptance/independent_matchers_spec.rb +0 -125
- data/spec/acceptance/multiple_libraries_integration_spec.rb +0 -55
- data/spec/acceptance/rails_integration_spec.rb +0 -156
- data/spec/acceptance_spec_helper.rb +0 -23
- data/spec/doublespeak_spec_helper.rb +0 -2
- data/spec/report_warnings.rb +0 -7
- data/spec/spec_helper.rb +0 -21
- data/spec/support/acceptance/adds_shoulda_matchers_to_project.rb +0 -133
- data/spec/support/acceptance/helpers/active_model_helpers.rb +0 -11
- data/spec/support/acceptance/helpers/array_helpers.rb +0 -13
- data/spec/support/acceptance/helpers/base_helpers.rb +0 -19
- data/spec/support/acceptance/helpers/command_helpers.rb +0 -55
- data/spec/support/acceptance/helpers/file_helpers.rb +0 -19
- data/spec/support/acceptance/helpers/gem_helpers.rb +0 -31
- data/spec/support/acceptance/helpers/minitest_helpers.rb +0 -11
- data/spec/support/acceptance/helpers/n_unit_helpers.rb +0 -25
- data/spec/support/acceptance/helpers/pluralization_helpers.rb +0 -13
- data/spec/support/acceptance/helpers/rails_version_helpers.rb +0 -11
- data/spec/support/acceptance/helpers/rspec_helpers.rb +0 -24
- data/spec/support/acceptance/helpers/ruby_version_helpers.rb +0 -9
- data/spec/support/acceptance/helpers/step_helpers.rb +0 -127
- data/spec/support/acceptance/helpers.rb +0 -31
- data/spec/support/acceptance/matchers/have_output.rb +0 -31
- data/spec/support/acceptance/matchers/indicate_number_of_tests_was_run_matcher.rb +0 -55
- data/spec/support/acceptance/matchers/indicate_that_tests_were_run_matcher.rb +0 -103
- data/spec/support/tests/bundle.rb +0 -94
- data/spec/support/tests/command_runner.rb +0 -230
- data/spec/support/tests/current_bundle.rb +0 -61
- data/spec/support/tests/database.rb +0 -28
- data/spec/support/tests/database_adapters/postgresql.rb +0 -25
- data/spec/support/tests/database_adapters/sqlite3.rb +0 -26
- data/spec/support/tests/database_configuration.rb +0 -33
- data/spec/support/tests/database_configuration_registry.rb +0 -28
- data/spec/support/tests/filesystem.rb +0 -100
- data/spec/support/tests/version.rb +0 -45
- data/spec/support/unit/active_record/create_table.rb +0 -54
- data/spec/support/unit/attribute.rb +0 -47
- data/spec/support/unit/capture.rb +0 -40
- data/spec/support/unit/change_value.rb +0 -111
- data/spec/support/unit/create_model_arguments/basic.rb +0 -135
- data/spec/support/unit/create_model_arguments/has_many.rb +0 -15
- data/spec/support/unit/create_model_arguments/uniqueness_matcher.rb +0 -74
- data/spec/support/unit/helpers/active_model_helpers.rb +0 -27
- data/spec/support/unit/helpers/active_model_versions.rb +0 -28
- data/spec/support/unit/helpers/active_record_versions.rb +0 -24
- data/spec/support/unit/helpers/active_resource_builder.rb +0 -27
- data/spec/support/unit/helpers/allow_value_matcher_helpers.rb +0 -15
- data/spec/support/unit/helpers/class_builder.rb +0 -90
- data/spec/support/unit/helpers/column_type_helpers.rb +0 -26
- data/spec/support/unit/helpers/confirmation_matcher_helpers.rb +0 -17
- data/spec/support/unit/helpers/controller_builder.rb +0 -63
- data/spec/support/unit/helpers/database_helpers.rb +0 -20
- data/spec/support/unit/helpers/i18n_faker.rb +0 -15
- data/spec/support/unit/helpers/mailer_builder.rb +0 -12
- data/spec/support/unit/helpers/model_builder.rb +0 -114
- data/spec/support/unit/helpers/rails_versions.rb +0 -28
- data/spec/support/unit/helpers/validation_matcher_scenario_helpers.rb +0 -44
- data/spec/support/unit/i18n.rb +0 -7
- data/spec/support/unit/load_environment.rb +0 -12
- data/spec/support/unit/matchers/deprecate.rb +0 -60
- data/spec/support/unit/matchers/fail_with_message_including_matcher.rb +0 -51
- data/spec/support/unit/matchers/fail_with_message_matcher.rb +0 -62
- data/spec/support/unit/matchers/print_warning_including.rb +0 -59
- data/spec/support/unit/model_creation_strategies/active_model.rb +0 -111
- data/spec/support/unit/model_creation_strategies/active_record.rb +0 -77
- data/spec/support/unit/model_creators/active_model.rb +0 -39
- data/spec/support/unit/model_creators/active_record/has_and_belongs_to_many.rb +0 -95
- data/spec/support/unit/model_creators/active_record/has_many.rb +0 -67
- data/spec/support/unit/model_creators/active_record/uniqueness_matcher.rb +0 -42
- data/spec/support/unit/model_creators/active_record.rb +0 -43
- data/spec/support/unit/model_creators/basic.rb +0 -97
- data/spec/support/unit/model_creators.rb +0 -19
- data/spec/support/unit/rails_application.rb +0 -126
- data/spec/support/unit/record_builder_with_i18n_validation_message.rb +0 -69
- data/spec/support/unit/record_validating_confirmation_builder.rb +0 -51
- data/spec/support/unit/record_with_different_error_attribute_builder.rb +0 -92
- data/spec/support/unit/shared_examples/ignoring_interference_by_writer.rb +0 -79
- data/spec/support/unit/shared_examples/numerical_submatcher.rb +0 -17
- data/spec/support/unit/shared_examples/set_session_or_flash.rb +0 -360
- data/spec/support/unit/validation_matcher_scenario.rb +0 -62
- data/spec/unit/shoulda/matchers/action_controller/callback_matcher_spec.rb +0 -82
- data/spec/unit/shoulda/matchers/action_controller/filter_param_matcher_spec.rb +0 -28
- data/spec/unit/shoulda/matchers/action_controller/permit_matcher_spec.rb +0 -592
- data/spec/unit/shoulda/matchers/action_controller/redirect_to_matcher_spec.rb +0 -42
- data/spec/unit/shoulda/matchers/action_controller/render_template_matcher_spec.rb +0 -76
- data/spec/unit/shoulda/matchers/action_controller/render_with_layout_matcher_spec.rb +0 -62
- data/spec/unit/shoulda/matchers/action_controller/rescue_from_matcher_spec.rb +0 -90
- data/spec/unit/shoulda/matchers/action_controller/respond_with_matcher_spec.rb +0 -31
- data/spec/unit/shoulda/matchers/action_controller/route_matcher_spec.rb +0 -330
- data/spec/unit/shoulda/matchers/action_controller/route_params_spec.rb +0 -30
- data/spec/unit/shoulda/matchers/action_controller/set_flash_matcher_spec.rb +0 -67
- data/spec/unit/shoulda/matchers/action_controller/set_session_matcher_spec.rb +0 -17
- data/spec/unit/shoulda/matchers/action_controller/set_session_or_flash_matcher_spec.rb +0 -562
- data/spec/unit/shoulda/matchers/active_model/allow_mass_assignment_of_matcher_spec.rb +0 -115
- data/spec/unit/shoulda/matchers/active_model/allow_value_matcher_spec.rb +0 -823
- data/spec/unit/shoulda/matchers/active_model/disallow_value_matcher_spec.rb +0 -86
- data/spec/unit/shoulda/matchers/active_model/have_secure_password_matcher_spec.rb +0 -20
- data/spec/unit/shoulda/matchers/active_model/helpers_spec.rb +0 -162
- data/spec/unit/shoulda/matchers/active_model/validate_absence_of_matcher_spec.rb +0 -266
- data/spec/unit/shoulda/matchers/active_model/validate_acceptance_of_matcher_spec.rb +0 -91
- data/spec/unit/shoulda/matchers/active_model/validate_confirmation_of_matcher_spec.rb +0 -149
- data/spec/unit/shoulda/matchers/active_model/validate_exclusion_of_matcher_spec.rb +0 -207
- data/spec/unit/shoulda/matchers/active_model/validate_inclusion_of_matcher_spec.rb +0 -1015
- data/spec/unit/shoulda/matchers/active_model/validate_length_of_matcher_spec.rb +0 -288
- data/spec/unit/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +0 -1837
- data/spec/unit/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +0 -380
- data/spec/unit/shoulda/matchers/active_record/accept_nested_attributes_for_matcher_spec.rb +0 -107
- data/spec/unit/shoulda/matchers/active_record/association_matcher_spec.rb +0 -1242
- data/spec/unit/shoulda/matchers/active_record/association_matchers/model_reflection_spec.rb +0 -251
- data/spec/unit/shoulda/matchers/active_record/define_enum_for_matcher_spec.rb +0 -168
- data/spec/unit/shoulda/matchers/active_record/have_db_column_matcher_spec.rb +0 -111
- data/spec/unit/shoulda/matchers/active_record/have_db_index_matcher_spec.rb +0 -85
- data/spec/unit/shoulda/matchers/active_record/have_readonly_attributes_matcher_spec.rb +0 -41
- data/spec/unit/shoulda/matchers/active_record/serialize_matcher_spec.rb +0 -86
- data/spec/unit/shoulda/matchers/active_record/validate_uniqueness_of_matcher_spec.rb +0 -1418
- data/spec/unit/shoulda/matchers/doublespeak/double_collection_spec.rb +0 -190
- data/spec/unit/shoulda/matchers/doublespeak/double_implementation_registry_spec.rb +0 -21
- data/spec/unit/shoulda/matchers/doublespeak/double_spec.rb +0 -271
- data/spec/unit/shoulda/matchers/doublespeak/object_double_spec.rb +0 -77
- data/spec/unit/shoulda/matchers/doublespeak/proxy_implementation_spec.rb +0 -72
- data/spec/unit/shoulda/matchers/doublespeak/stub_implementation_spec.rb +0 -101
- data/spec/unit/shoulda/matchers/doublespeak/world_spec.rb +0 -80
- data/spec/unit/shoulda/matchers/doublespeak_spec.rb +0 -27
- data/spec/unit/shoulda/matchers/independent/delegate_method_matcher/stubbed_target_spec.rb +0 -43
- data/spec/unit/shoulda/matchers/independent/delegate_method_matcher_spec.rb +0 -517
- data/spec/unit/shoulda/matchers/routing/route_matcher_spec.rb +0 -242
- data/spec/unit/shoulda/matchers/util/word_wrap_spec.rb +0 -252
- data/spec/unit_spec_helper.rb +0 -46
- data/spec/warnings_spy/filesystem.rb +0 -45
- data/spec/warnings_spy/partitioner.rb +0 -36
- data/spec/warnings_spy/reader.rb +0 -53
- data/spec/warnings_spy/reporter.rb +0 -88
- data/spec/warnings_spy.rb +0 -64
- data/tasks/documentation.rb +0 -199
- data/zeus.json +0 -11
@@ -1,62 +0,0 @@
|
|
1
|
-
@import "http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,400italic,600,600italic,800|Droid+Sans+Mono";
|
2
|
-
|
3
|
-
body {
|
4
|
-
font-size: 16px;
|
5
|
-
line-height: 1.5;
|
6
|
-
}
|
7
|
-
|
8
|
-
a, a:hover {
|
9
|
-
color: #136cc6;
|
10
|
-
}
|
11
|
-
|
12
|
-
h1, h2, h3, h4, h5, h6, p, pre {
|
13
|
-
margin-bottom: 1em;
|
14
|
-
margin-top: 0;
|
15
|
-
}
|
16
|
-
|
17
|
-
h1, h2, h3, h4, h5, h6, body {
|
18
|
-
font-family: "Source Sans Pro", sans-serif;
|
19
|
-
}
|
20
|
-
|
21
|
-
h1, h2, h3, h4, h5, h6 {
|
22
|
-
font-weight: 800;
|
23
|
-
}
|
24
|
-
|
25
|
-
pre, tt, code {
|
26
|
-
background: #FFFBF4;
|
27
|
-
border-radius: 3px;
|
28
|
-
border: 1px solid rgba(0,0,0,0.1);
|
29
|
-
font-family: "Droid Sans Mono", monospace;
|
30
|
-
font-size: 13px;
|
31
|
-
}
|
32
|
-
|
33
|
-
pre code {
|
34
|
-
border: none;
|
35
|
-
}
|
36
|
-
|
37
|
-
tt, code {
|
38
|
-
color: black;
|
39
|
-
padding: 0 4px;
|
40
|
-
}
|
41
|
-
|
42
|
-
ul, ol {
|
43
|
-
margin-left: 1em;
|
44
|
-
padding-left: 1em;
|
45
|
-
}
|
46
|
-
|
47
|
-
p, blockquote {
|
48
|
-
margin-bottom: 1.25em;
|
49
|
-
}
|
50
|
-
|
51
|
-
blockquote {
|
52
|
-
font-style: italic;
|
53
|
-
padding-top: 0;
|
54
|
-
padding-bottom: 0;
|
55
|
-
padding-left: 1em;
|
56
|
-
}
|
57
|
-
|
58
|
-
blockquote p {
|
59
|
-
font-size: inherit;
|
60
|
-
font-weight: inherit;
|
61
|
-
line-height: inherit;
|
62
|
-
}
|
@@ -1,69 +0,0 @@
|
|
1
|
-
pre, code { background-color: #fdf6e3; color: #586e75 }
|
2
|
-
pre .c { color: #93a1a1 } /* Comment */
|
3
|
-
pre .err { color: #586e75 } /* Error */
|
4
|
-
pre .g { color: #586e75 } /* Generic */
|
5
|
-
pre .k { color: #859900 } /* Keyword */
|
6
|
-
pre .l { color: #586e75 } /* Literal */
|
7
|
-
pre .n { color: #586e75 } /* Name */
|
8
|
-
pre .o { color: #859900 } /* Operator */
|
9
|
-
pre .x { color: #cb4b16 } /* Other */
|
10
|
-
pre .p { color: #586e75 } /* Punctuation */
|
11
|
-
pre .cm { color: #93a1a1 } /* Comment.Multiline */
|
12
|
-
pre .cp { color: #859900 } /* Comment.Preproc */
|
13
|
-
pre .c1 { color: #93a1a1 } /* Comment.Single */
|
14
|
-
pre .cs { color: #859900 } /* Comment.Special */
|
15
|
-
pre .gd { color: #2aa198 } /* Generic.Deleted */
|
16
|
-
pre .ge { color: #586e75; font-style: italic } /* Generic.Emph */
|
17
|
-
pre .gr { color: #dc322f } /* Generic.Error */
|
18
|
-
pre .gh { color: #cb4b16 } /* Generic.Heading */
|
19
|
-
pre .gi { color: #859900 } /* Generic.Inserted */
|
20
|
-
pre .go { color: #586e75 } /* Generic.Output */
|
21
|
-
pre .gp { color: #586e75 } /* Generic.Prompt */
|
22
|
-
pre .gs { color: #586e75; font-weight: bold } /* Generic.Strong */
|
23
|
-
pre .gu { color: #cb4b16 } /* Generic.Subheading */
|
24
|
-
pre .gt { color: #586e75 } /* Generic.Traceback */
|
25
|
-
pre .kc { color: #cb4b16 } /* Keyword.Constant */
|
26
|
-
pre .kd { color: #268bd2 } /* Keyword.Declaration */
|
27
|
-
pre .kn { color: #859900 } /* Keyword.Namespace */
|
28
|
-
pre .kp { color: #859900 } /* Keyword.Pseudo */
|
29
|
-
pre .kr { color: #268bd2 } /* Keyword.Reserved */
|
30
|
-
pre .kt { color: #dc322f } /* Keyword.Type */
|
31
|
-
pre .ld { color: #586e75 } /* Literal.Date */
|
32
|
-
pre .m { color: #2aa198 } /* Literal.Number */
|
33
|
-
pre .s { color: #2aa198 } /* Literal.String */
|
34
|
-
pre .na { color: #586e75 } /* Name.Attribute */
|
35
|
-
pre .nb { color: #B58900 } /* Name.Builtin */
|
36
|
-
pre .nc { color: #268bd2 } /* Name.Class */
|
37
|
-
pre .no { color: #cb4b16 } /* Name.Constant */
|
38
|
-
pre .nd { color: #268bd2 } /* Name.Decorator */
|
39
|
-
pre .ni { color: #cb4b16 } /* Name.Entity */
|
40
|
-
pre .ne { color: #cb4b16 } /* Name.Exception */
|
41
|
-
pre .nf { color: #268bd2 } /* Name.Function */
|
42
|
-
pre .nl { color: #586e75 } /* Name.Label */
|
43
|
-
pre .nn { color: #586e75 } /* Name.Namespace */
|
44
|
-
pre .nx { color: #586e75 } /* Name.Other */
|
45
|
-
pre .py { color: #586e75 } /* Name.Property */
|
46
|
-
pre .nt { color: #268bd2 } /* Name.Tag */
|
47
|
-
pre .nv { color: #268bd2 } /* Name.Variable */
|
48
|
-
pre .ow { color: #859900 } /* Operator.Word */
|
49
|
-
pre .w { color: #586e75 } /* Text.Whitespace */
|
50
|
-
pre .mf { color: #2aa198 } /* Literal.Number.Float */
|
51
|
-
pre .mh { color: #2aa198 } /* Literal.Number.Hex */
|
52
|
-
pre .mi { color: #2aa198 } /* Literal.Number.Integer */
|
53
|
-
pre .mo { color: #2aa198 } /* Literal.Number.Oct */
|
54
|
-
pre .sb { color: #93a1a1 } /* Literal.String.Backtick */
|
55
|
-
pre .sc { color: #2aa198 } /* Literal.String.Char */
|
56
|
-
pre .sd { color: #586e75 } /* Literal.String.Doc */
|
57
|
-
pre .s2 { color: #2aa198 } /* Literal.String.Double */
|
58
|
-
pre .se { color: #cb4b16 } /* Literal.String.Escape */
|
59
|
-
pre .sh { color: #586e75 } /* Literal.String.Heredoc */
|
60
|
-
pre .si { color: #2aa198 } /* Literal.String.Interpol */
|
61
|
-
pre .sx { color: #2aa198 } /* Literal.String.Other */
|
62
|
-
pre .sr { color: #dc322f } /* Literal.String.Regex */
|
63
|
-
pre .s1 { color: #2aa198 } /* Literal.String.Single */
|
64
|
-
pre .ss { color: #2aa198 } /* Literal.String.Symbol */
|
65
|
-
pre .bp { color: #268bd2 } /* Name.Builtin.Pseudo */
|
66
|
-
pre .vc { color: #268bd2 } /* Name.Variable.Class */
|
67
|
-
pre .vg { color: #268bd2 } /* Name.Variable.Global */
|
68
|
-
pre .vi { color: #268bd2 } /* Name.Variable.Instance */
|
69
|
-
pre .il { color: #2aa198 } /* Literal.Number.Integer.Long */
|
@@ -1,312 +0,0 @@
|
|
1
|
-
/******** LAYOUT *********/
|
2
|
-
|
3
|
-
h1 {
|
4
|
-
font-size: 2.2em;
|
5
|
-
margin-top: 1em;
|
6
|
-
}
|
7
|
-
|
8
|
-
h2 {
|
9
|
-
font-size: 2em;
|
10
|
-
}
|
11
|
-
|
12
|
-
h2, h3 {
|
13
|
-
margin-top: 1em;
|
14
|
-
padding-top: 0.5em;
|
15
|
-
}
|
16
|
-
|
17
|
-
h4, h5 {
|
18
|
-
margin-top: 1em;
|
19
|
-
}
|
20
|
-
|
21
|
-
h1 + h2,
|
22
|
-
h2 + h3,
|
23
|
-
h2 + .method_details h3,
|
24
|
-
h4 + h5 {
|
25
|
-
margin-top: 0;
|
26
|
-
}
|
27
|
-
|
28
|
-
#main h3 tt,
|
29
|
-
#sticky-header tt {
|
30
|
-
background: transparent;
|
31
|
-
border: none;
|
32
|
-
font-family: "Source Sans Pro", sans-serif;
|
33
|
-
font-size: 1em;
|
34
|
-
font-style: italic;
|
35
|
-
font-weight: normal;
|
36
|
-
padding: 0;
|
37
|
-
}
|
38
|
-
|
39
|
-
#main h2,
|
40
|
-
#main h3,
|
41
|
-
#sticky-header h2,
|
42
|
-
#sticky-header h3 {
|
43
|
-
border: none;
|
44
|
-
padding-bottom: 0;
|
45
|
-
}
|
46
|
-
|
47
|
-
#main h2,
|
48
|
-
#sticky-header h2 {
|
49
|
-
font-size: 1.8em;
|
50
|
-
}
|
51
|
-
|
52
|
-
#main h3,
|
53
|
-
#sticky-header h3 {
|
54
|
-
font-size: 1.5em;
|
55
|
-
font-style: italic;
|
56
|
-
}
|
57
|
-
|
58
|
-
#main h4,
|
59
|
-
#sticky-header h4 {
|
60
|
-
border-bottom: 1px solid rgba(0,0,0,0.3);
|
61
|
-
font-size: 1.4em;
|
62
|
-
font-style: italic;
|
63
|
-
padding-bottom: 2px;
|
64
|
-
}
|
65
|
-
|
66
|
-
#main h5,
|
67
|
-
#sticky-header h5 {
|
68
|
-
font-size: 1.1em;
|
69
|
-
}
|
70
|
-
|
71
|
-
#sticky-header h2,
|
72
|
-
#sticky-header h3,
|
73
|
-
#sticky-header h4 {
|
74
|
-
line-height: inherit;
|
75
|
-
margin: 0;
|
76
|
-
padding: 0;
|
77
|
-
}
|
78
|
-
|
79
|
-
/* Header */
|
80
|
-
|
81
|
-
#header, #main {
|
82
|
-
position: absolute;
|
83
|
-
}
|
84
|
-
|
85
|
-
#header {
|
86
|
-
left: 0;
|
87
|
-
right: 0;
|
88
|
-
top: 0;
|
89
|
-
}
|
90
|
-
|
91
|
-
#menu, #search {
|
92
|
-
height: 6rem;
|
93
|
-
line-height: 6rem;
|
94
|
-
font-size: 1.1em;
|
95
|
-
}
|
96
|
-
#main {
|
97
|
-
top: 6rem;
|
98
|
-
}
|
99
|
-
|
100
|
-
#menu {
|
101
|
-
float: left;
|
102
|
-
padding-left: 2em;
|
103
|
-
position: relative;
|
104
|
-
width: 45em;
|
105
|
-
}
|
106
|
-
|
107
|
-
#menu .noframes {
|
108
|
-
display: inline;
|
109
|
-
}
|
110
|
-
|
111
|
-
#search {
|
112
|
-
float: right;
|
113
|
-
}
|
114
|
-
|
115
|
-
#search ul {
|
116
|
-
list-style: none;
|
117
|
-
}
|
118
|
-
|
119
|
-
#search ul, #search li {
|
120
|
-
margin: 0;
|
121
|
-
padding: 0;
|
122
|
-
display: inline;
|
123
|
-
}
|
124
|
-
|
125
|
-
#search a {
|
126
|
-
border-left: 1px solid rgba(0,0,0,0.3);
|
127
|
-
float: left;
|
128
|
-
padding: 0 2em;
|
129
|
-
text-align: center;
|
130
|
-
text-decoration: none;
|
131
|
-
-webkit-transition: 0.1s background-color, 0.1s color;
|
132
|
-
-moz-transition: 0.1s background-color, 0.1s color;
|
133
|
-
transition: 0.1s background-color, 0.1s color;
|
134
|
-
}
|
135
|
-
|
136
|
-
#search a:hover {
|
137
|
-
background-color: #f0f8ff;
|
138
|
-
}
|
139
|
-
|
140
|
-
#search .active a {
|
141
|
-
background-color: #136cc6;
|
142
|
-
border-left-color: #136cc6;
|
143
|
-
color: white;
|
144
|
-
}
|
145
|
-
|
146
|
-
#search .active + li a {
|
147
|
-
border-left-color: #136cc6;
|
148
|
-
}
|
149
|
-
|
150
|
-
#search_frame {
|
151
|
-
background: white;
|
152
|
-
border: 1px solid rgba(0,0,0,0.2);
|
153
|
-
box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.3);
|
154
|
-
height: 0;
|
155
|
-
opacity: 0;
|
156
|
-
position: absolute;
|
157
|
-
right: 0;
|
158
|
-
top: 100%;
|
159
|
-
-webkit-transition: 0.1s height ease-in-out, 0.1s opacity 0.05s;
|
160
|
-
-moz-transition: 0.1s height ease-in-out, 0.1s opacity 0.05s;
|
161
|
-
transition: 0.1s height ease-in-out, 0.1s opacity 0.05s;
|
162
|
-
width: 500px;
|
163
|
-
z-index: 9999;
|
164
|
-
}
|
165
|
-
#search_frame.open {
|
166
|
-
height: 500px;
|
167
|
-
opacity: 1;
|
168
|
-
-webkit-transition: 0.1s height ease-in-out, 0.1s opacity;
|
169
|
-
-moz-transition: 0.1s height ease-in-out, 0.1s opacity;
|
170
|
-
transition: 0.1s height ease-in-out, 0.1s opacity;
|
171
|
-
}
|
172
|
-
|
173
|
-
/* Main */
|
174
|
-
|
175
|
-
#main {
|
176
|
-
border-top: 1px solid rgba(0,0,0,0.2);
|
177
|
-
bottom: 0;
|
178
|
-
left: 0;
|
179
|
-
overflow-y: auto;
|
180
|
-
right: 0;
|
181
|
-
}
|
182
|
-
|
183
|
-
#content {
|
184
|
-
padding-bottom: 1.5em;
|
185
|
-
padding-left: 2em;
|
186
|
-
padding-right: 2em;
|
187
|
-
}
|
188
|
-
|
189
|
-
#toc {
|
190
|
-
display: none;
|
191
|
-
}
|
192
|
-
|
193
|
-
/* Footer */
|
194
|
-
|
195
|
-
#footer {
|
196
|
-
background-color: rgba(0,0,0,0.3);
|
197
|
-
color: white;
|
198
|
-
font-weight: 100;
|
199
|
-
padding: 10px;
|
200
|
-
text-align: center;
|
201
|
-
text-shadow: 0 1px 1px rgba(0,0,0,0.4);
|
202
|
-
font-size: 0.9em;
|
203
|
-
}
|
204
|
-
|
205
|
-
#footer a {
|
206
|
-
color: #ffedd5;
|
207
|
-
}
|
208
|
-
|
209
|
-
/* Class/Module */
|
210
|
-
|
211
|
-
.summary .deprecated {
|
212
|
-
display: none;
|
213
|
-
}
|
214
|
-
|
215
|
-
.method_details {}
|
216
|
-
.method_details .signature .aliases {
|
217
|
-
display: none;
|
218
|
-
}
|
219
|
-
|
220
|
-
.method_details td {
|
221
|
-
padding: 10px;
|
222
|
-
}
|
223
|
-
|
224
|
-
.method_details .showSource {
|
225
|
-
display: block;
|
226
|
-
margin-bottom: 1em;
|
227
|
-
}
|
228
|
-
|
229
|
-
.method_details .source_code {
|
230
|
-
border: 1px solid rgba(0,0,0,0.1);
|
231
|
-
display: none;
|
232
|
-
overflow: auto;
|
233
|
-
width: 100%;
|
234
|
-
}
|
235
|
-
|
236
|
-
.method_details .source_code pre {
|
237
|
-
background-color: transparent;
|
238
|
-
border-radius: 0;
|
239
|
-
border: none;
|
240
|
-
color: inherit;
|
241
|
-
margin-bottom: 0;
|
242
|
-
padding: 0;
|
243
|
-
}
|
244
|
-
|
245
|
-
.method_details .source_code td {
|
246
|
-
border: 1px solid rgba(0,0,0,0.1);
|
247
|
-
}
|
248
|
-
|
249
|
-
.method_details .source_code td.lines {
|
250
|
-
background-color: #f0f0f0;
|
251
|
-
color: #93a1a1;
|
252
|
-
width: 50px;
|
253
|
-
}
|
254
|
-
|
255
|
-
.method_details .source_code td.code {
|
256
|
-
background-color: #f8f8f8;
|
257
|
-
}
|
258
|
-
|
259
|
-
.method_details .source_code td.code pre .info {
|
260
|
-
color: #93a1a1 /* Comment */
|
261
|
-
}
|
262
|
-
|
263
|
-
.method_details .deprecated {
|
264
|
-
margin-bottom: 1em;
|
265
|
-
font-size: 1.1em;
|
266
|
-
}
|
267
|
-
|
268
|
-
.method_details .deprecated strong {
|
269
|
-
background-color: #F03434;
|
270
|
-
color: white;
|
271
|
-
text-transform: uppercase;
|
272
|
-
border-radius: 3px;
|
273
|
-
padding: 0 4px;
|
274
|
-
}
|
275
|
-
|
276
|
-
.method_details .deprecated .inline {
|
277
|
-
padding-left: 3px;
|
278
|
-
}
|
279
|
-
|
280
|
-
.method_details .deprecated div,
|
281
|
-
.method_details .deprecated p {
|
282
|
-
display: inline
|
283
|
-
}
|
284
|
-
|
285
|
-
.docstring, .method_details .showSource, .method_details .source_code {
|
286
|
-
margin-left: 1em;
|
287
|
-
}
|
288
|
-
|
289
|
-
#sticky-header {
|
290
|
-
background-color: rgba(255,255,255,0.8);
|
291
|
-
border-bottom: 1px solid rgba(0,0,0,0.2);
|
292
|
-
height: 3em;
|
293
|
-
line-height: 3em;
|
294
|
-
opacity: 0;
|
295
|
-
padding-left: 2em; /* same as content padding */
|
296
|
-
padding-right: 2em; /* same as content padding */
|
297
|
-
position: fixed;
|
298
|
-
text-align: right;
|
299
|
-
top: 6.1rem;
|
300
|
-
-webkit-transition: 0.1s opacity ease-in-out;
|
301
|
-
-moz-transition: 0.1s opacity ease-in-out;
|
302
|
-
transition: 0.1s opacity ease-in-out;
|
303
|
-
width: 100%;
|
304
|
-
z-index: 999;
|
305
|
-
}
|
306
|
-
#sticky-header.show {
|
307
|
-
opacity: 1;
|
308
|
-
}
|
309
|
-
|
310
|
-
.clear {
|
311
|
-
clear: both;
|
312
|
-
}
|
@@ -1,32 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
-
<html>
|
4
|
-
<head>
|
5
|
-
<meta http-equiv="Content-Type" content="text/html; charset=<%= charset %>" />
|
6
|
-
<% stylesheets_full_list.each do |stylesheet| %>
|
7
|
-
<link rel="stylesheet" href="<%= url_for(stylesheet) %>" type="text/css" media="screen" charset="utf-8" />
|
8
|
-
<% end %>
|
9
|
-
|
10
|
-
<% javascripts_full_list.each do |javascript| %>
|
11
|
-
<script type="text/javascript" charset="utf-8" src="<%= url_for(javascript) %>"></script>
|
12
|
-
<% end %>
|
13
|
-
|
14
|
-
<title><%= @list_title %></title>
|
15
|
-
<base id="base_target" target="_parent" />
|
16
|
-
</head>
|
17
|
-
<body>
|
18
|
-
<script type="text/javascript" charset="utf-8">
|
19
|
-
if (window.top.frames.main) {
|
20
|
-
document.getElementById('base_target').target = 'main';
|
21
|
-
document.body.className = 'frames';
|
22
|
-
}
|
23
|
-
</script>
|
24
|
-
<div id="content">
|
25
|
-
<h1 id="full_list_header"><%= @list_title %></h1>
|
26
|
-
|
27
|
-
<ul id="full_list" class="<%= @list_class || @list_type %>">
|
28
|
-
<%= erb "full_list_#{@list_type}" %>
|
29
|
-
</ul>
|
30
|
-
</div>
|
31
|
-
</body>
|
32
|
-
</html>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= class_list %>
|