yousty-activeadmin 1.0.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +43 -0
- data/.travis.yml +8 -0
- data/.yardopts +9 -0
- data/CHANGELOG.md +1056 -0
- data/CONTRIBUTING.md +110 -0
- data/Gemfile +41 -0
- data/Guardfile +7 -0
- data/LICENSE +25 -0
- data/README.md +67 -0
- data/Rakefile +25 -0
- data/activeadmin.gemspec +33 -0
- data/app/assets/images/active_admin/admin_notes_icon.png +0 -0
- data/app/assets/images/active_admin/datepicker/datepicker-header-bg.png +0 -0
- data/app/assets/images/active_admin/datepicker/datepicker-input-icon.png +0 -0
- data/app/assets/images/active_admin/datepicker/datepicker-next-link-icon.png +0 -0
- data/app/assets/images/active_admin/datepicker/datepicker-nipple.png +0 -0
- data/app/assets/images/active_admin/datepicker/datepicker-prev-link-icon.png +0 -0
- data/app/assets/images/active_admin/index_list_icons/block_icon.svg +10 -0
- data/app/assets/images/active_admin/index_list_icons/blog_icon.svg +4 -0
- data/app/assets/images/active_admin/index_list_icons/grid_icon.svg +13 -0
- data/app/assets/images/active_admin/index_list_icons/table_icon.svg +3 -0
- data/app/assets/images/active_admin/loading.gif +0 -0
- data/app/assets/images/active_admin/nested_menu_arrow.gif +0 -0
- data/app/assets/images/active_admin/nested_menu_arrow_dark.gif +0 -0
- data/app/assets/images/active_admin/orderable.png +0 -0
- data/app/assets/javascripts/active_admin/application.js.coffee +6 -0
- data/app/assets/javascripts/active_admin/base.js.coffee +5 -0
- data/app/assets/javascripts/active_admin/components/application.js.coffee +23 -0
- data/app/assets/javascripts/active_admin/components/batch_actions.js.coffee +26 -0
- data/app/assets/javascripts/active_admin/components/has_many.js.coffee +41 -0
- data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +37 -0
- data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +105 -0
- data/app/assets/javascripts/active_admin/lib/popover.js.coffee +97 -0
- data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +25 -0
- data/app/assets/stylesheets/active_admin/_base.css.scss +41 -0
- data/app/assets/stylesheets/active_admin/_forms.css.scss +293 -0
- data/app/assets/stylesheets/active_admin/_header.css.scss +152 -0
- data/app/assets/stylesheets/active_admin/_mixins.css.scss +1 -0
- data/app/assets/stylesheets/active_admin/_typography.css.scss +100 -0
- data/app/assets/stylesheets/active_admin/components/_batch_actions.css.scss +11 -0
- data/app/assets/stylesheets/active_admin/components/_blank_slates.scss +31 -0
- data/app/assets/stylesheets/active_admin/components/_breadcrumbs.scss +20 -0
- data/app/assets/stylesheets/active_admin/components/_buttons.scss +11 -0
- data/app/assets/stylesheets/active_admin/components/_columns.scss +3 -0
- data/app/assets/stylesheets/active_admin/components/_comments.css.scss +41 -0
- data/app/assets/stylesheets/active_admin/components/_date_picker.css.scss +123 -0
- data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +151 -0
- data/app/assets/stylesheets/active_admin/components/_flash_messages.css.scss +39 -0
- data/app/assets/stylesheets/active_admin/components/_grid.scss +9 -0
- data/app/assets/stylesheets/active_admin/components/_index_list.scss +12 -0
- data/app/assets/stylesheets/active_admin/components/_links.scss +5 -0
- data/app/assets/stylesheets/active_admin/components/_pagination.scss +34 -0
- data/app/assets/stylesheets/active_admin/components/_panels.scss +6 -0
- data/app/assets/stylesheets/active_admin/components/_popovers.css.scss +123 -0
- data/app/assets/stylesheets/active_admin/components/_scopes.scss +10 -0
- data/app/assets/stylesheets/active_admin/components/_status_tags.scss +12 -0
- data/app/assets/stylesheets/active_admin/components/_table_tools.css.scss +95 -0
- data/app/assets/stylesheets/active_admin/components/_tables.css.scss +110 -0
- data/app/assets/stylesheets/active_admin/mixins/_all.css.scss +11 -0
- data/app/assets/stylesheets/active_admin/mixins/_buttons.css.scss +66 -0
- data/app/assets/stylesheets/active_admin/mixins/_gradients.css.scss +38 -0
- data/app/assets/stylesheets/active_admin/mixins/_icons.css.scss +21 -0
- data/app/assets/stylesheets/active_admin/mixins/_reset.css.scss +165 -0
- data/app/assets/stylesheets/active_admin/mixins/_rounded.css.scss +43 -0
- data/app/assets/stylesheets/active_admin/mixins/_sections.css.scss +36 -0
- data/app/assets/stylesheets/active_admin/mixins/_shadows.css.scss +22 -0
- data/app/assets/stylesheets/active_admin/mixins/_typography.scss +3 -0
- data/app/assets/stylesheets/active_admin/mixins/_utilities.scss +26 -0
- data/app/assets/stylesheets/active_admin/mixins/_variables.css.scss +32 -0
- data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +44 -0
- data/app/assets/stylesheets/active_admin/print.css.scss +284 -0
- data/app/assets/stylesheets/active_admin/structure/_footer.scss +14 -0
- data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +29 -0
- data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +43 -0
- data/app/views/active_admin/dashboard/index.html.arb +1 -0
- data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/active_admin/devise/passwords/edit.html.erb +19 -0
- data/app/views/active_admin/devise/passwords/new.html.erb +14 -0
- data/app/views/active_admin/devise/sessions/new.html.erb +20 -0
- data/app/views/active_admin/devise/shared/_links.erb +27 -0
- data/app/views/active_admin/devise/unlocks/new.html.erb +14 -0
- data/app/views/active_admin/page/index.html.arb +1 -0
- data/app/views/active_admin/resource/edit.html.arb +1 -0
- data/app/views/active_admin/resource/index.csv.erb +17 -0
- data/app/views/active_admin/resource/index.html.arb +1 -0
- data/app/views/active_admin/resource/new.html.arb +1 -0
- data/app/views/active_admin/resource/show.html.arb +1 -0
- data/app/views/layouts/active_admin.html.arb +1 -0
- data/app/views/layouts/active_admin_logged_out.html.erb +37 -0
- data/config/locales/bg.yml +101 -0
- data/config/locales/ca.yml +98 -0
- data/config/locales/cs.yml +105 -0
- data/config/locales/da.yml +102 -0
- data/config/locales/de-CH.yml +117 -0
- data/config/locales/de.yml +119 -0
- data/config/locales/en-GB.yml +91 -0
- data/config/locales/en.yml +110 -0
- data/config/locales/es.yml +106 -0
- data/config/locales/es_MX.yml +104 -0
- data/config/locales/fi.yml +109 -0
- data/config/locales/fr.yml +97 -0
- data/config/locales/he.yml +91 -0
- data/config/locales/hr.yml +93 -0
- data/config/locales/hu.yml +92 -0
- data/config/locales/it.yml +89 -0
- data/config/locales/ja.yml +104 -0
- data/config/locales/ko.yml +84 -0
- data/config/locales/lt.yml +90 -0
- data/config/locales/lv.yml +89 -0
- data/config/locales/nl.yml +90 -0
- data/config/locales/no-NB.yml +85 -0
- data/config/locales/pl.yml +93 -0
- data/config/locales/pt-BR.yml +90 -0
- data/config/locales/pt-PT.yml +89 -0
- data/config/locales/ro.yml +93 -0
- data/config/locales/ru.yml +103 -0
- data/config/locales/sv-SE.yml +89 -0
- data/config/locales/tr.yml +90 -0
- data/config/locales/uk.yml +100 -0
- data/config/locales/vi.yml +90 -0
- data/config/locales/zh-CN.yml +90 -0
- data/config/locales/zh-TW.yml +90 -0
- data/cucumber.yml +3 -0
- data/docs/0-installation.md +84 -0
- data/docs/1-general-configuration.md +137 -0
- data/docs/10-custom-pages.md +98 -0
- data/docs/11-decorators.md +66 -0
- data/docs/12-arbre-components.md +144 -0
- data/docs/13-authorization-adapter.md +227 -0
- data/docs/2-resource-customization.md +340 -0
- data/docs/3-index-pages/create-an-index.md +29 -0
- data/docs/3-index-pages/index-as-block.md +21 -0
- data/docs/3-index-pages/index-as-blog.md +71 -0
- data/docs/3-index-pages/index-as-grid.md +29 -0
- data/docs/3-index-pages/index-as-table.md +154 -0
- data/docs/3-index-pages.md +206 -0
- data/docs/4-csv-format.md +39 -0
- data/docs/5-forms.md +110 -0
- data/docs/6-show-pages.md +77 -0
- data/docs/7-sidebars.md +42 -0
- data/docs/8-custom-actions.md +139 -0
- data/docs/9-batch-actions.md +155 -0
- data/features/action_item.feature +73 -0
- data/features/authorization.feature +64 -0
- data/features/authorization_cancan.feature +52 -0
- data/features/belongs_to.feature +63 -0
- data/features/breadcrumb.feature +27 -0
- data/features/comments/commenting.feature +140 -0
- data/features/comments/viewing_index.feature +19 -0
- data/features/dashboard.feature +16 -0
- data/features/decorators.feature +41 -0
- data/features/development_reloading.feature +31 -0
- data/features/edit_page.feature +127 -0
- data/features/favicon.feature +20 -0
- data/features/first_boot.feature +16 -0
- data/features/global_navigation.feature +29 -0
- data/features/i18n.feature +38 -0
- data/features/index/batch_actions.feature +123 -0
- data/features/index/filters.feature +138 -0
- data/features/index/format_as_csv.feature +117 -0
- data/features/index/formats.feature +66 -0
- data/features/index/index_as_block.feature +15 -0
- data/features/index/index_as_blog.feature +69 -0
- data/features/index/index_as_grid.feature +45 -0
- data/features/index/index_as_table.feature +195 -0
- data/features/index/index_blank_slate.feature +61 -0
- data/features/index/index_parameters.feature +75 -0
- data/features/index/index_scope_to.feature +56 -0
- data/features/index/index_scopes.feature +251 -0
- data/features/index/page_title.feature +30 -0
- data/features/index/pagination.feature +59 -0
- data/features/index/switch_index_view.feature +73 -0
- data/features/menu.feature +53 -0
- data/features/new_page.feature +119 -0
- data/features/registering_assets.feature +35 -0
- data/features/registering_pages.feature +148 -0
- data/features/registering_resources.feature +33 -0
- data/features/root_to.feature +17 -0
- data/features/show/default_content.feature +43 -0
- data/features/show/page_title.feature +47 -0
- data/features/sidebar_sections.feature +198 -0
- data/features/site_title.feature +47 -0
- data/features/specifying_actions.feature +93 -0
- data/features/step_definitions/action_item_steps.rb +7 -0
- data/features/step_definitions/action_link_steps.rb +7 -0
- data/features/step_definitions/additional_web_steps.rb +82 -0
- data/features/step_definitions/asset_steps.rb +15 -0
- data/features/step_definitions/attribute_steps.rb +13 -0
- data/features/step_definitions/batch_action_steps.rb +55 -0
- data/features/step_definitions/breadcrumb_steps.rb +3 -0
- data/features/step_definitions/comment_steps.rb +12 -0
- data/features/step_definitions/configuration_steps.rb +100 -0
- data/features/step_definitions/dashboard_steps.rb +15 -0
- data/features/step_definitions/factory_steps.rb +34 -0
- data/features/step_definitions/filter_steps.rb +17 -0
- data/features/step_definitions/flash_steps.rb +11 -0
- data/features/step_definitions/format_steps.rb +45 -0
- data/features/step_definitions/i18n_steps.rb +3 -0
- data/features/step_definitions/index_scope_steps.rb +21 -0
- data/features/step_definitions/index_views_steps.rb +3 -0
- data/features/step_definitions/layout_steps.rb +3 -0
- data/features/step_definitions/member_link_steps.rb +7 -0
- data/features/step_definitions/menu_steps.rb +11 -0
- data/features/step_definitions/pagination_steps.rb +8 -0
- data/features/step_definitions/sidebar_steps.rb +8 -0
- data/features/step_definitions/site_title_steps.rb +15 -0
- data/features/step_definitions/symbol_leak_steps.rb +3 -0
- data/features/step_definitions/tab_steps.rb +3 -0
- data/features/step_definitions/table_steps.rb +119 -0
- data/features/step_definitions/user_steps.rb +39 -0
- data/features/step_definitions/web_steps.rb +86 -0
- data/features/sti_resource.feature +73 -0
- data/features/support/env.rb +112 -0
- data/features/support/paths.rb +71 -0
- data/features/support/selectors.rb +45 -0
- data/features/symbol_leak.feature +35 -0
- data/features/users/logging_in.feature +34 -0
- data/features/users/logging_out.feature +13 -0
- data/features/users/resetting_password.feature +34 -0
- data/lib/active_admin/abstract_view_factory.rb +95 -0
- data/lib/active_admin/application.rb +242 -0
- data/lib/active_admin/asset_registration.rb +29 -0
- data/lib/active_admin/authorization_adapter.rb +132 -0
- data/lib/active_admin/base_controller/authorization.rb +151 -0
- data/lib/active_admin/base_controller/menu.rb +34 -0
- data/lib/active_admin/base_controller.rb +78 -0
- data/lib/active_admin/batch_actions/controller.rb +24 -0
- data/lib/active_admin/batch_actions/resource_extension.rb +127 -0
- data/lib/active_admin/batch_actions/views/batch_action_form.rb +35 -0
- data/lib/active_admin/batch_actions/views/batch_action_popover.rb +28 -0
- data/lib/active_admin/batch_actions/views/batch_action_selector.rb +66 -0
- data/lib/active_admin/batch_actions/views/selection_cells.rb +37 -0
- data/lib/active_admin/batch_actions.rb +17 -0
- data/lib/active_admin/callbacks.rb +87 -0
- data/lib/active_admin/cancan_adapter.rb +40 -0
- data/lib/active_admin/component.rb +5 -0
- data/lib/active_admin/controller_action.rb +12 -0
- data/lib/active_admin/csv_builder.rb +49 -0
- data/lib/active_admin/deprecation.rb +36 -0
- data/lib/active_admin/devise.rb +70 -0
- data/lib/active_admin/dsl.rb +166 -0
- data/lib/active_admin/engine.rb +7 -0
- data/lib/active_admin/event.rb +33 -0
- data/lib/active_admin/filters/dsl.rb +21 -0
- data/lib/active_admin/filters/forms.rb +89 -0
- data/lib/active_admin/filters/formtastic_addons.rb +70 -0
- data/lib/active_admin/filters/resource_extension.rb +136 -0
- data/lib/active_admin/filters.rb +9 -0
- data/lib/active_admin/form_builder.rb +152 -0
- data/lib/active_admin/helpers/collection.rb +23 -0
- data/lib/active_admin/helpers/optional_display.rb +38 -0
- data/lib/active_admin/helpers/scope_chain.rb +23 -0
- data/lib/active_admin/helpers/settings.rb +108 -0
- data/lib/active_admin/iconic/icons.rb +142 -0
- data/lib/active_admin/iconic.rb +51 -0
- data/lib/active_admin/inputs/datepicker_input.rb +20 -0
- data/lib/active_admin/inputs/filter_base/search_method_select.rb +73 -0
- data/lib/active_admin/inputs/filter_base.rb +33 -0
- data/lib/active_admin/inputs/filter_boolean_input.rb +32 -0
- data/lib/active_admin/inputs/filter_check_boxes_input.rb +51 -0
- data/lib/active_admin/inputs/filter_date_range_input.rb +34 -0
- data/lib/active_admin/inputs/filter_numeric_input.rb +10 -0
- data/lib/active_admin/inputs/filter_select_input.rb +61 -0
- data/lib/active_admin/inputs/filter_string_input.rb +24 -0
- data/lib/active_admin/inputs.rb +15 -0
- data/lib/active_admin/menu.rb +107 -0
- data/lib/active_admin/menu_collection.rb +96 -0
- data/lib/active_admin/menu_item.rb +97 -0
- data/lib/active_admin/namespace.rb +224 -0
- data/lib/active_admin/orm/active_record/comments/comment.rb +39 -0
- data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +14 -0
- data/lib/active_admin/orm/active_record/comments/resource_helper.rb +17 -0
- data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +23 -0
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +75 -0
- data/lib/active_admin/orm/active_record/comments/views.rb +2 -0
- data/lib/active_admin/orm/active_record/comments.rb +84 -0
- data/lib/active_admin/orm/active_record.rb +3 -0
- data/lib/active_admin/orm/mongoid/.gitkeep +0 -0
- data/lib/active_admin/orm/mongoid.rb +1 -0
- data/lib/active_admin/page.rb +88 -0
- data/lib/active_admin/page_controller.rb +29 -0
- data/lib/active_admin/page_dsl.rb +28 -0
- data/lib/active_admin/page_presenter.rb +32 -0
- data/lib/active_admin/resource/action_items.rb +91 -0
- data/lib/active_admin/resource/belongs_to.rb +36 -0
- data/lib/active_admin/resource/controllers.rb +18 -0
- data/lib/active_admin/resource/menu.rb +64 -0
- data/lib/active_admin/resource/naming.rb +84 -0
- data/lib/active_admin/resource/page_presenters.rb +82 -0
- data/lib/active_admin/resource/pagination.rb +19 -0
- data/lib/active_admin/resource/routes.rb +99 -0
- data/lib/active_admin/resource/scope_to.rb +74 -0
- data/lib/active_admin/resource/scopes.rb +50 -0
- data/lib/active_admin/resource/sidebars.rb +27 -0
- data/lib/active_admin/resource.rb +153 -0
- data/lib/active_admin/resource_collection.rb +42 -0
- data/lib/active_admin/resource_controller/action_builder.rb +21 -0
- data/lib/active_admin/resource_controller/data_access.rb +298 -0
- data/lib/active_admin/resource_controller/decorators.rb +20 -0
- data/lib/active_admin/resource_controller/resource_class_methods.rb +24 -0
- data/lib/active_admin/resource_controller/scoping.rb +31 -0
- data/lib/active_admin/resource_controller/sidebars.rb +18 -0
- data/lib/active_admin/resource_controller.rb +50 -0
- data/lib/active_admin/resource_dsl.rb +134 -0
- data/lib/active_admin/router.rb +106 -0
- data/lib/active_admin/scope.rb +57 -0
- data/lib/active_admin/sidebar_section.rb +37 -0
- data/lib/active_admin/version.rb +3 -0
- data/lib/active_admin/view_factory.rb +27 -0
- data/lib/active_admin/view_helpers/active_admin_application_helper.rb +12 -0
- data/lib/active_admin/view_helpers/assigns_with_indifferent_access_helper.rb +7 -0
- data/lib/active_admin/view_helpers/auto_link_helper.rb +34 -0
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +26 -0
- data/lib/active_admin/view_helpers/display_helper.rb +49 -0
- data/lib/active_admin/view_helpers/download_format_links_helper.rb +49 -0
- data/lib/active_admin/view_helpers/fields_for.rb +50 -0
- data/lib/active_admin/view_helpers/flash_helper.rb +13 -0
- data/lib/active_admin/view_helpers/form_helper.rb +24 -0
- data/lib/active_admin/view_helpers/icon_helper.rb +12 -0
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +93 -0
- data/lib/active_admin/view_helpers/sidebar_helper.rb +15 -0
- data/lib/active_admin/view_helpers/title_helper.rb +11 -0
- data/lib/active_admin/view_helpers/view_factory_helper.rb +11 -0
- data/lib/active_admin/view_helpers.rb +21 -0
- data/lib/active_admin/views/action_items.rb +17 -0
- data/lib/active_admin/views/components/action_list_popover.rb +29 -0
- data/lib/active_admin/views/components/attributes_table.rb +103 -0
- data/lib/active_admin/views/components/blank_slate.rb +17 -0
- data/lib/active_admin/views/components/columns.rb +150 -0
- data/lib/active_admin/views/components/dropdown_menu.rb +73 -0
- data/lib/active_admin/views/components/index_list.rb +68 -0
- data/lib/active_admin/views/components/paginated_collection.rb +125 -0
- data/lib/active_admin/views/components/panel.rb +34 -0
- data/lib/active_admin/views/components/popover.rb +27 -0
- data/lib/active_admin/views/components/scopes.rb +66 -0
- data/lib/active_admin/views/components/sidebar_section.rb +28 -0
- data/lib/active_admin/views/components/site_title.rb +55 -0
- data/lib/active_admin/views/components/status_tag.rb +56 -0
- data/lib/active_admin/views/components/table_for.rb +191 -0
- data/lib/active_admin/views/footer.rb +20 -0
- data/lib/active_admin/views/header.rb +32 -0
- data/lib/active_admin/views/index_as_block.rb +36 -0
- data/lib/active_admin/views/index_as_blog.rb +156 -0
- data/lib/active_admin/views/index_as_grid.rb +80 -0
- data/lib/active_admin/views/index_as_table.rb +264 -0
- data/lib/active_admin/views/pages/base.rb +139 -0
- data/lib/active_admin/views/pages/form.rb +51 -0
- data/lib/active_admin/views/pages/index.rb +147 -0
- data/lib/active_admin/views/pages/layout.rb +26 -0
- data/lib/active_admin/views/pages/page.rb +30 -0
- data/lib/active_admin/views/pages/show.rb +59 -0
- data/lib/active_admin/views/tabbed_navigation.rb +62 -0
- data/lib/active_admin/views/title_bar.rb +53 -0
- data/lib/active_admin/views.rb +8 -0
- data/lib/active_admin.rb +125 -0
- data/lib/activeadmin.rb +1 -0
- data/lib/generators/active_admin/assets/assets_generator.rb +16 -0
- data/lib/generators/active_admin/assets/templates/active_admin.css.scss +17 -0
- data/lib/generators/active_admin/assets/templates/active_admin.js.coffee +1 -0
- data/lib/generators/active_admin/devise/devise_generator.rb +86 -0
- data/lib/generators/active_admin/install/install_generator.rb +46 -0
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +235 -0
- data/lib/generators/active_admin/install/templates/admin_user.rb.erb +27 -0
- data/lib/generators/active_admin/install/templates/dashboard.rb +33 -0
- data/lib/generators/active_admin/install/templates/migrations/create_active_admin_comments.rb +19 -0
- data/lib/generators/active_admin/resource/resource_generator.rb +16 -0
- data/lib/generators/active_admin/resource/templates/admin.rb +3 -0
- data/lib/ransack_ext.rb +12 -0
- data/script/local +44 -0
- data/script/use_rails +53 -0
- data/spec/integration/default_namespace_spec.rb +61 -0
- data/spec/integration/javascript_spec.rb +20 -0
- data/spec/integration/memory_spec.rb +29 -0
- data/spec/integration/stylesheets_spec.rb +41 -0
- data/spec/javascripts/coffeescripts/jquery.aa.checkbox-toggler-spec.js.coffee +50 -0
- data/spec/javascripts/coffeescripts/jquery.aa.popover-spec.js.coffee +82 -0
- data/spec/javascripts/coffeescripts/jquery.aa.table-checkbox-toggler-spec.js.coffee +34 -0
- data/spec/javascripts/compiled/jquery.aa.checkbox-toggler-spec.js +60 -0
- data/spec/javascripts/compiled/jquery.aa.popover-spec.js +106 -0
- data/spec/javascripts/compiled/jquery.aa.table-checkbox-toggler-spec.js +37 -0
- data/spec/javascripts/fixtures/checkboxes.html +9 -0
- data/spec/javascripts/fixtures/table_checkboxes.html +17 -0
- data/spec/javascripts/helpers/SpecHelper.js +3 -0
- data/spec/javascripts/helpers/vendor/jasmine-fixture-0.0.5.js +108 -0
- data/spec/javascripts/helpers/vendor/jasmine-jquery.js +288 -0
- data/spec/javascripts/helpers/vendor/sinon-1.2.0.js +2915 -0
- data/spec/javascripts/support/jasmine.yml +74 -0
- data/spec/javascripts/support/jasmine_config.rb +23 -0
- data/spec/javascripts/support/jasmine_runner.rb +32 -0
- data/spec/javascripts/support/jquery-ui-1.8.16.custom.min.js +34 -0
- data/spec/javascripts/support/jquery.min.js +4 -0
- data/spec/spec_helper.rb +175 -0
- data/spec/spec_helper_without_rails.rb +16 -0
- data/spec/support/deferred_garbage_collection.rb +19 -0
- data/spec/support/detect_rails_version.rb +42 -0
- data/spec/support/integration_example_group.rb +31 -0
- data/spec/support/jslint.yml +80 -0
- data/spec/support/rails_template.rb +111 -0
- data/spec/support/rails_template_with_data.rb +59 -0
- data/spec/support/templates/admin/stores.rb +11 -0
- data/spec/support/templates/cucumber.rb +24 -0
- data/spec/support/templates/cucumber_with_reloading.rb +5 -0
- data/spec/support/templates/en.yml +8 -0
- data/spec/support/templates/post_decorator.rb +53 -0
- data/spec/unit/abstract_view_factory_spec.rb +79 -0
- data/spec/unit/action_builder_spec.rb +126 -0
- data/spec/unit/active_admin_spec.rb +11 -0
- data/spec/unit/application_spec.rb +141 -0
- data/spec/unit/asset_registration_spec.rb +52 -0
- data/spec/unit/authorization/authorization_adapter_spec.rb +61 -0
- data/spec/unit/authorization/controller_authorization_spec.rb +39 -0
- data/spec/unit/auto_link_spec.rb +32 -0
- data/spec/unit/batch_actions/resource_spec.rb +91 -0
- data/spec/unit/batch_actions/settings_spec.rb +61 -0
- data/spec/unit/belongs_to_spec.rb +42 -0
- data/spec/unit/cancan_adapter_spec.rb +43 -0
- data/spec/unit/comments_spec.rb +106 -0
- data/spec/unit/component_spec.rb +18 -0
- data/spec/unit/config_shared_examples.rb +59 -0
- data/spec/unit/controller_filters_spec.rb +32 -0
- data/spec/unit/csv_builder_spec.rb +103 -0
- data/spec/unit/devise_spec.rb +116 -0
- data/spec/unit/dsl_spec.rb +61 -0
- data/spec/unit/event_spec.rb +47 -0
- data/spec/unit/filters/filter_form_builder_spec.rb +423 -0
- data/spec/unit/filters/resource_spec.rb +119 -0
- data/spec/unit/form_builder_spec.rb +514 -0
- data/spec/unit/generators/install_spec.rb +23 -0
- data/spec/unit/helpers/collection_spec.rb +65 -0
- data/spec/unit/helpers/scope_chain_spec.rb +36 -0
- data/spec/unit/helpers/settings_spec.rb +30 -0
- data/spec/unit/menu_collection_spec.rb +62 -0
- data/spec/unit/menu_item_spec.rb +143 -0
- data/spec/unit/menu_spec.rb +71 -0
- data/spec/unit/namespace/authorization_spec.rb +27 -0
- data/spec/unit/namespace/register_page_spec.rb +74 -0
- data/spec/unit/namespace/register_resource_spec.rb +163 -0
- data/spec/unit/namespace_spec.rb +103 -0
- data/spec/unit/page_controller_spec.rb +5 -0
- data/spec/unit/page_spec.rb +72 -0
- data/spec/unit/pretty_format_spec.rb +35 -0
- data/spec/unit/resource/action_items_spec.rb +62 -0
- data/spec/unit/resource/menu_spec.rb +18 -0
- data/spec/unit/resource/naming_spec.rb +122 -0
- data/spec/unit/resource/page_presenters_spec.rb +44 -0
- data/spec/unit/resource/pagination_spec.rb +38 -0
- data/spec/unit/resource/routes_spec.rb +73 -0
- data/spec/unit/resource/scopes_spec.rb +43 -0
- data/spec/unit/resource/sidebars_spec.rb +43 -0
- data/spec/unit/resource_collection_spec.rb +160 -0
- data/spec/unit/resource_controller/data_access_spec.rb +73 -0
- data/spec/unit/resource_controller/sidebars_spec.rb +46 -0
- data/spec/unit/resource_controller_spec.rb +265 -0
- data/spec/unit/resource_registration_spec.rb +56 -0
- data/spec/unit/resource_spec.rb +243 -0
- data/spec/unit/routing_spec.rb +172 -0
- data/spec/unit/scope_spec.rb +108 -0
- data/spec/unit/settings_spec.rb +88 -0
- data/spec/unit/view_factory_spec.rb +21 -0
- data/spec/unit/view_helpers/breadcrumbs_spec.rb +149 -0
- data/spec/unit/view_helpers/display_name_spec.rb +41 -0
- data/spec/unit/view_helpers/download_format_links_helper_spec.rb +39 -0
- data/spec/unit/view_helpers/fields_for_spec.rb +50 -0
- data/spec/unit/view_helpers/form_helper_spec.rb +56 -0
- data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +101 -0
- data/spec/unit/views/components/action_list_popover_spec.rb +30 -0
- data/spec/unit/views/components/attributes_table_spec.rb +230 -0
- data/spec/unit/views/components/batch_action_popover_spec.rb +33 -0
- data/spec/unit/views/components/blank_slate_spec.rb +17 -0
- data/spec/unit/views/components/columns_spec.rb +142 -0
- data/spec/unit/views/components/index_list_spec.rb +32 -0
- data/spec/unit/views/components/paginated_collection_spec.rb +227 -0
- data/spec/unit/views/components/panel_spec.rb +51 -0
- data/spec/unit/views/components/popover_spec.rb +33 -0
- data/spec/unit/views/components/sidebar_section_spec.rb +37 -0
- data/spec/unit/views/components/site_title_spec.rb +78 -0
- data/spec/unit/views/components/status_tag_spec.rb +95 -0
- data/spec/unit/views/components/table_for_spec.rb +201 -0
- data/spec/unit/views/pages/form_spec.rb +35 -0
- data/spec/unit/views/pages/layout_spec.rb +63 -0
- data/spec/unit/views/pages/show_spec.rb +20 -0
- data/spec/unit/views/tabbed_navigation_spec.rb +149 -0
- data/tasks/docs.rake +37 -0
- data/tasks/js.rake +32 -0
- data/tasks/parallel_tests.rake +60 -0
- data/tasks/test.rake +79 -0
- data/tasks/yard.rake +7 -0
- metadata +896 -0
metadata
ADDED
@@ -0,0 +1,896 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: yousty-activeadmin
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0.pre
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Greg Bell
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-11-04 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: arbre
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bourbon
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: coffee-rails
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: devise
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: formtastic
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 2.3.0.rc2
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ~>
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 2.3.0.rc2
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: inherited_resources
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ~>
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.3'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ~>
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '1.3'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: jquery-rails
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '>='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: jquery-ui-rails
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '>='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: kaminari
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ~>
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0.13'
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ~>
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0.13'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rails
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - '>='
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '3.2'
|
146
|
+
- - <
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '4.1'
|
149
|
+
type: :runtime
|
150
|
+
prerelease: false
|
151
|
+
version_requirements: !ruby/object:Gem::Requirement
|
152
|
+
requirements:
|
153
|
+
- - '>='
|
154
|
+
- !ruby/object:Gem::Version
|
155
|
+
version: '3.2'
|
156
|
+
- - <
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '4.1'
|
159
|
+
- !ruby/object:Gem::Dependency
|
160
|
+
name: ransack
|
161
|
+
requirement: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - ~>
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '1.0'
|
166
|
+
type: :runtime
|
167
|
+
prerelease: false
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
169
|
+
requirements:
|
170
|
+
- - ~>
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: '1.0'
|
173
|
+
- !ruby/object:Gem::Dependency
|
174
|
+
name: sass-rails
|
175
|
+
requirement: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - '>='
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0'
|
180
|
+
type: :runtime
|
181
|
+
prerelease: false
|
182
|
+
version_requirements: !ruby/object:Gem::Requirement
|
183
|
+
requirements:
|
184
|
+
- - '>='
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
version: '0'
|
187
|
+
description: The administration framework for Ruby on Rails.
|
188
|
+
email:
|
189
|
+
- gregdbell@gmail.com
|
190
|
+
executables: []
|
191
|
+
extensions: []
|
192
|
+
extra_rdoc_files: []
|
193
|
+
files:
|
194
|
+
- .gitignore
|
195
|
+
- .travis.yml
|
196
|
+
- .yardopts
|
197
|
+
- CHANGELOG.md
|
198
|
+
- CONTRIBUTING.md
|
199
|
+
- Gemfile
|
200
|
+
- Guardfile
|
201
|
+
- LICENSE
|
202
|
+
- README.md
|
203
|
+
- Rakefile
|
204
|
+
- activeadmin.gemspec
|
205
|
+
- app/assets/images/active_admin/admin_notes_icon.png
|
206
|
+
- app/assets/images/active_admin/datepicker/datepicker-header-bg.png
|
207
|
+
- app/assets/images/active_admin/datepicker/datepicker-input-icon.png
|
208
|
+
- app/assets/images/active_admin/datepicker/datepicker-next-link-icon.png
|
209
|
+
- app/assets/images/active_admin/datepicker/datepicker-nipple.png
|
210
|
+
- app/assets/images/active_admin/datepicker/datepicker-prev-link-icon.png
|
211
|
+
- app/assets/images/active_admin/index_list_icons/block_icon.svg
|
212
|
+
- app/assets/images/active_admin/index_list_icons/blog_icon.svg
|
213
|
+
- app/assets/images/active_admin/index_list_icons/grid_icon.svg
|
214
|
+
- app/assets/images/active_admin/index_list_icons/table_icon.svg
|
215
|
+
- app/assets/images/active_admin/loading.gif
|
216
|
+
- app/assets/images/active_admin/nested_menu_arrow.gif
|
217
|
+
- app/assets/images/active_admin/nested_menu_arrow_dark.gif
|
218
|
+
- app/assets/images/active_admin/orderable.png
|
219
|
+
- app/assets/javascripts/active_admin/application.js.coffee
|
220
|
+
- app/assets/javascripts/active_admin/base.js.coffee
|
221
|
+
- app/assets/javascripts/active_admin/components/application.js.coffee
|
222
|
+
- app/assets/javascripts/active_admin/components/batch_actions.js.coffee
|
223
|
+
- app/assets/javascripts/active_admin/components/has_many.js.coffee
|
224
|
+
- app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee
|
225
|
+
- app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee
|
226
|
+
- app/assets/javascripts/active_admin/lib/popover.js.coffee
|
227
|
+
- app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee
|
228
|
+
- app/assets/stylesheets/active_admin/_base.css.scss
|
229
|
+
- app/assets/stylesheets/active_admin/_forms.css.scss
|
230
|
+
- app/assets/stylesheets/active_admin/_header.css.scss
|
231
|
+
- app/assets/stylesheets/active_admin/_mixins.css.scss
|
232
|
+
- app/assets/stylesheets/active_admin/_typography.css.scss
|
233
|
+
- app/assets/stylesheets/active_admin/components/_batch_actions.css.scss
|
234
|
+
- app/assets/stylesheets/active_admin/components/_blank_slates.scss
|
235
|
+
- app/assets/stylesheets/active_admin/components/_breadcrumbs.scss
|
236
|
+
- app/assets/stylesheets/active_admin/components/_buttons.scss
|
237
|
+
- app/assets/stylesheets/active_admin/components/_columns.scss
|
238
|
+
- app/assets/stylesheets/active_admin/components/_comments.css.scss
|
239
|
+
- app/assets/stylesheets/active_admin/components/_date_picker.css.scss
|
240
|
+
- app/assets/stylesheets/active_admin/components/_dropdown_menu.scss
|
241
|
+
- app/assets/stylesheets/active_admin/components/_flash_messages.css.scss
|
242
|
+
- app/assets/stylesheets/active_admin/components/_grid.scss
|
243
|
+
- app/assets/stylesheets/active_admin/components/_index_list.scss
|
244
|
+
- app/assets/stylesheets/active_admin/components/_links.scss
|
245
|
+
- app/assets/stylesheets/active_admin/components/_pagination.scss
|
246
|
+
- app/assets/stylesheets/active_admin/components/_panels.scss
|
247
|
+
- app/assets/stylesheets/active_admin/components/_popovers.css.scss
|
248
|
+
- app/assets/stylesheets/active_admin/components/_scopes.scss
|
249
|
+
- app/assets/stylesheets/active_admin/components/_status_tags.scss
|
250
|
+
- app/assets/stylesheets/active_admin/components/_table_tools.css.scss
|
251
|
+
- app/assets/stylesheets/active_admin/components/_tables.css.scss
|
252
|
+
- app/assets/stylesheets/active_admin/mixins/_all.css.scss
|
253
|
+
- app/assets/stylesheets/active_admin/mixins/_buttons.css.scss
|
254
|
+
- app/assets/stylesheets/active_admin/mixins/_gradients.css.scss
|
255
|
+
- app/assets/stylesheets/active_admin/mixins/_icons.css.scss
|
256
|
+
- app/assets/stylesheets/active_admin/mixins/_reset.css.scss
|
257
|
+
- app/assets/stylesheets/active_admin/mixins/_rounded.css.scss
|
258
|
+
- app/assets/stylesheets/active_admin/mixins/_sections.css.scss
|
259
|
+
- app/assets/stylesheets/active_admin/mixins/_shadows.css.scss
|
260
|
+
- app/assets/stylesheets/active_admin/mixins/_typography.scss
|
261
|
+
- app/assets/stylesheets/active_admin/mixins/_utilities.scss
|
262
|
+
- app/assets/stylesheets/active_admin/mixins/_variables.css.scss
|
263
|
+
- app/assets/stylesheets/active_admin/pages/_logged_out.scss
|
264
|
+
- app/assets/stylesheets/active_admin/print.css.scss
|
265
|
+
- app/assets/stylesheets/active_admin/structure/_footer.scss
|
266
|
+
- app/assets/stylesheets/active_admin/structure/_main_structure.scss
|
267
|
+
- app/assets/stylesheets/active_admin/structure/_title_bar.scss
|
268
|
+
- app/views/active_admin/dashboard/index.html.arb
|
269
|
+
- app/views/active_admin/devise/mailer/reset_password_instructions.html.erb
|
270
|
+
- app/views/active_admin/devise/mailer/unlock_instructions.html.erb
|
271
|
+
- app/views/active_admin/devise/passwords/edit.html.erb
|
272
|
+
- app/views/active_admin/devise/passwords/new.html.erb
|
273
|
+
- app/views/active_admin/devise/sessions/new.html.erb
|
274
|
+
- app/views/active_admin/devise/shared/_links.erb
|
275
|
+
- app/views/active_admin/devise/unlocks/new.html.erb
|
276
|
+
- app/views/active_admin/page/index.html.arb
|
277
|
+
- app/views/active_admin/resource/edit.html.arb
|
278
|
+
- app/views/active_admin/resource/index.csv.erb
|
279
|
+
- app/views/active_admin/resource/index.html.arb
|
280
|
+
- app/views/active_admin/resource/new.html.arb
|
281
|
+
- app/views/active_admin/resource/show.html.arb
|
282
|
+
- app/views/layouts/active_admin.html.arb
|
283
|
+
- app/views/layouts/active_admin_logged_out.html.erb
|
284
|
+
- config/locales/bg.yml
|
285
|
+
- config/locales/ca.yml
|
286
|
+
- config/locales/cs.yml
|
287
|
+
- config/locales/da.yml
|
288
|
+
- config/locales/de-CH.yml
|
289
|
+
- config/locales/de.yml
|
290
|
+
- config/locales/en-GB.yml
|
291
|
+
- config/locales/en.yml
|
292
|
+
- config/locales/es.yml
|
293
|
+
- config/locales/es_MX.yml
|
294
|
+
- config/locales/fi.yml
|
295
|
+
- config/locales/fr.yml
|
296
|
+
- config/locales/he.yml
|
297
|
+
- config/locales/hr.yml
|
298
|
+
- config/locales/hu.yml
|
299
|
+
- config/locales/it.yml
|
300
|
+
- config/locales/ja.yml
|
301
|
+
- config/locales/ko.yml
|
302
|
+
- config/locales/lt.yml
|
303
|
+
- config/locales/lv.yml
|
304
|
+
- config/locales/nl.yml
|
305
|
+
- config/locales/no-NB.yml
|
306
|
+
- config/locales/pl.yml
|
307
|
+
- config/locales/pt-BR.yml
|
308
|
+
- config/locales/pt-PT.yml
|
309
|
+
- config/locales/ro.yml
|
310
|
+
- config/locales/ru.yml
|
311
|
+
- config/locales/sv-SE.yml
|
312
|
+
- config/locales/tr.yml
|
313
|
+
- config/locales/uk.yml
|
314
|
+
- config/locales/vi.yml
|
315
|
+
- config/locales/zh-CN.yml
|
316
|
+
- config/locales/zh-TW.yml
|
317
|
+
- cucumber.yml
|
318
|
+
- docs/0-installation.md
|
319
|
+
- docs/1-general-configuration.md
|
320
|
+
- docs/10-custom-pages.md
|
321
|
+
- docs/11-decorators.md
|
322
|
+
- docs/12-arbre-components.md
|
323
|
+
- docs/13-authorization-adapter.md
|
324
|
+
- docs/2-resource-customization.md
|
325
|
+
- docs/3-index-pages.md
|
326
|
+
- docs/3-index-pages/create-an-index.md
|
327
|
+
- docs/3-index-pages/index-as-block.md
|
328
|
+
- docs/3-index-pages/index-as-blog.md
|
329
|
+
- docs/3-index-pages/index-as-grid.md
|
330
|
+
- docs/3-index-pages/index-as-table.md
|
331
|
+
- docs/4-csv-format.md
|
332
|
+
- docs/5-forms.md
|
333
|
+
- docs/6-show-pages.md
|
334
|
+
- docs/7-sidebars.md
|
335
|
+
- docs/8-custom-actions.md
|
336
|
+
- docs/9-batch-actions.md
|
337
|
+
- features/action_item.feature
|
338
|
+
- features/authorization.feature
|
339
|
+
- features/authorization_cancan.feature
|
340
|
+
- features/belongs_to.feature
|
341
|
+
- features/breadcrumb.feature
|
342
|
+
- features/comments/commenting.feature
|
343
|
+
- features/comments/viewing_index.feature
|
344
|
+
- features/dashboard.feature
|
345
|
+
- features/decorators.feature
|
346
|
+
- features/development_reloading.feature
|
347
|
+
- features/edit_page.feature
|
348
|
+
- features/favicon.feature
|
349
|
+
- features/first_boot.feature
|
350
|
+
- features/global_navigation.feature
|
351
|
+
- features/i18n.feature
|
352
|
+
- features/index/batch_actions.feature
|
353
|
+
- features/index/filters.feature
|
354
|
+
- features/index/format_as_csv.feature
|
355
|
+
- features/index/formats.feature
|
356
|
+
- features/index/index_as_block.feature
|
357
|
+
- features/index/index_as_blog.feature
|
358
|
+
- features/index/index_as_grid.feature
|
359
|
+
- features/index/index_as_table.feature
|
360
|
+
- features/index/index_blank_slate.feature
|
361
|
+
- features/index/index_parameters.feature
|
362
|
+
- features/index/index_scope_to.feature
|
363
|
+
- features/index/index_scopes.feature
|
364
|
+
- features/index/page_title.feature
|
365
|
+
- features/index/pagination.feature
|
366
|
+
- features/index/switch_index_view.feature
|
367
|
+
- features/menu.feature
|
368
|
+
- features/new_page.feature
|
369
|
+
- features/registering_assets.feature
|
370
|
+
- features/registering_pages.feature
|
371
|
+
- features/registering_resources.feature
|
372
|
+
- features/root_to.feature
|
373
|
+
- features/show/default_content.feature
|
374
|
+
- features/show/page_title.feature
|
375
|
+
- features/sidebar_sections.feature
|
376
|
+
- features/site_title.feature
|
377
|
+
- features/specifying_actions.feature
|
378
|
+
- features/step_definitions/action_item_steps.rb
|
379
|
+
- features/step_definitions/action_link_steps.rb
|
380
|
+
- features/step_definitions/additional_web_steps.rb
|
381
|
+
- features/step_definitions/asset_steps.rb
|
382
|
+
- features/step_definitions/attribute_steps.rb
|
383
|
+
- features/step_definitions/batch_action_steps.rb
|
384
|
+
- features/step_definitions/breadcrumb_steps.rb
|
385
|
+
- features/step_definitions/comment_steps.rb
|
386
|
+
- features/step_definitions/configuration_steps.rb
|
387
|
+
- features/step_definitions/dashboard_steps.rb
|
388
|
+
- features/step_definitions/factory_steps.rb
|
389
|
+
- features/step_definitions/filter_steps.rb
|
390
|
+
- features/step_definitions/flash_steps.rb
|
391
|
+
- features/step_definitions/format_steps.rb
|
392
|
+
- features/step_definitions/i18n_steps.rb
|
393
|
+
- features/step_definitions/index_scope_steps.rb
|
394
|
+
- features/step_definitions/index_views_steps.rb
|
395
|
+
- features/step_definitions/layout_steps.rb
|
396
|
+
- features/step_definitions/member_link_steps.rb
|
397
|
+
- features/step_definitions/menu_steps.rb
|
398
|
+
- features/step_definitions/pagination_steps.rb
|
399
|
+
- features/step_definitions/sidebar_steps.rb
|
400
|
+
- features/step_definitions/site_title_steps.rb
|
401
|
+
- features/step_definitions/symbol_leak_steps.rb
|
402
|
+
- features/step_definitions/tab_steps.rb
|
403
|
+
- features/step_definitions/table_steps.rb
|
404
|
+
- features/step_definitions/user_steps.rb
|
405
|
+
- features/step_definitions/web_steps.rb
|
406
|
+
- features/sti_resource.feature
|
407
|
+
- features/support/env.rb
|
408
|
+
- features/support/paths.rb
|
409
|
+
- features/support/selectors.rb
|
410
|
+
- features/symbol_leak.feature
|
411
|
+
- features/users/logging_in.feature
|
412
|
+
- features/users/logging_out.feature
|
413
|
+
- features/users/resetting_password.feature
|
414
|
+
- lib/active_admin.rb
|
415
|
+
- lib/active_admin/abstract_view_factory.rb
|
416
|
+
- lib/active_admin/application.rb
|
417
|
+
- lib/active_admin/asset_registration.rb
|
418
|
+
- lib/active_admin/authorization_adapter.rb
|
419
|
+
- lib/active_admin/base_controller.rb
|
420
|
+
- lib/active_admin/base_controller/authorization.rb
|
421
|
+
- lib/active_admin/base_controller/menu.rb
|
422
|
+
- lib/active_admin/batch_actions.rb
|
423
|
+
- lib/active_admin/batch_actions/controller.rb
|
424
|
+
- lib/active_admin/batch_actions/resource_extension.rb
|
425
|
+
- lib/active_admin/batch_actions/views/batch_action_form.rb
|
426
|
+
- lib/active_admin/batch_actions/views/batch_action_popover.rb
|
427
|
+
- lib/active_admin/batch_actions/views/batch_action_selector.rb
|
428
|
+
- lib/active_admin/batch_actions/views/selection_cells.rb
|
429
|
+
- lib/active_admin/callbacks.rb
|
430
|
+
- lib/active_admin/cancan_adapter.rb
|
431
|
+
- lib/active_admin/component.rb
|
432
|
+
- lib/active_admin/controller_action.rb
|
433
|
+
- lib/active_admin/csv_builder.rb
|
434
|
+
- lib/active_admin/deprecation.rb
|
435
|
+
- lib/active_admin/devise.rb
|
436
|
+
- lib/active_admin/dsl.rb
|
437
|
+
- lib/active_admin/engine.rb
|
438
|
+
- lib/active_admin/event.rb
|
439
|
+
- lib/active_admin/filters.rb
|
440
|
+
- lib/active_admin/filters/dsl.rb
|
441
|
+
- lib/active_admin/filters/forms.rb
|
442
|
+
- lib/active_admin/filters/formtastic_addons.rb
|
443
|
+
- lib/active_admin/filters/resource_extension.rb
|
444
|
+
- lib/active_admin/form_builder.rb
|
445
|
+
- lib/active_admin/helpers/collection.rb
|
446
|
+
- lib/active_admin/helpers/optional_display.rb
|
447
|
+
- lib/active_admin/helpers/scope_chain.rb
|
448
|
+
- lib/active_admin/helpers/settings.rb
|
449
|
+
- lib/active_admin/iconic.rb
|
450
|
+
- lib/active_admin/iconic/icons.rb
|
451
|
+
- lib/active_admin/inputs.rb
|
452
|
+
- lib/active_admin/inputs/datepicker_input.rb
|
453
|
+
- lib/active_admin/inputs/filter_base.rb
|
454
|
+
- lib/active_admin/inputs/filter_base/search_method_select.rb
|
455
|
+
- lib/active_admin/inputs/filter_boolean_input.rb
|
456
|
+
- lib/active_admin/inputs/filter_check_boxes_input.rb
|
457
|
+
- lib/active_admin/inputs/filter_date_range_input.rb
|
458
|
+
- lib/active_admin/inputs/filter_numeric_input.rb
|
459
|
+
- lib/active_admin/inputs/filter_select_input.rb
|
460
|
+
- lib/active_admin/inputs/filter_string_input.rb
|
461
|
+
- lib/active_admin/menu.rb
|
462
|
+
- lib/active_admin/menu_collection.rb
|
463
|
+
- lib/active_admin/menu_item.rb
|
464
|
+
- lib/active_admin/namespace.rb
|
465
|
+
- lib/active_admin/orm/active_record.rb
|
466
|
+
- lib/active_admin/orm/active_record/comments.rb
|
467
|
+
- lib/active_admin/orm/active_record/comments/comment.rb
|
468
|
+
- lib/active_admin/orm/active_record/comments/namespace_helper.rb
|
469
|
+
- lib/active_admin/orm/active_record/comments/resource_helper.rb
|
470
|
+
- lib/active_admin/orm/active_record/comments/show_page_helper.rb
|
471
|
+
- lib/active_admin/orm/active_record/comments/views.rb
|
472
|
+
- lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb
|
473
|
+
- lib/active_admin/orm/mongoid.rb
|
474
|
+
- lib/active_admin/orm/mongoid/.gitkeep
|
475
|
+
- lib/active_admin/page.rb
|
476
|
+
- lib/active_admin/page_controller.rb
|
477
|
+
- lib/active_admin/page_dsl.rb
|
478
|
+
- lib/active_admin/page_presenter.rb
|
479
|
+
- lib/active_admin/resource.rb
|
480
|
+
- lib/active_admin/resource/action_items.rb
|
481
|
+
- lib/active_admin/resource/belongs_to.rb
|
482
|
+
- lib/active_admin/resource/controllers.rb
|
483
|
+
- lib/active_admin/resource/menu.rb
|
484
|
+
- lib/active_admin/resource/naming.rb
|
485
|
+
- lib/active_admin/resource/page_presenters.rb
|
486
|
+
- lib/active_admin/resource/pagination.rb
|
487
|
+
- lib/active_admin/resource/routes.rb
|
488
|
+
- lib/active_admin/resource/scope_to.rb
|
489
|
+
- lib/active_admin/resource/scopes.rb
|
490
|
+
- lib/active_admin/resource/sidebars.rb
|
491
|
+
- lib/active_admin/resource_collection.rb
|
492
|
+
- lib/active_admin/resource_controller.rb
|
493
|
+
- lib/active_admin/resource_controller/action_builder.rb
|
494
|
+
- lib/active_admin/resource_controller/data_access.rb
|
495
|
+
- lib/active_admin/resource_controller/decorators.rb
|
496
|
+
- lib/active_admin/resource_controller/resource_class_methods.rb
|
497
|
+
- lib/active_admin/resource_controller/scoping.rb
|
498
|
+
- lib/active_admin/resource_controller/sidebars.rb
|
499
|
+
- lib/active_admin/resource_dsl.rb
|
500
|
+
- lib/active_admin/router.rb
|
501
|
+
- lib/active_admin/scope.rb
|
502
|
+
- lib/active_admin/sidebar_section.rb
|
503
|
+
- lib/active_admin/version.rb
|
504
|
+
- lib/active_admin/view_factory.rb
|
505
|
+
- lib/active_admin/view_helpers.rb
|
506
|
+
- lib/active_admin/view_helpers/active_admin_application_helper.rb
|
507
|
+
- lib/active_admin/view_helpers/assigns_with_indifferent_access_helper.rb
|
508
|
+
- lib/active_admin/view_helpers/auto_link_helper.rb
|
509
|
+
- lib/active_admin/view_helpers/breadcrumb_helper.rb
|
510
|
+
- lib/active_admin/view_helpers/display_helper.rb
|
511
|
+
- lib/active_admin/view_helpers/download_format_links_helper.rb
|
512
|
+
- lib/active_admin/view_helpers/fields_for.rb
|
513
|
+
- lib/active_admin/view_helpers/flash_helper.rb
|
514
|
+
- lib/active_admin/view_helpers/form_helper.rb
|
515
|
+
- lib/active_admin/view_helpers/icon_helper.rb
|
516
|
+
- lib/active_admin/view_helpers/method_or_proc_helper.rb
|
517
|
+
- lib/active_admin/view_helpers/sidebar_helper.rb
|
518
|
+
- lib/active_admin/view_helpers/title_helper.rb
|
519
|
+
- lib/active_admin/view_helpers/view_factory_helper.rb
|
520
|
+
- lib/active_admin/views.rb
|
521
|
+
- lib/active_admin/views/action_items.rb
|
522
|
+
- lib/active_admin/views/components/action_list_popover.rb
|
523
|
+
- lib/active_admin/views/components/attributes_table.rb
|
524
|
+
- lib/active_admin/views/components/blank_slate.rb
|
525
|
+
- lib/active_admin/views/components/columns.rb
|
526
|
+
- lib/active_admin/views/components/dropdown_menu.rb
|
527
|
+
- lib/active_admin/views/components/index_list.rb
|
528
|
+
- lib/active_admin/views/components/paginated_collection.rb
|
529
|
+
- lib/active_admin/views/components/panel.rb
|
530
|
+
- lib/active_admin/views/components/popover.rb
|
531
|
+
- lib/active_admin/views/components/scopes.rb
|
532
|
+
- lib/active_admin/views/components/sidebar_section.rb
|
533
|
+
- lib/active_admin/views/components/site_title.rb
|
534
|
+
- lib/active_admin/views/components/status_tag.rb
|
535
|
+
- lib/active_admin/views/components/table_for.rb
|
536
|
+
- lib/active_admin/views/footer.rb
|
537
|
+
- lib/active_admin/views/header.rb
|
538
|
+
- lib/active_admin/views/index_as_block.rb
|
539
|
+
- lib/active_admin/views/index_as_blog.rb
|
540
|
+
- lib/active_admin/views/index_as_grid.rb
|
541
|
+
- lib/active_admin/views/index_as_table.rb
|
542
|
+
- lib/active_admin/views/pages/base.rb
|
543
|
+
- lib/active_admin/views/pages/form.rb
|
544
|
+
- lib/active_admin/views/pages/index.rb
|
545
|
+
- lib/active_admin/views/pages/layout.rb
|
546
|
+
- lib/active_admin/views/pages/page.rb
|
547
|
+
- lib/active_admin/views/pages/show.rb
|
548
|
+
- lib/active_admin/views/tabbed_navigation.rb
|
549
|
+
- lib/active_admin/views/title_bar.rb
|
550
|
+
- lib/activeadmin.rb
|
551
|
+
- lib/generators/active_admin/assets/assets_generator.rb
|
552
|
+
- lib/generators/active_admin/assets/templates/active_admin.css.scss
|
553
|
+
- lib/generators/active_admin/assets/templates/active_admin.js.coffee
|
554
|
+
- lib/generators/active_admin/devise/devise_generator.rb
|
555
|
+
- lib/generators/active_admin/install/install_generator.rb
|
556
|
+
- lib/generators/active_admin/install/templates/active_admin.rb.erb
|
557
|
+
- lib/generators/active_admin/install/templates/admin_user.rb.erb
|
558
|
+
- lib/generators/active_admin/install/templates/dashboard.rb
|
559
|
+
- lib/generators/active_admin/install/templates/migrations/create_active_admin_comments.rb
|
560
|
+
- lib/generators/active_admin/resource/resource_generator.rb
|
561
|
+
- lib/generators/active_admin/resource/templates/admin.rb
|
562
|
+
- lib/ransack_ext.rb
|
563
|
+
- script/local
|
564
|
+
- script/use_rails
|
565
|
+
- spec/integration/default_namespace_spec.rb
|
566
|
+
- spec/integration/javascript_spec.rb
|
567
|
+
- spec/integration/memory_spec.rb
|
568
|
+
- spec/integration/stylesheets_spec.rb
|
569
|
+
- spec/javascripts/coffeescripts/jquery.aa.checkbox-toggler-spec.js.coffee
|
570
|
+
- spec/javascripts/coffeescripts/jquery.aa.popover-spec.js.coffee
|
571
|
+
- spec/javascripts/coffeescripts/jquery.aa.table-checkbox-toggler-spec.js.coffee
|
572
|
+
- spec/javascripts/compiled/jquery.aa.checkbox-toggler-spec.js
|
573
|
+
- spec/javascripts/compiled/jquery.aa.popover-spec.js
|
574
|
+
- spec/javascripts/compiled/jquery.aa.table-checkbox-toggler-spec.js
|
575
|
+
- spec/javascripts/fixtures/checkboxes.html
|
576
|
+
- spec/javascripts/fixtures/table_checkboxes.html
|
577
|
+
- spec/javascripts/helpers/SpecHelper.js
|
578
|
+
- spec/javascripts/helpers/vendor/jasmine-fixture-0.0.5.js
|
579
|
+
- spec/javascripts/helpers/vendor/jasmine-jquery.js
|
580
|
+
- spec/javascripts/helpers/vendor/sinon-1.2.0.js
|
581
|
+
- spec/javascripts/support/jasmine.yml
|
582
|
+
- spec/javascripts/support/jasmine_config.rb
|
583
|
+
- spec/javascripts/support/jasmine_runner.rb
|
584
|
+
- spec/javascripts/support/jquery-ui-1.8.16.custom.min.js
|
585
|
+
- spec/javascripts/support/jquery.min.js
|
586
|
+
- spec/spec_helper.rb
|
587
|
+
- spec/spec_helper_without_rails.rb
|
588
|
+
- spec/support/deferred_garbage_collection.rb
|
589
|
+
- spec/support/detect_rails_version.rb
|
590
|
+
- spec/support/integration_example_group.rb
|
591
|
+
- spec/support/jslint.yml
|
592
|
+
- spec/support/rails_template.rb
|
593
|
+
- spec/support/rails_template_with_data.rb
|
594
|
+
- spec/support/templates/admin/stores.rb
|
595
|
+
- spec/support/templates/cucumber.rb
|
596
|
+
- spec/support/templates/cucumber_with_reloading.rb
|
597
|
+
- spec/support/templates/en.yml
|
598
|
+
- spec/support/templates/post_decorator.rb
|
599
|
+
- spec/unit/abstract_view_factory_spec.rb
|
600
|
+
- spec/unit/action_builder_spec.rb
|
601
|
+
- spec/unit/active_admin_spec.rb
|
602
|
+
- spec/unit/application_spec.rb
|
603
|
+
- spec/unit/asset_registration_spec.rb
|
604
|
+
- spec/unit/authorization/authorization_adapter_spec.rb
|
605
|
+
- spec/unit/authorization/controller_authorization_spec.rb
|
606
|
+
- spec/unit/auto_link_spec.rb
|
607
|
+
- spec/unit/batch_actions/resource_spec.rb
|
608
|
+
- spec/unit/batch_actions/settings_spec.rb
|
609
|
+
- spec/unit/belongs_to_spec.rb
|
610
|
+
- spec/unit/cancan_adapter_spec.rb
|
611
|
+
- spec/unit/comments_spec.rb
|
612
|
+
- spec/unit/component_spec.rb
|
613
|
+
- spec/unit/config_shared_examples.rb
|
614
|
+
- spec/unit/controller_filters_spec.rb
|
615
|
+
- spec/unit/csv_builder_spec.rb
|
616
|
+
- spec/unit/devise_spec.rb
|
617
|
+
- spec/unit/dsl_spec.rb
|
618
|
+
- spec/unit/event_spec.rb
|
619
|
+
- spec/unit/filters/filter_form_builder_spec.rb
|
620
|
+
- spec/unit/filters/resource_spec.rb
|
621
|
+
- spec/unit/form_builder_spec.rb
|
622
|
+
- spec/unit/generators/install_spec.rb
|
623
|
+
- spec/unit/helpers/collection_spec.rb
|
624
|
+
- spec/unit/helpers/scope_chain_spec.rb
|
625
|
+
- spec/unit/helpers/settings_spec.rb
|
626
|
+
- spec/unit/menu_collection_spec.rb
|
627
|
+
- spec/unit/menu_item_spec.rb
|
628
|
+
- spec/unit/menu_spec.rb
|
629
|
+
- spec/unit/namespace/authorization_spec.rb
|
630
|
+
- spec/unit/namespace/register_page_spec.rb
|
631
|
+
- spec/unit/namespace/register_resource_spec.rb
|
632
|
+
- spec/unit/namespace_spec.rb
|
633
|
+
- spec/unit/page_controller_spec.rb
|
634
|
+
- spec/unit/page_spec.rb
|
635
|
+
- spec/unit/pretty_format_spec.rb
|
636
|
+
- spec/unit/resource/action_items_spec.rb
|
637
|
+
- spec/unit/resource/menu_spec.rb
|
638
|
+
- spec/unit/resource/naming_spec.rb
|
639
|
+
- spec/unit/resource/page_presenters_spec.rb
|
640
|
+
- spec/unit/resource/pagination_spec.rb
|
641
|
+
- spec/unit/resource/routes_spec.rb
|
642
|
+
- spec/unit/resource/scopes_spec.rb
|
643
|
+
- spec/unit/resource/sidebars_spec.rb
|
644
|
+
- spec/unit/resource_collection_spec.rb
|
645
|
+
- spec/unit/resource_controller/data_access_spec.rb
|
646
|
+
- spec/unit/resource_controller/sidebars_spec.rb
|
647
|
+
- spec/unit/resource_controller_spec.rb
|
648
|
+
- spec/unit/resource_registration_spec.rb
|
649
|
+
- spec/unit/resource_spec.rb
|
650
|
+
- spec/unit/routing_spec.rb
|
651
|
+
- spec/unit/scope_spec.rb
|
652
|
+
- spec/unit/settings_spec.rb
|
653
|
+
- spec/unit/view_factory_spec.rb
|
654
|
+
- spec/unit/view_helpers/breadcrumbs_spec.rb
|
655
|
+
- spec/unit/view_helpers/display_name_spec.rb
|
656
|
+
- spec/unit/view_helpers/download_format_links_helper_spec.rb
|
657
|
+
- spec/unit/view_helpers/fields_for_spec.rb
|
658
|
+
- spec/unit/view_helpers/form_helper_spec.rb
|
659
|
+
- spec/unit/view_helpers/method_or_proc_helper_spec.rb
|
660
|
+
- spec/unit/views/components/action_list_popover_spec.rb
|
661
|
+
- spec/unit/views/components/attributes_table_spec.rb
|
662
|
+
- spec/unit/views/components/batch_action_popover_spec.rb
|
663
|
+
- spec/unit/views/components/blank_slate_spec.rb
|
664
|
+
- spec/unit/views/components/columns_spec.rb
|
665
|
+
- spec/unit/views/components/index_list_spec.rb
|
666
|
+
- spec/unit/views/components/paginated_collection_spec.rb
|
667
|
+
- spec/unit/views/components/panel_spec.rb
|
668
|
+
- spec/unit/views/components/popover_spec.rb
|
669
|
+
- spec/unit/views/components/sidebar_section_spec.rb
|
670
|
+
- spec/unit/views/components/site_title_spec.rb
|
671
|
+
- spec/unit/views/components/status_tag_spec.rb
|
672
|
+
- spec/unit/views/components/table_for_spec.rb
|
673
|
+
- spec/unit/views/pages/form_spec.rb
|
674
|
+
- spec/unit/views/pages/layout_spec.rb
|
675
|
+
- spec/unit/views/pages/show_spec.rb
|
676
|
+
- spec/unit/views/tabbed_navigation_spec.rb
|
677
|
+
- tasks/docs.rake
|
678
|
+
- tasks/js.rake
|
679
|
+
- tasks/parallel_tests.rake
|
680
|
+
- tasks/test.rake
|
681
|
+
- tasks/yard.rake
|
682
|
+
homepage: http://activeadmin.info
|
683
|
+
licenses:
|
684
|
+
- MIT
|
685
|
+
metadata: {}
|
686
|
+
post_install_message:
|
687
|
+
rdoc_options: []
|
688
|
+
require_paths:
|
689
|
+
- lib
|
690
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
691
|
+
requirements:
|
692
|
+
- - '>='
|
693
|
+
- !ruby/object:Gem::Version
|
694
|
+
version: '0'
|
695
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
696
|
+
requirements:
|
697
|
+
- - '>'
|
698
|
+
- !ruby/object:Gem::Version
|
699
|
+
version: 1.3.1
|
700
|
+
requirements: []
|
701
|
+
rubyforge_project:
|
702
|
+
rubygems_version: 2.1.10
|
703
|
+
signing_key:
|
704
|
+
specification_version: 4
|
705
|
+
summary: The administration framework for Ruby on Rails.
|
706
|
+
test_files:
|
707
|
+
- features/action_item.feature
|
708
|
+
- features/authorization.feature
|
709
|
+
- features/authorization_cancan.feature
|
710
|
+
- features/belongs_to.feature
|
711
|
+
- features/breadcrumb.feature
|
712
|
+
- features/comments/commenting.feature
|
713
|
+
- features/comments/viewing_index.feature
|
714
|
+
- features/dashboard.feature
|
715
|
+
- features/decorators.feature
|
716
|
+
- features/development_reloading.feature
|
717
|
+
- features/edit_page.feature
|
718
|
+
- features/favicon.feature
|
719
|
+
- features/first_boot.feature
|
720
|
+
- features/global_navigation.feature
|
721
|
+
- features/i18n.feature
|
722
|
+
- features/index/batch_actions.feature
|
723
|
+
- features/index/filters.feature
|
724
|
+
- features/index/format_as_csv.feature
|
725
|
+
- features/index/formats.feature
|
726
|
+
- features/index/index_as_block.feature
|
727
|
+
- features/index/index_as_blog.feature
|
728
|
+
- features/index/index_as_grid.feature
|
729
|
+
- features/index/index_as_table.feature
|
730
|
+
- features/index/index_blank_slate.feature
|
731
|
+
- features/index/index_parameters.feature
|
732
|
+
- features/index/index_scope_to.feature
|
733
|
+
- features/index/index_scopes.feature
|
734
|
+
- features/index/page_title.feature
|
735
|
+
- features/index/pagination.feature
|
736
|
+
- features/index/switch_index_view.feature
|
737
|
+
- features/menu.feature
|
738
|
+
- features/new_page.feature
|
739
|
+
- features/registering_assets.feature
|
740
|
+
- features/registering_pages.feature
|
741
|
+
- features/registering_resources.feature
|
742
|
+
- features/root_to.feature
|
743
|
+
- features/show/default_content.feature
|
744
|
+
- features/show/page_title.feature
|
745
|
+
- features/sidebar_sections.feature
|
746
|
+
- features/site_title.feature
|
747
|
+
- features/specifying_actions.feature
|
748
|
+
- features/step_definitions/action_item_steps.rb
|
749
|
+
- features/step_definitions/action_link_steps.rb
|
750
|
+
- features/step_definitions/additional_web_steps.rb
|
751
|
+
- features/step_definitions/asset_steps.rb
|
752
|
+
- features/step_definitions/attribute_steps.rb
|
753
|
+
- features/step_definitions/batch_action_steps.rb
|
754
|
+
- features/step_definitions/breadcrumb_steps.rb
|
755
|
+
- features/step_definitions/comment_steps.rb
|
756
|
+
- features/step_definitions/configuration_steps.rb
|
757
|
+
- features/step_definitions/dashboard_steps.rb
|
758
|
+
- features/step_definitions/factory_steps.rb
|
759
|
+
- features/step_definitions/filter_steps.rb
|
760
|
+
- features/step_definitions/flash_steps.rb
|
761
|
+
- features/step_definitions/format_steps.rb
|
762
|
+
- features/step_definitions/i18n_steps.rb
|
763
|
+
- features/step_definitions/index_scope_steps.rb
|
764
|
+
- features/step_definitions/index_views_steps.rb
|
765
|
+
- features/step_definitions/layout_steps.rb
|
766
|
+
- features/step_definitions/member_link_steps.rb
|
767
|
+
- features/step_definitions/menu_steps.rb
|
768
|
+
- features/step_definitions/pagination_steps.rb
|
769
|
+
- features/step_definitions/sidebar_steps.rb
|
770
|
+
- features/step_definitions/site_title_steps.rb
|
771
|
+
- features/step_definitions/symbol_leak_steps.rb
|
772
|
+
- features/step_definitions/tab_steps.rb
|
773
|
+
- features/step_definitions/table_steps.rb
|
774
|
+
- features/step_definitions/user_steps.rb
|
775
|
+
- features/step_definitions/web_steps.rb
|
776
|
+
- features/sti_resource.feature
|
777
|
+
- features/support/env.rb
|
778
|
+
- features/support/paths.rb
|
779
|
+
- features/support/selectors.rb
|
780
|
+
- features/symbol_leak.feature
|
781
|
+
- features/users/logging_in.feature
|
782
|
+
- features/users/logging_out.feature
|
783
|
+
- features/users/resetting_password.feature
|
784
|
+
- spec/integration/default_namespace_spec.rb
|
785
|
+
- spec/integration/javascript_spec.rb
|
786
|
+
- spec/integration/memory_spec.rb
|
787
|
+
- spec/integration/stylesheets_spec.rb
|
788
|
+
- spec/javascripts/coffeescripts/jquery.aa.checkbox-toggler-spec.js.coffee
|
789
|
+
- spec/javascripts/coffeescripts/jquery.aa.popover-spec.js.coffee
|
790
|
+
- spec/javascripts/coffeescripts/jquery.aa.table-checkbox-toggler-spec.js.coffee
|
791
|
+
- spec/javascripts/compiled/jquery.aa.checkbox-toggler-spec.js
|
792
|
+
- spec/javascripts/compiled/jquery.aa.popover-spec.js
|
793
|
+
- spec/javascripts/compiled/jquery.aa.table-checkbox-toggler-spec.js
|
794
|
+
- spec/javascripts/fixtures/checkboxes.html
|
795
|
+
- spec/javascripts/fixtures/table_checkboxes.html
|
796
|
+
- spec/javascripts/helpers/SpecHelper.js
|
797
|
+
- spec/javascripts/helpers/vendor/jasmine-fixture-0.0.5.js
|
798
|
+
- spec/javascripts/helpers/vendor/jasmine-jquery.js
|
799
|
+
- spec/javascripts/helpers/vendor/sinon-1.2.0.js
|
800
|
+
- spec/javascripts/support/jasmine.yml
|
801
|
+
- spec/javascripts/support/jasmine_config.rb
|
802
|
+
- spec/javascripts/support/jasmine_runner.rb
|
803
|
+
- spec/javascripts/support/jquery-ui-1.8.16.custom.min.js
|
804
|
+
- spec/javascripts/support/jquery.min.js
|
805
|
+
- spec/spec_helper.rb
|
806
|
+
- spec/spec_helper_without_rails.rb
|
807
|
+
- spec/support/deferred_garbage_collection.rb
|
808
|
+
- spec/support/detect_rails_version.rb
|
809
|
+
- spec/support/integration_example_group.rb
|
810
|
+
- spec/support/jslint.yml
|
811
|
+
- spec/support/rails_template.rb
|
812
|
+
- spec/support/rails_template_with_data.rb
|
813
|
+
- spec/support/templates/admin/stores.rb
|
814
|
+
- spec/support/templates/cucumber.rb
|
815
|
+
- spec/support/templates/cucumber_with_reloading.rb
|
816
|
+
- spec/support/templates/en.yml
|
817
|
+
- spec/support/templates/post_decorator.rb
|
818
|
+
- spec/unit/abstract_view_factory_spec.rb
|
819
|
+
- spec/unit/action_builder_spec.rb
|
820
|
+
- spec/unit/active_admin_spec.rb
|
821
|
+
- spec/unit/application_spec.rb
|
822
|
+
- spec/unit/asset_registration_spec.rb
|
823
|
+
- spec/unit/authorization/authorization_adapter_spec.rb
|
824
|
+
- spec/unit/authorization/controller_authorization_spec.rb
|
825
|
+
- spec/unit/auto_link_spec.rb
|
826
|
+
- spec/unit/batch_actions/resource_spec.rb
|
827
|
+
- spec/unit/batch_actions/settings_spec.rb
|
828
|
+
- spec/unit/belongs_to_spec.rb
|
829
|
+
- spec/unit/cancan_adapter_spec.rb
|
830
|
+
- spec/unit/comments_spec.rb
|
831
|
+
- spec/unit/component_spec.rb
|
832
|
+
- spec/unit/config_shared_examples.rb
|
833
|
+
- spec/unit/controller_filters_spec.rb
|
834
|
+
- spec/unit/csv_builder_spec.rb
|
835
|
+
- spec/unit/devise_spec.rb
|
836
|
+
- spec/unit/dsl_spec.rb
|
837
|
+
- spec/unit/event_spec.rb
|
838
|
+
- spec/unit/filters/filter_form_builder_spec.rb
|
839
|
+
- spec/unit/filters/resource_spec.rb
|
840
|
+
- spec/unit/form_builder_spec.rb
|
841
|
+
- spec/unit/generators/install_spec.rb
|
842
|
+
- spec/unit/helpers/collection_spec.rb
|
843
|
+
- spec/unit/helpers/scope_chain_spec.rb
|
844
|
+
- spec/unit/helpers/settings_spec.rb
|
845
|
+
- spec/unit/menu_collection_spec.rb
|
846
|
+
- spec/unit/menu_item_spec.rb
|
847
|
+
- spec/unit/menu_spec.rb
|
848
|
+
- spec/unit/namespace/authorization_spec.rb
|
849
|
+
- spec/unit/namespace/register_page_spec.rb
|
850
|
+
- spec/unit/namespace/register_resource_spec.rb
|
851
|
+
- spec/unit/namespace_spec.rb
|
852
|
+
- spec/unit/page_controller_spec.rb
|
853
|
+
- spec/unit/page_spec.rb
|
854
|
+
- spec/unit/pretty_format_spec.rb
|
855
|
+
- spec/unit/resource/action_items_spec.rb
|
856
|
+
- spec/unit/resource/menu_spec.rb
|
857
|
+
- spec/unit/resource/naming_spec.rb
|
858
|
+
- spec/unit/resource/page_presenters_spec.rb
|
859
|
+
- spec/unit/resource/pagination_spec.rb
|
860
|
+
- spec/unit/resource/routes_spec.rb
|
861
|
+
- spec/unit/resource/scopes_spec.rb
|
862
|
+
- spec/unit/resource/sidebars_spec.rb
|
863
|
+
- spec/unit/resource_collection_spec.rb
|
864
|
+
- spec/unit/resource_controller/data_access_spec.rb
|
865
|
+
- spec/unit/resource_controller/sidebars_spec.rb
|
866
|
+
- spec/unit/resource_controller_spec.rb
|
867
|
+
- spec/unit/resource_registration_spec.rb
|
868
|
+
- spec/unit/resource_spec.rb
|
869
|
+
- spec/unit/routing_spec.rb
|
870
|
+
- spec/unit/scope_spec.rb
|
871
|
+
- spec/unit/settings_spec.rb
|
872
|
+
- spec/unit/view_factory_spec.rb
|
873
|
+
- spec/unit/view_helpers/breadcrumbs_spec.rb
|
874
|
+
- spec/unit/view_helpers/display_name_spec.rb
|
875
|
+
- spec/unit/view_helpers/download_format_links_helper_spec.rb
|
876
|
+
- spec/unit/view_helpers/fields_for_spec.rb
|
877
|
+
- spec/unit/view_helpers/form_helper_spec.rb
|
878
|
+
- spec/unit/view_helpers/method_or_proc_helper_spec.rb
|
879
|
+
- spec/unit/views/components/action_list_popover_spec.rb
|
880
|
+
- spec/unit/views/components/attributes_table_spec.rb
|
881
|
+
- spec/unit/views/components/batch_action_popover_spec.rb
|
882
|
+
- spec/unit/views/components/blank_slate_spec.rb
|
883
|
+
- spec/unit/views/components/columns_spec.rb
|
884
|
+
- spec/unit/views/components/index_list_spec.rb
|
885
|
+
- spec/unit/views/components/paginated_collection_spec.rb
|
886
|
+
- spec/unit/views/components/panel_spec.rb
|
887
|
+
- spec/unit/views/components/popover_spec.rb
|
888
|
+
- spec/unit/views/components/sidebar_section_spec.rb
|
889
|
+
- spec/unit/views/components/site_title_spec.rb
|
890
|
+
- spec/unit/views/components/status_tag_spec.rb
|
891
|
+
- spec/unit/views/components/table_for_spec.rb
|
892
|
+
- spec/unit/views/pages/form_spec.rb
|
893
|
+
- spec/unit/views/pages/layout_spec.rb
|
894
|
+
- spec/unit/views/pages/show_spec.rb
|
895
|
+
- spec/unit/views/tabbed_navigation_spec.rb
|
896
|
+
has_rdoc:
|