activeadmin 0.2.2 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activeadmin might be problematic. Click here for more details.
- data/.gitignore +34 -0
- data/.travis.yml +4 -0
- data/.yardopts +8 -0
- data/CHANGELOG.md +177 -0
- data/Gemfile +21 -32
- data/Guardfile +8 -0
- data/README.rdoc +75 -14
- data/Rakefile +7 -100
- data/activeadmin.gemspec +21 -353
- data/{lib/generators/active_admin/install/templates/images → 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/{lib/generators/active_admin/install/templates/images → app/assets/images/active_admin}/loading.gif +0 -0
- data/{lib/generators/active_admin/install/templates/images → app/assets/images/active_admin}/nested_menu_arrow.gif +0 -0
- data/{lib/generators/active_admin/install/templates/images → app/assets/images/active_admin}/nested_menu_arrow_dark.gif +0 -0
- data/{lib/generators/active_admin/install/templates/images → app/assets/images/active_admin}/orderable.png +0 -0
- data/app/assets/javascripts/active_admin/base.js +12 -0
- data/{lib/generators/active_admin/install/templates/active_admin_vendor.js → app/assets/javascripts/active_admin/vendor.js} +0 -0
- data/{lib/active_admin/stylesheets/active_admin.scss → app/assets/stylesheets/active_admin/_base.css.scss} +58 -82
- data/{lib/active_admin/stylesheets/active_admin/_forms.scss → app/assets/stylesheets/active_admin/_forms.css.scss} +94 -5
- data/{lib/active_admin/stylesheets/active_admin/_header.scss → app/assets/stylesheets/active_admin/_header.css.scss} +13 -11
- data/app/assets/stylesheets/active_admin/_mixins.css.scss +1 -0
- data/{lib/active_admin/stylesheets/active_admin/_typography.scss → app/assets/stylesheets/active_admin/_typography.css.scss} +0 -0
- data/{lib/active_admin/stylesheets/active_admin/_comments.scss → app/assets/stylesheets/active_admin/components/_comments.css.scss} +0 -0
- data/app/assets/stylesheets/active_admin/components/_date_picker.css.scss +123 -0
- data/app/assets/stylesheets/active_admin/components/_flash_messages.css.scss +38 -0
- data/{lib/active_admin/stylesheets/active_admin/mixins/_all.scss → app/assets/stylesheets/active_admin/mixins/_all.css.scss} +0 -0
- data/{lib/active_admin/stylesheets/active_admin/mixins/_buttons.scss → app/assets/stylesheets/active_admin/mixins/_buttons.css.scss} +0 -0
- data/{lib/active_admin/stylesheets/active_admin/mixins/_gradients.scss → app/assets/stylesheets/active_admin/mixins/_gradients.css.scss} +8 -0
- data/{lib/active_admin/stylesheets/active_admin/mixins/_icons.scss → app/assets/stylesheets/active_admin/mixins/_icons.css.scss} +0 -0
- data/{lib/active_admin/stylesheets/active_admin/mixins/_reset.scss → app/assets/stylesheets/active_admin/mixins/_reset.css.scss} +0 -0
- data/{lib/active_admin/stylesheets/active_admin/mixins/_rounded.scss → app/assets/stylesheets/active_admin/mixins/_rounded.css.scss} +0 -0
- data/{lib/active_admin/stylesheets/active_admin/mixins/_sections.scss → app/assets/stylesheets/active_admin/mixins/_sections.css.scss} +9 -2
- data/{lib/active_admin/stylesheets/active_admin/mixins/_shadows.scss → app/assets/stylesheets/active_admin/mixins/_shadows.css.scss} +1 -1
- data/{lib/active_admin/stylesheets/active_admin/mixins/_variables.scss → app/assets/stylesheets/active_admin/mixins/_variables.css.scss} +12 -3
- data/{lib/active_admin/views/templates/active_admin_dashboard → app/views/active_admin/dashboard}/index.html.arb +0 -0
- data/{lib/active_admin/views/templates → app/views}/active_admin/devise/mailer/reset_password_instructions.html.erb +0 -0
- data/{lib/active_admin/views/templates → app/views}/active_admin/devise/mailer/unlock_instructions.html.erb +0 -0
- data/{lib/active_admin/views/templates → app/views}/active_admin/devise/passwords/edit.html.erb +0 -0
- data/{lib/active_admin/views/templates → app/views}/active_admin/devise/passwords/new.html.erb +0 -0
- data/{lib/active_admin/views/templates → app/views}/active_admin/devise/sessions/new.html.erb +1 -1
- data/{lib/active_admin/views/templates → app/views}/active_admin/devise/shared/_links.erb +0 -0
- data/{lib/active_admin/views/templates → app/views}/active_admin/devise/unlocks/new.html.erb +0 -0
- data/{lib/active_admin/views/templates/active_admin_default → app/views/active_admin/resource}/edit.html.arb +0 -0
- data/app/views/active_admin/resource/index.csv.erb +20 -0
- data/{lib/active_admin/views/templates/active_admin_default → app/views/active_admin/resource}/index.html.arb +0 -0
- data/{lib/active_admin/views/templates/active_admin_default → app/views/active_admin/resource}/new.html.arb +0 -0
- data/{lib/active_admin/views/templates/active_admin_default → app/views/active_admin/resource}/show.html.arb +0 -0
- data/app/views/layouts/active_admin.html.arb +1 -0
- data/{lib/active_admin/views/templates → app/views}/layouts/active_admin_logged_out.html.erb +8 -4
- data/docs/0-installation.md +50 -0
- data/docs/1-general-configuration.md +43 -0
- data/docs/2-resource-customization.md +35 -0
- data/docs/3-index-pages.md +55 -0
- data/docs/3-index-pages/index-as-block.md +16 -0
- data/docs/3-index-pages/index-as-blog.md +61 -0
- data/docs/3-index-pages/index-as-grid.md +21 -0
- data/docs/3-index-pages/index-as-table.md +90 -0
- data/docs/4-csv-format.md +14 -0
- data/docs/5-forms.md +39 -0
- data/docs/6-show-screens.md +22 -0
- data/docs/7-sidebars.md +35 -0
- data/docs/8-custom-actions.md +123 -0
- data/features/comments/commenting.feature +31 -4
- data/features/edit_page.feature +30 -1
- data/features/index/filters.feature +35 -0
- data/features/index/format_as_csv.feature +46 -0
- data/features/index/formats.feature +2 -0
- data/features/index/index_as_block.feature +1 -1
- data/features/index/index_as_grid.feature +1 -1
- data/features/index/index_as_table.feature +2 -0
- data/features/index/index_blank_slate.feature +56 -0
- data/features/index/pagination.feature +0 -6
- data/features/registering_assets.feature +2 -2
- data/features/sidebar_sections.feature +7 -8
- data/features/specifying_actions.feature +72 -1
- data/features/step_definitions/action_item_steps.rb +2 -2
- data/features/step_definitions/additional_web_steps.rb +26 -16
- data/features/step_definitions/attribute_steps.rb +5 -7
- data/features/step_definitions/configuration_steps.rb +9 -9
- data/features/step_definitions/factory_steps.rb +4 -3
- data/features/step_definitions/format_steps.rb +29 -1
- data/features/step_definitions/layout_steps.rb +3 -0
- data/features/step_definitions/menu_steps.rb +2 -2
- data/features/step_definitions/sidebar_steps.rb +1 -5
- data/features/step_definitions/user_steps.rb +8 -2
- data/features/step_definitions/web_steps.rb +82 -90
- data/features/sti_resource.feature +12 -0
- data/features/support/env.rb +12 -10
- data/features/support/paths.rb +2 -0
- data/features/support/selectors.rb +45 -0
- data/lib/active_admin.rb +33 -263
- data/lib/active_admin/application.rb +228 -0
- data/lib/active_admin/arbre.rb +10 -10
- data/lib/active_admin/arbre/{html.rb → builder.rb} +29 -2
- data/lib/active_admin/arbre/context.rb +8 -0
- data/lib/active_admin/arbre/{attributes.rb → html/attributes.rb} +0 -0
- data/lib/active_admin/arbre/{class_list.rb → html/class_list.rb} +0 -0
- data/lib/active_admin/arbre/{collection.rb → html/collection.rb} +0 -0
- data/lib/active_admin/arbre/{document.rb → html/document.rb} +0 -0
- data/lib/active_admin/arbre/{element.rb → html/element.rb} +6 -6
- data/lib/active_admin/arbre/{html5_elements.rb → html/html5_elements.rb} +0 -0
- data/lib/active_admin/arbre/{tag.rb → html/tag.rb} +0 -0
- data/lib/active_admin/arbre/{text_node.rb → html/text_node.rb} +0 -0
- data/lib/active_admin/asset_registration.rb +1 -1
- data/lib/active_admin/callbacks.rb +5 -3
- data/lib/active_admin/comments.rb +3 -3
- data/lib/active_admin/comments/comment.rb +6 -0
- data/lib/active_admin/comments/configuration.rb +8 -6
- data/lib/active_admin/comments/namespace_helper.rb +1 -1
- data/lib/active_admin/comments/views/active_admin_comments.rb +1 -1
- data/lib/active_admin/csv_builder.rb +45 -0
- data/lib/active_admin/dashboards.rb +1 -1
- data/lib/active_admin/dashboards/dashboard_controller.rb +3 -10
- data/lib/active_admin/dependency_checker.rb +28 -0
- data/lib/active_admin/deprecation.rb +36 -0
- data/lib/active_admin/devise.rb +14 -3
- data/lib/active_admin/dsl.rb +26 -4
- data/lib/active_admin/engine.rb +4 -0
- data/lib/active_admin/form_builder.rb +18 -9
- data/lib/active_admin/helpers/scope_chain.rb +23 -0
- data/lib/active_admin/helpers/settings.rb +70 -0
- data/lib/active_admin/locales/cs.yml +34 -0
- data/lib/active_admin/locales/da.yml +28 -0
- data/lib/active_admin/locales/en.yml +40 -0
- data/lib/active_admin/locales/es.yml +40 -0
- data/lib/active_admin/locales/fr.yml +40 -0
- data/lib/active_admin/locales/it.yml +39 -0
- data/lib/active_admin/locales/pl.yml +34 -0
- data/lib/active_admin/locales/pt-BR.yml +41 -0
- data/lib/active_admin/locales/ru.yml +40 -0
- data/lib/active_admin/locales/zh_cn.yml +40 -0
- data/lib/active_admin/menu_item.rb +6 -0
- data/lib/active_admin/namespace.rb +14 -5
- data/lib/active_admin/reloader.rb +30 -0
- data/lib/active_admin/renderer.rb +1 -1
- data/lib/active_admin/resource.rb +45 -88
- data/lib/active_admin/resource/action_items.rb +88 -0
- data/lib/active_admin/resource/menu.rb +45 -0
- data/lib/active_admin/resource/naming.rb +46 -0
- data/lib/active_admin/resource/scopes.rb +33 -0
- data/lib/active_admin/resource/sidebars.rb +36 -0
- data/lib/active_admin/resource_controller.rb +32 -37
- data/lib/active_admin/resource_controller/action_builder.rb +1 -1
- data/lib/active_admin/resource_controller/actions.rb +66 -40
- data/lib/active_admin/resource_controller/callbacks.rb +1 -1
- data/lib/active_admin/resource_controller/collection.rb +9 -14
- data/lib/active_admin/resource_controller/filters.rb +1 -1
- data/lib/active_admin/resource_controller/form.rb +1 -1
- data/lib/active_admin/resource_controller/menu.rb +1 -1
- data/lib/active_admin/resource_controller/page_configurations.rb +2 -2
- data/lib/active_admin/resource_controller/scoping.rb +1 -1
- data/lib/active_admin/resource_controller/sidebars.rb +1 -21
- data/lib/active_admin/router.rb +85 -0
- data/lib/active_admin/sass/active_admin.scss +3 -0
- data/lib/active_admin/sass/css_loader.rb +16 -0
- data/lib/active_admin/sass/helpers.rb +45 -0
- data/lib/active_admin/scope.rb +16 -2
- data/lib/active_admin/sidebar_section.rb +41 -0
- data/lib/active_admin/stylesheets/active_admin/mixins/_utilities.scss +0 -0
- data/lib/active_admin/version.rb +1 -1
- data/lib/active_admin/view_factory.rb +5 -3
- data/lib/active_admin/view_helpers.rb +1 -2
- data/lib/active_admin/view_helpers/active_admin_application_helper.rb +12 -0
- data/lib/active_admin/view_helpers/auto_link_helper.rb +2 -1
- data/lib/active_admin/view_helpers/display_helper.rb +1 -1
- data/lib/active_admin/view_helpers/filter_form_helper.rb +26 -14
- data/lib/active_admin/view_helpers/form_helper.rb +1 -0
- data/lib/active_admin/view_helpers/view_factory_helper.rb +1 -1
- data/lib/active_admin/views/components/attributes_table.rb +2 -2
- data/lib/active_admin/views/components/blank_slate.rb +17 -0
- data/lib/active_admin/views/components/columns.rb +1 -3
- data/lib/active_admin/views/components/paginated_collection.rb +26 -8
- data/lib/active_admin/views/components/scopes.rb +13 -8
- data/lib/active_admin/views/components/sidebar_section.rb +1 -3
- data/lib/active_admin/views/components/status_tag.rb +55 -0
- data/lib/active_admin/views/components/table_for.rb +25 -6
- data/lib/active_admin/views/header_renderer.rb +20 -4
- data/lib/active_admin/views/index_as_block.rb +12 -7
- data/lib/active_admin/views/index_as_blog.rb +61 -21
- data/lib/active_admin/views/index_as_grid.rb +22 -1
- data/lib/active_admin/views/index_as_table.rb +97 -6
- data/lib/active_admin/views/pages/base.rb +20 -9
- data/lib/active_admin/views/pages/dashboard.rb +7 -4
- data/lib/active_admin/views/pages/edit.rb +3 -2
- data/lib/active_admin/views/pages/index.rb +30 -5
- data/lib/active_admin/views/pages/layout.rb +26 -0
- data/lib/active_admin/views/pages/new.rb +3 -2
- data/lib/active_admin/views/pages/show.rb +1 -1
- data/lib/active_admin/views/tabbed_navigation.rb +94 -0
- data/lib/generators/active_admin/assets/assets_generator.rb +21 -0
- data/lib/generators/active_admin/assets/templates/3.0/active_admin.js +427 -0
- data/lib/generators/active_admin/assets/templates/3.1/active_admin.css.scss +6 -0
- data/lib/generators/active_admin/assets/templates/3.1/active_admin.js +1 -0
- data/lib/generators/active_admin/assets/templates/dashboards.rb +36 -0
- data/lib/generators/active_admin/install/install_generator.rb +2 -4
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +26 -4
- data/lib/generators/active_admin/install/templates/dashboards.rb +4 -2
- data/lib/generators/active_admin/install/templates/migrations/2_move_admin_notes_to_comments.rb +2 -2
- data/script/local +44 -0
- data/script/use_rails +46 -0
- data/spec/integration/belongs_to_spec.rb +1 -1
- data/spec/integration/default_namespace.rb +77 -0
- data/spec/integration/javascript_spec.rb +20 -0
- data/spec/integration/stylesheets_spec.rb +41 -0
- data/spec/spec_helper.rb +21 -11
- data/spec/support/detect_rails_version.rb +10 -0
- data/spec/support/integration_example_group.rb +1 -1
- data/spec/support/jslint.yml +80 -0
- data/spec/support/rails_template.rb +1 -1
- data/spec/support/rails_template_with_data.rb +2 -1
- data/spec/support/templates/cucumber.rb +0 -4
- data/spec/unit/active_admin_spec.rb +8 -44
- data/spec/unit/application_spec.rb +78 -0
- data/spec/unit/arbre/context_spec.rb +22 -0
- data/spec/unit/arbre/html/element_finder_methods_spec.rb +2 -2
- data/spec/unit/arbre/html/element_spec.rb +2 -3
- data/spec/unit/arbre/html/tag_attributes_spec.rb +2 -2
- data/spec/unit/arbre/html/tag_spec.rb +2 -2
- data/spec/unit/arbre/html_spec.rb +2 -3
- data/spec/unit/auto_link_spec.rb +2 -1
- data/spec/unit/belongs_to_spec.rb +2 -1
- data/spec/unit/comments_spec.rb +43 -39
- data/spec/unit/controller_filters_spec.rb +11 -3
- data/spec/unit/csv_builder_spec.rb +83 -0
- data/spec/unit/devise_spec.rb +66 -0
- data/spec/unit/display_name_spec.rb +2 -2
- data/spec/unit/filter_form_builder_spec.rb +6 -3
- data/spec/unit/form_builder_spec.rb +20 -2
- data/spec/unit/generators/install_rails_3_1_spec.rb +16 -0
- data/spec/unit/helpers/scope_chain_spec.rb +36 -0
- data/spec/unit/helpers/settings_spec.rb +30 -0
- data/spec/unit/menu_item_spec.rb +6 -0
- data/spec/unit/namespace_spec.rb +68 -19
- data/spec/unit/rails_spec.rb +43 -0
- data/spec/unit/registration_spec.rb +18 -27
- data/spec/unit/reloader_spec.rb +28 -0
- data/spec/unit/resource/action_items_spec.rb +62 -0
- data/spec/unit/resource/menu_spec.rb +80 -0
- data/spec/unit/resource/naming_spec.rb +64 -0
- data/spec/unit/resource/scopes_spec.rb +30 -0
- data/spec/unit/resource/sidebars_spec.rb +50 -0
- data/spec/unit/resource_controller/collection_spec.rb +1 -1
- data/spec/unit/resource_controller_spec.rb +29 -24
- data/spec/unit/resource_spec.rb +78 -94
- data/spec/unit/sass/helpers_spec.rb +47 -0
- data/spec/unit/scope_spec.rb +11 -1
- data/spec/unit/view_factory_spec.rb +4 -1
- data/spec/unit/{components → views/components}/attributes_table_spec.rb +2 -2
- data/spec/unit/views/components/blank_slate_spec.rb +15 -0
- data/spec/unit/{components → views/components}/columns_spec.rb +2 -2
- data/spec/unit/{components → views/components}/panel_spec.rb +1 -3
- data/spec/unit/{components → views/components}/sidebar_section_spec.rb +3 -3
- data/spec/unit/views/components/status_tag_spec.rb +79 -0
- data/spec/unit/{components → views/components}/table_for_spec.rb +2 -1
- data/spec/unit/views/pages/layout_spec.rb +22 -0
- data/spec/unit/views/tabbed_navigation_spec.rb +125 -0
- data/tasks/docs.rake +39 -0
- data/tasks/test.rake +55 -0
- data/tasks/yard.rake +6 -0
- metadata +310 -189
- data/CHANGELOG.rdoc +0 -76
- data/lib/active_admin/action_items.rb +0 -37
- data/lib/active_admin/sidebar.rb +0 -39
- data/lib/active_admin/stylesheets/active_admin/_flash_messages.scss +0 -13
- data/lib/active_admin/view_helpers/status_tag_helper.rb +0 -13
- data/lib/active_admin/view_helpers/table_helper.rb +0 -12
- data/lib/active_admin/views/tabs_renderer.rb +0 -52
- data/lib/active_admin/views/templates/active_admin_default/index.csv.erb +0 -2
- data/lib/active_admin/views/templates/layouts/active_admin.html.erb +0 -39
- data/lib/generators/active_admin/install/templates/active_admin.js +0 -51
- data/spec/controllers/index_as_csv_spec.rb +0 -35
- data/spec/unit/action_items_spec.rb +0 -27
- data/spec/unit/tabs_renderer_spec.rb +0 -56
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ActiveAdmin::Views::BlankSlate do
|
4
|
+
|
5
|
+
setup_arbre_context!
|
6
|
+
|
7
|
+
describe "#blank_slate" do
|
8
|
+
subject { blank_slate("There are no Posts yet. <a href=\"/posts/new\">Create one</a></span>") }
|
9
|
+
|
10
|
+
its(:tag_name) { should eql 'div' }
|
11
|
+
its(:class_list) { should include('blank_slate_container') }
|
12
|
+
|
13
|
+
its(:content) { should include '<span class="blank_slate">There are no Posts yet. <a href="/posts/new">Create one</a></span>' }
|
14
|
+
end
|
15
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
describe ActiveAdmin::Views::SidebarSection do
|
4
|
-
|
5
|
-
|
4
|
+
|
5
|
+
setup_arbre_context!
|
6
6
|
|
7
7
|
let(:section) do
|
8
|
-
ActiveAdmin::
|
8
|
+
ActiveAdmin::SidebarSection.new(:help) do
|
9
9
|
span "Help Me"
|
10
10
|
end
|
11
11
|
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ActiveAdmin::Views::StatusTag do
|
4
|
+
|
5
|
+
setup_arbre_context!
|
6
|
+
|
7
|
+
describe "#status_tag" do
|
8
|
+
subject { status_tag(nil) }
|
9
|
+
|
10
|
+
its(:tag_name) { should == 'span' }
|
11
|
+
its(:class_list) { should include('status') }
|
12
|
+
|
13
|
+
context "when status is 'completed'" do
|
14
|
+
subject { status_tag('completed') }
|
15
|
+
|
16
|
+
its(:tag_name) { should == 'span' }
|
17
|
+
its(:class_list) { should include('status') }
|
18
|
+
its(:class_list) { should include('completed') }
|
19
|
+
its(:content) { should == 'Completed' }
|
20
|
+
end
|
21
|
+
|
22
|
+
context "when status is 'in_progress'" do
|
23
|
+
subject { status_tag('in_progress') }
|
24
|
+
|
25
|
+
its(:class_list) { should include('in_progress') }
|
26
|
+
its(:content) { should == 'In Progress' }
|
27
|
+
end
|
28
|
+
|
29
|
+
context "when status is 'In progress'" do
|
30
|
+
subject { status_tag('In progress') }
|
31
|
+
|
32
|
+
its(:class_list) { should include('in_progress') }
|
33
|
+
its(:content) { should == 'In Progress' }
|
34
|
+
end
|
35
|
+
|
36
|
+
context "when status is an empty string" do
|
37
|
+
subject { status_tag('') }
|
38
|
+
|
39
|
+
its(:class_list) { should include('status') }
|
40
|
+
its(:content) { should == '' }
|
41
|
+
end
|
42
|
+
|
43
|
+
context "when status is nil" do
|
44
|
+
subject { status_tag(nil) }
|
45
|
+
|
46
|
+
its(:class_list) { should include('status') }
|
47
|
+
its(:content) { should == '' }
|
48
|
+
end
|
49
|
+
|
50
|
+
context "when status is 'Active' and type is :ok" do
|
51
|
+
subject { status_tag('Active', :ok) }
|
52
|
+
|
53
|
+
its(:class_list) { should include('status') }
|
54
|
+
its(:class_list) { should include('active') }
|
55
|
+
its(:class_list) { should include('ok') }
|
56
|
+
end
|
57
|
+
|
58
|
+
context "when status is 'Active' and class is 'ok'" do
|
59
|
+
subject { status_tag('Active', :class => 'ok') }
|
60
|
+
|
61
|
+
its(:class_list) { should include('status') }
|
62
|
+
its(:class_list) { should include('active') }
|
63
|
+
its(:class_list) { should include('ok') }
|
64
|
+
end
|
65
|
+
|
66
|
+
context "when status is 'So useless', type is :ok, class is 'woot awesome' and id is 'useless'" do
|
67
|
+
subject { status_tag('So useless', :ok, :class => 'woot awesome', :id => 'useless') }
|
68
|
+
|
69
|
+
its(:content) { should == 'So Useless' }
|
70
|
+
its(:class_list) { should include('status') }
|
71
|
+
its(:class_list) { should include('ok') }
|
72
|
+
its(:class_list) { should include('so_useless') }
|
73
|
+
its(:class_list) { should include('woot') }
|
74
|
+
its(:class_list) { should include('awesome') }
|
75
|
+
its(:id) { should == 'useless' }
|
76
|
+
end
|
77
|
+
|
78
|
+
end # describe "#status_tag"
|
79
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ActiveAdmin::Views::Pages::Layout do
|
4
|
+
|
5
|
+
describe "the page title" do
|
6
|
+
|
7
|
+
it "should be the @page_title if assigned in the controller" do
|
8
|
+
assigns = {:page_title => "My Page Title"}
|
9
|
+
layout = ActiveAdmin::Views::Pages::Layout.new(assigns, nil)
|
10
|
+
layout.title.should == "My Page Title"
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should be the default translation" do
|
14
|
+
assigns = {}
|
15
|
+
helpers = mock(:params => {:action => 'edit'})
|
16
|
+
layout = ActiveAdmin::Views::Pages::Layout.new(assigns, helpers)
|
17
|
+
layout.title.should == "Edit"
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
@@ -0,0 +1,125 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ActiveAdmin::Views::TabbedNavigation do
|
4
|
+
|
5
|
+
setup_arbre_context!
|
6
|
+
include ActiveAdmin::ViewHelpers
|
7
|
+
|
8
|
+
let(:menu){ ActiveAdmin::Menu.new }
|
9
|
+
let(:tabbed_navigation){ insert_tag(ActiveAdmin::Views::TabbedNavigation, menu) }
|
10
|
+
let(:html) { tabbed_navigation.to_s }
|
11
|
+
|
12
|
+
before do
|
13
|
+
helpers.stub!(:admin_logged_in?).and_return(false)
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "rendering a menu" do
|
17
|
+
|
18
|
+
before do
|
19
|
+
menu.add "Blog Posts", "/admin/blog-posts"
|
20
|
+
menu.add "Reports", "/admin/reports"
|
21
|
+
reports = menu["Reports"]
|
22
|
+
reports.add "A Sub Reports", "/admin/a-sub-reports"
|
23
|
+
reports.add "B Sub Reports", "/admin/b-sub-reports"
|
24
|
+
menu.add "Administration", "/admin/administration"
|
25
|
+
administration = menu["Administration"]
|
26
|
+
administration.add "User administration", '/admin/user-administration', 10, :if => proc { false }
|
27
|
+
menu.add "Management", "#"
|
28
|
+
management = menu["Management"]
|
29
|
+
management.add "Order management", '/admin/order-management', 10, :if => proc { false }
|
30
|
+
management.add "Bill management", '/admin/bill-management', 10, :if => :admin_logged_in?
|
31
|
+
end
|
32
|
+
|
33
|
+
it "should generate a ul" do
|
34
|
+
html.should have_tag("ul")
|
35
|
+
end
|
36
|
+
|
37
|
+
it "should generate an li for each item" do
|
38
|
+
html.should have_tag("li", :parent => { :tag => "ul" })
|
39
|
+
end
|
40
|
+
|
41
|
+
it "should generate a link for each item" do
|
42
|
+
html.should have_tag("a", "Blog Posts", :attributes => { :href => '/admin/blog-posts' })
|
43
|
+
end
|
44
|
+
|
45
|
+
it "should generate a nested list for children" do
|
46
|
+
html.should have_tag("ul", :parent => { :tag => "li" })
|
47
|
+
end
|
48
|
+
|
49
|
+
it "should generate a nested list with li for each child" do
|
50
|
+
html.should have_tag("li", :parent => { :tag => "ul" }, :attributes => {:id => "a_sub_reports"})
|
51
|
+
html.should have_tag("li", :parent => { :tag => "ul" }, :attributes => {:id => "b_sub_reports"})
|
52
|
+
end
|
53
|
+
|
54
|
+
it "should not generate a link for user administration" do
|
55
|
+
html.should_not have_tag("a", "User administration", :attributes => { :href => '/admin/user-administration' })
|
56
|
+
end
|
57
|
+
|
58
|
+
it "should generate the administration parent menu" do
|
59
|
+
html.should have_tag("a", "Administration", :attributes => { :href => '/admin/administration' })
|
60
|
+
end
|
61
|
+
|
62
|
+
it "should not generate a link for order management" do
|
63
|
+
html.should_not have_tag("a", "Order management", :attributes => { :href => '/admin/order-management' })
|
64
|
+
end
|
65
|
+
|
66
|
+
it "should not generate a link for bill management" do
|
67
|
+
html.should_not have_tag("a", "Bill management", :attributes => { :href => '/admin/bill-management' })
|
68
|
+
end
|
69
|
+
|
70
|
+
it "should not generate the management parent menu" do
|
71
|
+
html.should_not have_tag("a", "Management", :attributes => { :href => '#' })
|
72
|
+
end
|
73
|
+
|
74
|
+
describe "marking current item" do
|
75
|
+
|
76
|
+
it "should add the 'current' class to the li" do
|
77
|
+
assigns[:current_tab] = "Blog Posts"
|
78
|
+
html.should have_tag("li", :attributes => { :class => "current" })
|
79
|
+
end
|
80
|
+
|
81
|
+
it "should add the 'current' and 'has_nested' classes to the li and 'current' to the sub li" do
|
82
|
+
assigns[:current_tab] = "Reports/A Sub Reports"
|
83
|
+
html.should have_tag("li", :attributes => { :id => "reports", :class => "current has_nested" })
|
84
|
+
html.should have_tag("li", :attributes => { :id => "a_sub_reports", :class => "current" })
|
85
|
+
end
|
86
|
+
|
87
|
+
end
|
88
|
+
|
89
|
+
end
|
90
|
+
|
91
|
+
describe "returning the menu items to display" do
|
92
|
+
|
93
|
+
it "should be reture one item with no if block" do
|
94
|
+
menu.add "Hello World", "/"
|
95
|
+
tabbed_navigation.menu_items.should == menu.items
|
96
|
+
end
|
97
|
+
|
98
|
+
it "should not include a menu items with an if block that returns false" do
|
99
|
+
menu.add "Don't Show", "/", 10, :if => proc{ false }
|
100
|
+
tabbed_navigation.menu_items.should == []
|
101
|
+
end
|
102
|
+
|
103
|
+
it "should not include menu items with an if block that calls a method that returns false" do
|
104
|
+
menu.add "Don't Show", "/", 10, :if => :admin_logged_in?
|
105
|
+
tabbed_navigation.menu_items.should == []
|
106
|
+
end
|
107
|
+
|
108
|
+
it "should not display any items that have no children to display" do
|
109
|
+
menu.add "Parent", "#" do |p|
|
110
|
+
p.add "Child", "/", 10, :if => proc{ false }
|
111
|
+
end
|
112
|
+
tabbed_navigation.menu_items.should == []
|
113
|
+
end
|
114
|
+
|
115
|
+
it "should display a parent that has a child to display" do
|
116
|
+
menu.add "Parent", "#" do |p|
|
117
|
+
p.add "Hidden Child", "/", 10, :if => proc{ false }
|
118
|
+
p.add "Child", "/"
|
119
|
+
end
|
120
|
+
tabbed_navigation.should have(1).menu_items
|
121
|
+
end
|
122
|
+
|
123
|
+
end
|
124
|
+
|
125
|
+
end
|
data/tasks/docs.rake
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
namespace :docs do
|
2
|
+
|
3
|
+
def rdoc_to_markdown(content)
|
4
|
+
content.gsub(/^ ?(=+) /) do |m|
|
5
|
+
m.gsub('=', '#')
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
def prepare_docstring(content)
|
10
|
+
content = rdoc_to_markdown(content)
|
11
|
+
"<!-- Please don't edit this file. It will be clobbered. -->\n\n#{content}"
|
12
|
+
end
|
13
|
+
|
14
|
+
def filename_from_module(mod)
|
15
|
+
mod.name.to_s.underscore.gsub('_', '-')
|
16
|
+
end
|
17
|
+
|
18
|
+
def write_docstrings_to(path, mods)
|
19
|
+
mods.each do |mod|
|
20
|
+
File.open("#{path}/#{filename_from_module(mod)}.md", 'w+') do |f|
|
21
|
+
f << prepare_docstring(mod.docstring)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
desc "Update docs in the docs folder"
|
27
|
+
task :build do
|
28
|
+
require 'yard'
|
29
|
+
require 'active_support/all'
|
30
|
+
|
31
|
+
YARD::Registry.load!
|
32
|
+
views = YARD::Registry.at("ActiveAdmin::Views")
|
33
|
+
|
34
|
+
# Index Types
|
35
|
+
index_types = views.children.select{|obj| obj.name.to_s =~ /^IndexAs/ }
|
36
|
+
write_docstrings_to "docs/3-index-pages", index_types
|
37
|
+
end
|
38
|
+
|
39
|
+
end
|
data/tasks/test.rake
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
desc "Creates a test rails app for the specs to run against"
|
2
|
+
task :setup do
|
3
|
+
require 'rails/version'
|
4
|
+
system("mkdir spec/rails") unless File.exists?("spec/rails")
|
5
|
+
system "bundle exec rails new spec/rails/rails-#{Rails::VERSION::STRING} -m spec/support/rails_template.rb"
|
6
|
+
end
|
7
|
+
|
8
|
+
namespace :test do
|
9
|
+
desc "Run against the important versions of rails"
|
10
|
+
task :major_rails_versions do
|
11
|
+
current_version = detect_rails_version if File.exists?("Gemfile.lock")
|
12
|
+
["3.0.10", "3.1.0.rc6"].each do |version|
|
13
|
+
puts
|
14
|
+
puts
|
15
|
+
puts "== Using Rails #{version}"
|
16
|
+
cmd "./script/use_rails #{version}"
|
17
|
+
cmd "bundle exec rspec spec"
|
18
|
+
cmd "bundle exec cucumber features"
|
19
|
+
end
|
20
|
+
cmd "./script/use_rails #{current_version}" if current_version
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
# Run specs and cukes
|
26
|
+
task :test do
|
27
|
+
cmd "bundle exec rspec spec"
|
28
|
+
cmd "bundle exec cucumber features"
|
29
|
+
end
|
30
|
+
|
31
|
+
namespace :spec do
|
32
|
+
desc "Run specs for all versions of rails"
|
33
|
+
task :all do
|
34
|
+
(0..6).to_a.each do |v|
|
35
|
+
puts "Running for Rails 3.0.#{v}"
|
36
|
+
cmd "rm Gemfile.lock" if File.exists?("Gemfile.lock")
|
37
|
+
cmd "/usr/bin/env RAILS=3.0.#{v} bundle install"
|
38
|
+
cmd "/usr/bin/env RAILS=3.0.#{v} rake spec"
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
require 'cucumber/rake/task'
|
44
|
+
|
45
|
+
namespace :cucumber do
|
46
|
+
Cucumber::Rake::Task.new(:all) do |t|
|
47
|
+
t.profile = 'default'
|
48
|
+
end
|
49
|
+
|
50
|
+
Cucumber::Rake::Task.new(:wip) do |t|
|
51
|
+
t.profile = 'wip'
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
task :cucumber => "cucumber:all"
|
data/tasks/yard.rake
ADDED
metadata
CHANGED
@@ -1,167 +1,194 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: activeadmin
|
3
|
-
version: !ruby/object:Gem::Version
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.0
|
4
5
|
prerelease:
|
5
|
-
version: 0.2.2
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- Greg Bell
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2011-08-25 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
16
15
|
name: rails
|
17
|
-
requirement: &
|
16
|
+
requirement: &70119273208180 !ruby/object:Gem::Requirement
|
18
17
|
none: false
|
19
|
-
requirements:
|
20
|
-
- -
|
21
|
-
- !ruby/object:Gem::Version
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
22
21
|
version: 3.0.0
|
23
22
|
type: :runtime
|
24
23
|
prerelease: false
|
25
|
-
version_requirements: *
|
26
|
-
- !ruby/object:Gem::Dependency
|
24
|
+
version_requirements: *70119273208180
|
25
|
+
- !ruby/object:Gem::Dependency
|
27
26
|
name: meta_search
|
28
|
-
requirement: &
|
27
|
+
requirement: &70119273207680 !ruby/object:Gem::Requirement
|
29
28
|
none: false
|
30
|
-
requirements:
|
31
|
-
- -
|
32
|
-
- !ruby/object:Gem::Version
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
33
32
|
version: 0.9.2
|
34
33
|
type: :runtime
|
35
34
|
prerelease: false
|
36
|
-
version_requirements: *
|
37
|
-
- !ruby/object:Gem::Dependency
|
35
|
+
version_requirements: *70119273207680
|
36
|
+
- !ruby/object:Gem::Dependency
|
38
37
|
name: devise
|
39
|
-
requirement: &
|
38
|
+
requirement: &70119273207220 !ruby/object:Gem::Requirement
|
40
39
|
none: false
|
41
|
-
requirements:
|
42
|
-
- -
|
43
|
-
- !ruby/object:Gem::Version
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
44
43
|
version: 1.1.2
|
45
44
|
type: :runtime
|
46
45
|
prerelease: false
|
47
|
-
version_requirements: *
|
48
|
-
- !ruby/object:Gem::Dependency
|
46
|
+
version_requirements: *70119273207220
|
47
|
+
- !ruby/object:Gem::Dependency
|
49
48
|
name: formtastic
|
50
|
-
requirement: &
|
49
|
+
requirement: &70119273206760 !ruby/object:Gem::Requirement
|
51
50
|
none: false
|
52
|
-
requirements:
|
53
|
-
- -
|
54
|
-
- !ruby/object:Gem::Version
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
55
54
|
version: 1.1.0
|
56
55
|
type: :runtime
|
57
56
|
prerelease: false
|
58
|
-
version_requirements: *
|
59
|
-
- !ruby/object:Gem::Dependency
|
60
|
-
name:
|
61
|
-
requirement: &
|
57
|
+
version_requirements: *70119273206760
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: inherited_resources
|
60
|
+
requirement: &70119273206300 !ruby/object:Gem::Requirement
|
62
61
|
none: false
|
63
|
-
requirements:
|
64
|
-
- -
|
65
|
-
- !ruby/object:Gem::Version
|
66
|
-
version:
|
62
|
+
requirements:
|
63
|
+
- - ! '>='
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '0'
|
67
66
|
type: :runtime
|
68
67
|
prerelease: false
|
69
|
-
version_requirements: *
|
70
|
-
- !ruby/object:Gem::Dependency
|
71
|
-
name:
|
72
|
-
requirement: &
|
68
|
+
version_requirements: *70119273206300
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: kaminari
|
71
|
+
requirement: &70119273205840 !ruby/object:Gem::Requirement
|
73
72
|
none: false
|
74
|
-
requirements:
|
75
|
-
- -
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
version:
|
73
|
+
requirements:
|
74
|
+
- - ! '>='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: 0.12.4
|
78
77
|
type: :runtime
|
79
78
|
prerelease: false
|
80
|
-
version_requirements: *
|
81
|
-
- !ruby/object:Gem::Dependency
|
79
|
+
version_requirements: *70119273205840
|
80
|
+
- !ruby/object:Gem::Dependency
|
82
81
|
name: sass
|
83
|
-
requirement: &
|
82
|
+
requirement: &70119273205360 !ruby/object:Gem::Requirement
|
84
83
|
none: false
|
85
|
-
requirements:
|
86
|
-
- -
|
87
|
-
- !ruby/object:Gem::Version
|
84
|
+
requirements:
|
85
|
+
- - ! '>='
|
86
|
+
- !ruby/object:Gem::Version
|
88
87
|
version: 3.1.0
|
89
88
|
type: :runtime
|
90
89
|
prerelease: false
|
91
|
-
version_requirements: *
|
92
|
-
- !ruby/object:Gem::Dependency
|
93
|
-
name:
|
94
|
-
requirement: &
|
90
|
+
version_requirements: *70119273205360
|
91
|
+
- !ruby/object:Gem::Dependency
|
92
|
+
name: fastercsv
|
93
|
+
requirement: &70119273204900 !ruby/object:Gem::Requirement
|
95
94
|
none: false
|
96
|
-
requirements:
|
97
|
-
- -
|
98
|
-
- !ruby/object:Gem::Version
|
99
|
-
version:
|
100
|
-
type: :
|
101
|
-
prerelease: false
|
102
|
-
version_requirements: *id008
|
103
|
-
- !ruby/object:Gem::Dependency
|
104
|
-
name: jeweler
|
105
|
-
requirement: &id009 !ruby/object:Gem::Requirement
|
106
|
-
none: false
|
107
|
-
requirements:
|
108
|
-
- - "="
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: 1.5.2
|
111
|
-
type: :development
|
112
|
-
prerelease: false
|
113
|
-
version_requirements: *id009
|
114
|
-
- !ruby/object:Gem::Dependency
|
115
|
-
name: rake
|
116
|
-
requirement: &id010 !ruby/object:Gem::Requirement
|
117
|
-
none: false
|
118
|
-
requirements:
|
119
|
-
- - "="
|
120
|
-
- !ruby/object:Gem::Version
|
121
|
-
version: 0.8.7
|
122
|
-
type: :development
|
123
|
-
prerelease: false
|
124
|
-
version_requirements: *id010
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
name: haml
|
127
|
-
requirement: &id011 !ruby/object:Gem::Requirement
|
128
|
-
none: false
|
129
|
-
requirements:
|
130
|
-
- - ~>
|
131
|
-
- !ruby/object:Gem::Version
|
132
|
-
version: 3.1.1
|
133
|
-
type: :development
|
95
|
+
requirements:
|
96
|
+
- - ! '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
type: :runtime
|
134
100
|
prerelease: false
|
135
|
-
version_requirements: *
|
101
|
+
version_requirements: *70119273204900
|
136
102
|
description: The administration framework for Ruby on Rails.
|
137
|
-
email:
|
103
|
+
email:
|
104
|
+
- gregdbell@gmail.com
|
138
105
|
executables: []
|
139
|
-
|
140
106
|
extensions: []
|
141
|
-
|
142
|
-
|
143
|
-
- LICENSE
|
144
|
-
- README.rdoc
|
145
|
-
files:
|
107
|
+
extra_rdoc_files: []
|
108
|
+
files:
|
146
109
|
- .document
|
147
|
-
-
|
110
|
+
- .gitignore
|
111
|
+
- .travis.yml
|
112
|
+
- .yardopts
|
113
|
+
- CHANGELOG.md
|
148
114
|
- Gemfile
|
115
|
+
- Guardfile
|
149
116
|
- LICENSE
|
150
117
|
- README.rdoc
|
151
118
|
- Rakefile
|
152
119
|
- activeadmin.gemspec
|
120
|
+
- app/assets/images/active_admin/admin_notes_icon.png
|
121
|
+
- app/assets/images/active_admin/datepicker/datepicker-header-bg.png
|
122
|
+
- app/assets/images/active_admin/datepicker/datepicker-input-icon.png
|
123
|
+
- app/assets/images/active_admin/datepicker/datepicker-next-link-icon.png
|
124
|
+
- app/assets/images/active_admin/datepicker/datepicker-nipple.png
|
125
|
+
- app/assets/images/active_admin/datepicker/datepicker-prev-link-icon.png
|
126
|
+
- app/assets/images/active_admin/loading.gif
|
127
|
+
- app/assets/images/active_admin/nested_menu_arrow.gif
|
128
|
+
- app/assets/images/active_admin/nested_menu_arrow_dark.gif
|
129
|
+
- app/assets/images/active_admin/orderable.png
|
130
|
+
- app/assets/javascripts/active_admin/base.js
|
131
|
+
- app/assets/javascripts/active_admin/vendor.js
|
132
|
+
- app/assets/stylesheets/active_admin/_base.css.scss
|
133
|
+
- app/assets/stylesheets/active_admin/_forms.css.scss
|
134
|
+
- app/assets/stylesheets/active_admin/_header.css.scss
|
135
|
+
- app/assets/stylesheets/active_admin/_mixins.css.scss
|
136
|
+
- app/assets/stylesheets/active_admin/_typography.css.scss
|
137
|
+
- app/assets/stylesheets/active_admin/components/_comments.css.scss
|
138
|
+
- app/assets/stylesheets/active_admin/components/_date_picker.css.scss
|
139
|
+
- app/assets/stylesheets/active_admin/components/_flash_messages.css.scss
|
140
|
+
- app/assets/stylesheets/active_admin/mixins/_all.css.scss
|
141
|
+
- app/assets/stylesheets/active_admin/mixins/_buttons.css.scss
|
142
|
+
- app/assets/stylesheets/active_admin/mixins/_gradients.css.scss
|
143
|
+
- app/assets/stylesheets/active_admin/mixins/_icons.css.scss
|
144
|
+
- app/assets/stylesheets/active_admin/mixins/_reset.css.scss
|
145
|
+
- app/assets/stylesheets/active_admin/mixins/_rounded.css.scss
|
146
|
+
- app/assets/stylesheets/active_admin/mixins/_sections.css.scss
|
147
|
+
- app/assets/stylesheets/active_admin/mixins/_shadows.css.scss
|
148
|
+
- app/assets/stylesheets/active_admin/mixins/_variables.css.scss
|
149
|
+
- app/views/active_admin/dashboard/index.html.arb
|
150
|
+
- app/views/active_admin/devise/mailer/reset_password_instructions.html.erb
|
151
|
+
- app/views/active_admin/devise/mailer/unlock_instructions.html.erb
|
152
|
+
- app/views/active_admin/devise/passwords/edit.html.erb
|
153
|
+
- app/views/active_admin/devise/passwords/new.html.erb
|
154
|
+
- app/views/active_admin/devise/sessions/new.html.erb
|
155
|
+
- app/views/active_admin/devise/shared/_links.erb
|
156
|
+
- app/views/active_admin/devise/unlocks/new.html.erb
|
157
|
+
- app/views/active_admin/resource/edit.html.arb
|
158
|
+
- app/views/active_admin/resource/index.csv.erb
|
159
|
+
- app/views/active_admin/resource/index.html.arb
|
160
|
+
- app/views/active_admin/resource/new.html.arb
|
161
|
+
- app/views/active_admin/resource/show.html.arb
|
162
|
+
- app/views/layouts/active_admin.html.arb
|
163
|
+
- app/views/layouts/active_admin_logged_out.html.erb
|
153
164
|
- cucumber.yml
|
165
|
+
- docs/0-installation.md
|
166
|
+
- docs/1-general-configuration.md
|
167
|
+
- docs/2-resource-customization.md
|
168
|
+
- docs/3-index-pages.md
|
169
|
+
- docs/3-index-pages/index-as-block.md
|
170
|
+
- docs/3-index-pages/index-as-blog.md
|
171
|
+
- docs/3-index-pages/index-as-grid.md
|
172
|
+
- docs/3-index-pages/index-as-table.md
|
173
|
+
- docs/4-csv-format.md
|
174
|
+
- docs/5-forms.md
|
175
|
+
- docs/6-show-screens.md
|
176
|
+
- docs/7-sidebars.md
|
177
|
+
- docs/8-custom-actions.md
|
154
178
|
- features/comments/commenting.feature
|
155
179
|
- features/comments/viewing_index.feature
|
156
180
|
- features/dashboard.feature
|
157
181
|
- features/edit_page.feature
|
158
182
|
- features/first_boot.feature
|
159
183
|
- features/global_navigation.feature
|
184
|
+
- features/index/filters.feature
|
185
|
+
- features/index/format_as_csv.feature
|
160
186
|
- features/index/formats.feature
|
161
187
|
- features/index/index_as_block.feature
|
162
188
|
- features/index/index_as_blog.feature
|
163
189
|
- features/index/index_as_grid.feature
|
164
190
|
- features/index/index_as_table.feature
|
191
|
+
- features/index/index_blank_slate.feature
|
165
192
|
- features/index/index_scopes.feature
|
166
193
|
- features/index/pagination.feature
|
167
194
|
- features/menu.feature
|
@@ -183,6 +210,7 @@ files:
|
|
183
210
|
- features/step_definitions/flash_steps.rb
|
184
211
|
- features/step_definitions/format_steps.rb
|
185
212
|
- features/step_definitions/index_scope_steps.rb
|
213
|
+
- features/step_definitions/layout_steps.rb
|
186
214
|
- features/step_definitions/menu_steps.rb
|
187
215
|
- features/step_definitions/pagination_steps.rb
|
188
216
|
- features/step_definitions/sidebar_steps.rb
|
@@ -192,23 +220,24 @@ files:
|
|
192
220
|
- features/sti_resource.feature
|
193
221
|
- features/support/env.rb
|
194
222
|
- features/support/paths.rb
|
223
|
+
- features/support/selectors.rb
|
195
224
|
- features/users/logging_in.feature
|
196
225
|
- features/users/logging_out.feature
|
197
226
|
- lib/active_admin.rb
|
198
227
|
- lib/active_admin/abstract_view_factory.rb
|
199
|
-
- lib/active_admin/
|
228
|
+
- lib/active_admin/application.rb
|
200
229
|
- lib/active_admin/arbre.rb
|
201
|
-
- lib/active_admin/arbre/
|
202
|
-
- lib/active_admin/arbre/class_list.rb
|
203
|
-
- lib/active_admin/arbre/collection.rb
|
230
|
+
- lib/active_admin/arbre/builder.rb
|
204
231
|
- lib/active_admin/arbre/context.rb
|
205
232
|
- lib/active_admin/arbre/core_extensions.rb
|
206
|
-
- lib/active_admin/arbre/
|
207
|
-
- lib/active_admin/arbre/
|
208
|
-
- lib/active_admin/arbre/html.rb
|
209
|
-
- lib/active_admin/arbre/
|
210
|
-
- lib/active_admin/arbre/
|
211
|
-
- lib/active_admin/arbre/
|
233
|
+
- lib/active_admin/arbre/html/attributes.rb
|
234
|
+
- lib/active_admin/arbre/html/class_list.rb
|
235
|
+
- lib/active_admin/arbre/html/collection.rb
|
236
|
+
- lib/active_admin/arbre/html/document.rb
|
237
|
+
- lib/active_admin/arbre/html/element.rb
|
238
|
+
- lib/active_admin/arbre/html/html5_elements.rb
|
239
|
+
- lib/active_admin/arbre/html/tag.rb
|
240
|
+
- lib/active_admin/arbre/html/text_node.rb
|
212
241
|
- lib/active_admin/asset_registration.rb
|
213
242
|
- lib/active_admin/callbacks.rb
|
214
243
|
- lib/active_admin/comments.rb
|
@@ -222,23 +251,45 @@ files:
|
|
222
251
|
- lib/active_admin/comments/views/active_admin_comments.rb
|
223
252
|
- lib/active_admin/component.rb
|
224
253
|
- lib/active_admin/controller_action.rb
|
254
|
+
- lib/active_admin/csv_builder.rb
|
225
255
|
- lib/active_admin/dashboards.rb
|
226
256
|
- lib/active_admin/dashboards/dashboard_controller.rb
|
227
257
|
- lib/active_admin/dashboards/section.rb
|
258
|
+
- lib/active_admin/dependency_checker.rb
|
259
|
+
- lib/active_admin/deprecation.rb
|
228
260
|
- lib/active_admin/devise.rb
|
229
261
|
- lib/active_admin/dsl.rb
|
262
|
+
- lib/active_admin/engine.rb
|
230
263
|
- lib/active_admin/event.rb
|
231
264
|
- lib/active_admin/form_builder.rb
|
232
265
|
- lib/active_admin/helpers/optional_display.rb
|
266
|
+
- lib/active_admin/helpers/scope_chain.rb
|
267
|
+
- lib/active_admin/helpers/settings.rb
|
233
268
|
- lib/active_admin/iconic.rb
|
234
269
|
- lib/active_admin/iconic/icons.rb
|
270
|
+
- lib/active_admin/locales/cs.yml
|
271
|
+
- lib/active_admin/locales/da.yml
|
272
|
+
- lib/active_admin/locales/en.yml
|
273
|
+
- lib/active_admin/locales/es.yml
|
274
|
+
- lib/active_admin/locales/fr.yml
|
275
|
+
- lib/active_admin/locales/it.yml
|
276
|
+
- lib/active_admin/locales/pl.yml
|
277
|
+
- lib/active_admin/locales/pt-BR.yml
|
278
|
+
- lib/active_admin/locales/ru.yml
|
279
|
+
- lib/active_admin/locales/zh_cn.yml
|
235
280
|
- lib/active_admin/menu.rb
|
236
281
|
- lib/active_admin/menu_item.rb
|
237
282
|
- lib/active_admin/namespace.rb
|
238
283
|
- lib/active_admin/page_config.rb
|
284
|
+
- lib/active_admin/reloader.rb
|
239
285
|
- lib/active_admin/renderer.rb
|
240
286
|
- lib/active_admin/resource.rb
|
287
|
+
- lib/active_admin/resource/action_items.rb
|
241
288
|
- lib/active_admin/resource/belongs_to.rb
|
289
|
+
- lib/active_admin/resource/menu.rb
|
290
|
+
- lib/active_admin/resource/naming.rb
|
291
|
+
- lib/active_admin/resource/scopes.rb
|
292
|
+
- lib/active_admin/resource/sidebars.rb
|
242
293
|
- lib/active_admin/resource_controller.rb
|
243
294
|
- lib/active_admin/resource_controller/action_builder.rb
|
244
295
|
- lib/active_admin/resource_controller/actions.rb
|
@@ -250,26 +301,17 @@ files:
|
|
250
301
|
- lib/active_admin/resource_controller/page_configurations.rb
|
251
302
|
- lib/active_admin/resource_controller/scoping.rb
|
252
303
|
- lib/active_admin/resource_controller/sidebars.rb
|
304
|
+
- lib/active_admin/router.rb
|
305
|
+
- lib/active_admin/sass/active_admin.scss
|
306
|
+
- lib/active_admin/sass/css_loader.rb
|
307
|
+
- lib/active_admin/sass/helpers.rb
|
253
308
|
- lib/active_admin/scope.rb
|
254
|
-
- lib/active_admin/
|
255
|
-
- lib/active_admin/stylesheets/active_admin.scss
|
256
|
-
- lib/active_admin/stylesheets/active_admin/_comments.scss
|
257
|
-
- lib/active_admin/stylesheets/active_admin/_flash_messages.scss
|
258
|
-
- lib/active_admin/stylesheets/active_admin/_forms.scss
|
259
|
-
- lib/active_admin/stylesheets/active_admin/_header.scss
|
260
|
-
- lib/active_admin/stylesheets/active_admin/_typography.scss
|
261
|
-
- lib/active_admin/stylesheets/active_admin/mixins/_all.scss
|
262
|
-
- lib/active_admin/stylesheets/active_admin/mixins/_buttons.scss
|
263
|
-
- lib/active_admin/stylesheets/active_admin/mixins/_gradients.scss
|
264
|
-
- lib/active_admin/stylesheets/active_admin/mixins/_icons.scss
|
265
|
-
- lib/active_admin/stylesheets/active_admin/mixins/_reset.scss
|
266
|
-
- lib/active_admin/stylesheets/active_admin/mixins/_rounded.scss
|
267
|
-
- lib/active_admin/stylesheets/active_admin/mixins/_sections.scss
|
268
|
-
- lib/active_admin/stylesheets/active_admin/mixins/_shadows.scss
|
269
|
-
- lib/active_admin/stylesheets/active_admin/mixins/_variables.scss
|
309
|
+
- lib/active_admin/sidebar_section.rb
|
310
|
+
- lib/active_admin/stylesheets/active_admin/mixins/_utilities.scss
|
270
311
|
- lib/active_admin/version.rb
|
271
312
|
- lib/active_admin/view_factory.rb
|
272
313
|
- lib/active_admin/view_helpers.rb
|
314
|
+
- lib/active_admin/view_helpers/active_admin_application_helper.rb
|
273
315
|
- lib/active_admin/view_helpers/assigns_with_indifferent_access_helper.rb
|
274
316
|
- lib/active_admin/view_helpers/auto_link_helper.rb
|
275
317
|
- lib/active_admin/view_helpers/breadcrumb_helper.rb
|
@@ -280,18 +322,18 @@ files:
|
|
280
322
|
- lib/active_admin/view_helpers/method_or_proc_helper.rb
|
281
323
|
- lib/active_admin/view_helpers/renderer_helper.rb
|
282
324
|
- lib/active_admin/view_helpers/sidebar_helper.rb
|
283
|
-
- lib/active_admin/view_helpers/status_tag_helper.rb
|
284
|
-
- lib/active_admin/view_helpers/table_helper.rb
|
285
325
|
- lib/active_admin/view_helpers/title_helper.rb
|
286
326
|
- lib/active_admin/view_helpers/view_factory_helper.rb
|
287
327
|
- lib/active_admin/views.rb
|
288
328
|
- lib/active_admin/views/action_items.rb
|
289
329
|
- lib/active_admin/views/components/attributes_table.rb
|
330
|
+
- lib/active_admin/views/components/blank_slate.rb
|
290
331
|
- lib/active_admin/views/components/columns.rb
|
291
332
|
- lib/active_admin/views/components/paginated_collection.rb
|
292
333
|
- lib/active_admin/views/components/panel.rb
|
293
334
|
- lib/active_admin/views/components/scopes.rb
|
294
335
|
- lib/active_admin/views/components/sidebar_section.rb
|
336
|
+
- lib/active_admin/views/components/status_tag.rb
|
295
337
|
- lib/active_admin/views/components/table_for.rb
|
296
338
|
- lib/active_admin/views/dashboard_section_renderer.rb
|
297
339
|
- lib/active_admin/views/header_renderer.rb
|
@@ -303,51 +345,42 @@ files:
|
|
303
345
|
- lib/active_admin/views/pages/dashboard.rb
|
304
346
|
- lib/active_admin/views/pages/edit.rb
|
305
347
|
- lib/active_admin/views/pages/index.rb
|
348
|
+
- lib/active_admin/views/pages/layout.rb
|
306
349
|
- lib/active_admin/views/pages/new.rb
|
307
350
|
- lib/active_admin/views/pages/show.rb
|
308
|
-
- lib/active_admin/views/
|
309
|
-
- lib/active_admin/views/templates/active_admin/devise/mailer/reset_password_instructions.html.erb
|
310
|
-
- lib/active_admin/views/templates/active_admin/devise/mailer/unlock_instructions.html.erb
|
311
|
-
- lib/active_admin/views/templates/active_admin/devise/passwords/edit.html.erb
|
312
|
-
- lib/active_admin/views/templates/active_admin/devise/passwords/new.html.erb
|
313
|
-
- lib/active_admin/views/templates/active_admin/devise/sessions/new.html.erb
|
314
|
-
- lib/active_admin/views/templates/active_admin/devise/shared/_links.erb
|
315
|
-
- lib/active_admin/views/templates/active_admin/devise/unlocks/new.html.erb
|
316
|
-
- lib/active_admin/views/templates/active_admin_dashboard/index.html.arb
|
317
|
-
- lib/active_admin/views/templates/active_admin_default/edit.html.arb
|
318
|
-
- lib/active_admin/views/templates/active_admin_default/index.csv.erb
|
319
|
-
- lib/active_admin/views/templates/active_admin_default/index.html.arb
|
320
|
-
- lib/active_admin/views/templates/active_admin_default/new.html.arb
|
321
|
-
- lib/active_admin/views/templates/active_admin_default/show.html.arb
|
322
|
-
- lib/active_admin/views/templates/layouts/active_admin.html.erb
|
323
|
-
- lib/active_admin/views/templates/layouts/active_admin_logged_out.html.erb
|
351
|
+
- lib/active_admin/views/tabbed_navigation.rb
|
324
352
|
- lib/activeadmin.rb
|
353
|
+
- lib/generators/active_admin/assets/assets_generator.rb
|
354
|
+
- lib/generators/active_admin/assets/templates/3.0/active_admin.js
|
355
|
+
- lib/generators/active_admin/assets/templates/3.1/active_admin.css.scss
|
356
|
+
- lib/generators/active_admin/assets/templates/3.1/active_admin.js
|
357
|
+
- lib/generators/active_admin/assets/templates/dashboards.rb
|
325
358
|
- lib/generators/active_admin/devise/devise_generator.rb
|
326
359
|
- lib/generators/active_admin/install/install_generator.rb
|
327
|
-
- lib/generators/active_admin/install/templates/active_admin.js
|
328
360
|
- lib/generators/active_admin/install/templates/active_admin.rb.erb
|
329
|
-
- lib/generators/active_admin/install/templates/active_admin_vendor.js
|
330
361
|
- lib/generators/active_admin/install/templates/dashboards.rb
|
331
|
-
- lib/generators/active_admin/install/templates/images/admin_notes_icon.png
|
332
|
-
- lib/generators/active_admin/install/templates/images/loading.gif
|
333
|
-
- lib/generators/active_admin/install/templates/images/nested_menu_arrow.gif
|
334
|
-
- lib/generators/active_admin/install/templates/images/nested_menu_arrow_dark.gif
|
335
|
-
- lib/generators/active_admin/install/templates/images/orderable.png
|
336
362
|
- lib/generators/active_admin/install/templates/migrations/1_create_admin_notes.rb
|
337
363
|
- lib/generators/active_admin/install/templates/migrations/2_move_admin_notes_to_comments.rb
|
338
364
|
- lib/generators/active_admin/resource/resource_generator.rb
|
339
365
|
- lib/generators/active_admin/resource/templates/admin.rb
|
340
|
-
-
|
366
|
+
- script/local
|
367
|
+
- script/use_rails
|
341
368
|
- spec/integration/belongs_to_spec.rb
|
369
|
+
- spec/integration/default_namespace.rb
|
370
|
+
- spec/integration/javascript_spec.rb
|
371
|
+
- spec/integration/stylesheets_spec.rb
|
342
372
|
- spec/spec_helper.rb
|
373
|
+
- spec/support/detect_rails_version.rb
|
343
374
|
- spec/support/integration_example_group.rb
|
375
|
+
- spec/support/jslint.yml
|
344
376
|
- spec/support/rails_template.rb
|
345
377
|
- spec/support/rails_template_with_data.rb
|
346
378
|
- spec/support/templates/cucumber.rb
|
347
379
|
- spec/unit/abstract_view_factory_spec.rb
|
348
380
|
- spec/unit/action_builder_spec.rb
|
349
|
-
- spec/unit/action_items_spec.rb
|
350
381
|
- spec/unit/active_admin_spec.rb
|
382
|
+
- spec/unit/application_spec.rb
|
383
|
+
- spec/unit/arbre/context_spec.rb
|
351
384
|
- spec/unit/arbre/html/element_finder_methods_spec.rb
|
352
385
|
- spec/unit/arbre/html/element_spec.rb
|
353
386
|
- spec/unit/arbre/html/tag_attributes_spec.rb
|
@@ -359,74 +392,146 @@ files:
|
|
359
392
|
- spec/unit/breadcrumbs_spec.rb
|
360
393
|
- spec/unit/comments_spec.rb
|
361
394
|
- spec/unit/component_spec.rb
|
362
|
-
- spec/unit/components/attributes_table_spec.rb
|
363
|
-
- spec/unit/components/columns_spec.rb
|
364
|
-
- spec/unit/components/panel_spec.rb
|
365
|
-
- spec/unit/components/sidebar_section_spec.rb
|
366
|
-
- spec/unit/components/table_for_spec.rb
|
367
395
|
- spec/unit/controller_filters_spec.rb
|
396
|
+
- spec/unit/csv_builder_spec.rb
|
368
397
|
- spec/unit/dashboard_controller_spec.rb
|
369
398
|
- spec/unit/dashboard_section_spec.rb
|
370
399
|
- spec/unit/dashboards_spec.rb
|
400
|
+
- spec/unit/devise_spec.rb
|
371
401
|
- spec/unit/display_name_spec.rb
|
372
402
|
- spec/unit/event_spec.rb
|
373
403
|
- spec/unit/filter_form_builder_spec.rb
|
374
404
|
- spec/unit/form_builder_spec.rb
|
405
|
+
- spec/unit/generators/install_rails_3_1_spec.rb
|
406
|
+
- spec/unit/helpers/scope_chain_spec.rb
|
407
|
+
- spec/unit/helpers/settings_spec.rb
|
375
408
|
- spec/unit/menu_item_spec.rb
|
376
409
|
- spec/unit/menu_spec.rb
|
377
410
|
- spec/unit/namespace_spec.rb
|
378
411
|
- spec/unit/pretty_format_spec.rb
|
412
|
+
- spec/unit/rails_spec.rb
|
379
413
|
- spec/unit/registration_spec.rb
|
414
|
+
- spec/unit/reloader_spec.rb
|
380
415
|
- spec/unit/renderer_spec.rb
|
416
|
+
- spec/unit/resource/action_items_spec.rb
|
417
|
+
- spec/unit/resource/menu_spec.rb
|
418
|
+
- spec/unit/resource/naming_spec.rb
|
419
|
+
- spec/unit/resource/scopes_spec.rb
|
420
|
+
- spec/unit/resource/sidebars_spec.rb
|
381
421
|
- spec/unit/resource_controller/collection_spec.rb
|
382
422
|
- spec/unit/resource_controller_spec.rb
|
383
423
|
- spec/unit/resource_spec.rb
|
384
424
|
- spec/unit/routing_spec.rb
|
425
|
+
- spec/unit/sass/helpers_spec.rb
|
385
426
|
- spec/unit/scope_spec.rb
|
386
|
-
- spec/unit/tabs_renderer_spec.rb
|
387
427
|
- spec/unit/view_factory_spec.rb
|
388
|
-
|
428
|
+
- spec/unit/views/components/attributes_table_spec.rb
|
429
|
+
- spec/unit/views/components/blank_slate_spec.rb
|
430
|
+
- spec/unit/views/components/columns_spec.rb
|
431
|
+
- spec/unit/views/components/panel_spec.rb
|
432
|
+
- spec/unit/views/components/sidebar_section_spec.rb
|
433
|
+
- spec/unit/views/components/status_tag_spec.rb
|
434
|
+
- spec/unit/views/components/table_for_spec.rb
|
435
|
+
- spec/unit/views/pages/layout_spec.rb
|
436
|
+
- spec/unit/views/tabbed_navigation_spec.rb
|
437
|
+
- tasks/docs.rake
|
438
|
+
- tasks/test.rake
|
439
|
+
- tasks/yard.rake
|
440
|
+
homepage: http://activeadmin.info
|
389
441
|
licenses: []
|
390
|
-
|
391
442
|
post_install_message:
|
392
443
|
rdoc_options: []
|
393
|
-
|
394
|
-
require_paths:
|
444
|
+
require_paths:
|
395
445
|
- lib
|
396
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
446
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
397
447
|
none: false
|
398
|
-
requirements:
|
399
|
-
- -
|
400
|
-
- !ruby/object:Gem::Version
|
401
|
-
|
402
|
-
segments:
|
448
|
+
requirements:
|
449
|
+
- - ! '>='
|
450
|
+
- !ruby/object:Gem::Version
|
451
|
+
version: '0'
|
452
|
+
segments:
|
403
453
|
- 0
|
404
|
-
|
405
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
454
|
+
hash: 2396832735345360600
|
455
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
406
456
|
none: false
|
407
|
-
requirements:
|
408
|
-
- -
|
409
|
-
- !ruby/object:Gem::Version
|
410
|
-
version:
|
457
|
+
requirements:
|
458
|
+
- - ! '>='
|
459
|
+
- !ruby/object:Gem::Version
|
460
|
+
version: '0'
|
461
|
+
segments:
|
462
|
+
- 0
|
463
|
+
hash: 2396832735345360600
|
411
464
|
requirements: []
|
412
|
-
|
413
465
|
rubyforge_project:
|
414
|
-
rubygems_version: 1.
|
466
|
+
rubygems_version: 1.8.6
|
415
467
|
signing_key:
|
416
468
|
specification_version: 3
|
417
469
|
summary: The administration framework for Ruby on Rails.
|
418
|
-
test_files:
|
419
|
-
-
|
470
|
+
test_files:
|
471
|
+
- features/comments/commenting.feature
|
472
|
+
- features/comments/viewing_index.feature
|
473
|
+
- features/dashboard.feature
|
474
|
+
- features/edit_page.feature
|
475
|
+
- features/first_boot.feature
|
476
|
+
- features/global_navigation.feature
|
477
|
+
- features/index/filters.feature
|
478
|
+
- features/index/format_as_csv.feature
|
479
|
+
- features/index/formats.feature
|
480
|
+
- features/index/index_as_block.feature
|
481
|
+
- features/index/index_as_blog.feature
|
482
|
+
- features/index/index_as_grid.feature
|
483
|
+
- features/index/index_as_table.feature
|
484
|
+
- features/index/index_blank_slate.feature
|
485
|
+
- features/index/index_scopes.feature
|
486
|
+
- features/index/pagination.feature
|
487
|
+
- features/menu.feature
|
488
|
+
- features/new_page.feature
|
489
|
+
- features/registering_assets.feature
|
490
|
+
- features/registering_resources.feature
|
491
|
+
- features/show/default_content.feature
|
492
|
+
- features/show/page_title.feature
|
493
|
+
- features/sidebar_sections.feature
|
494
|
+
- features/specifying_actions.feature
|
495
|
+
- features/step_definitions/action_item_steps.rb
|
496
|
+
- features/step_definitions/additional_web_steps.rb
|
497
|
+
- features/step_definitions/asset_steps.rb
|
498
|
+
- features/step_definitions/attribute_steps.rb
|
499
|
+
- features/step_definitions/comment_steps.rb
|
500
|
+
- features/step_definitions/configuration_steps.rb
|
501
|
+
- features/step_definitions/dashboard_steps.rb
|
502
|
+
- features/step_definitions/factory_steps.rb
|
503
|
+
- features/step_definitions/flash_steps.rb
|
504
|
+
- features/step_definitions/format_steps.rb
|
505
|
+
- features/step_definitions/index_scope_steps.rb
|
506
|
+
- features/step_definitions/layout_steps.rb
|
507
|
+
- features/step_definitions/menu_steps.rb
|
508
|
+
- features/step_definitions/pagination_steps.rb
|
509
|
+
- features/step_definitions/sidebar_steps.rb
|
510
|
+
- features/step_definitions/tab_steps.rb
|
511
|
+
- features/step_definitions/user_steps.rb
|
512
|
+
- features/step_definitions/web_steps.rb
|
513
|
+
- features/sti_resource.feature
|
514
|
+
- features/support/env.rb
|
515
|
+
- features/support/paths.rb
|
516
|
+
- features/support/selectors.rb
|
517
|
+
- features/users/logging_in.feature
|
518
|
+
- features/users/logging_out.feature
|
420
519
|
- spec/integration/belongs_to_spec.rb
|
520
|
+
- spec/integration/default_namespace.rb
|
521
|
+
- spec/integration/javascript_spec.rb
|
522
|
+
- spec/integration/stylesheets_spec.rb
|
421
523
|
- spec/spec_helper.rb
|
524
|
+
- spec/support/detect_rails_version.rb
|
422
525
|
- spec/support/integration_example_group.rb
|
526
|
+
- spec/support/jslint.yml
|
423
527
|
- spec/support/rails_template.rb
|
424
528
|
- spec/support/rails_template_with_data.rb
|
425
529
|
- spec/support/templates/cucumber.rb
|
426
530
|
- spec/unit/abstract_view_factory_spec.rb
|
427
531
|
- spec/unit/action_builder_spec.rb
|
428
|
-
- spec/unit/action_items_spec.rb
|
429
532
|
- spec/unit/active_admin_spec.rb
|
533
|
+
- spec/unit/application_spec.rb
|
534
|
+
- spec/unit/arbre/context_spec.rb
|
430
535
|
- spec/unit/arbre/html/element_finder_methods_spec.rb
|
431
536
|
- spec/unit/arbre/html/element_spec.rb
|
432
537
|
- spec/unit/arbre/html/tag_attributes_spec.rb
|
@@ -438,29 +543,45 @@ test_files:
|
|
438
543
|
- spec/unit/breadcrumbs_spec.rb
|
439
544
|
- spec/unit/comments_spec.rb
|
440
545
|
- spec/unit/component_spec.rb
|
441
|
-
- spec/unit/components/attributes_table_spec.rb
|
442
|
-
- spec/unit/components/columns_spec.rb
|
443
|
-
- spec/unit/components/panel_spec.rb
|
444
|
-
- spec/unit/components/sidebar_section_spec.rb
|
445
|
-
- spec/unit/components/table_for_spec.rb
|
446
546
|
- spec/unit/controller_filters_spec.rb
|
547
|
+
- spec/unit/csv_builder_spec.rb
|
447
548
|
- spec/unit/dashboard_controller_spec.rb
|
448
549
|
- spec/unit/dashboard_section_spec.rb
|
449
550
|
- spec/unit/dashboards_spec.rb
|
551
|
+
- spec/unit/devise_spec.rb
|
450
552
|
- spec/unit/display_name_spec.rb
|
451
553
|
- spec/unit/event_spec.rb
|
452
554
|
- spec/unit/filter_form_builder_spec.rb
|
453
555
|
- spec/unit/form_builder_spec.rb
|
556
|
+
- spec/unit/generators/install_rails_3_1_spec.rb
|
557
|
+
- spec/unit/helpers/scope_chain_spec.rb
|
558
|
+
- spec/unit/helpers/settings_spec.rb
|
454
559
|
- spec/unit/menu_item_spec.rb
|
455
560
|
- spec/unit/menu_spec.rb
|
456
561
|
- spec/unit/namespace_spec.rb
|
457
562
|
- spec/unit/pretty_format_spec.rb
|
563
|
+
- spec/unit/rails_spec.rb
|
458
564
|
- spec/unit/registration_spec.rb
|
565
|
+
- spec/unit/reloader_spec.rb
|
459
566
|
- spec/unit/renderer_spec.rb
|
567
|
+
- spec/unit/resource/action_items_spec.rb
|
568
|
+
- spec/unit/resource/menu_spec.rb
|
569
|
+
- spec/unit/resource/naming_spec.rb
|
570
|
+
- spec/unit/resource/scopes_spec.rb
|
571
|
+
- spec/unit/resource/sidebars_spec.rb
|
460
572
|
- spec/unit/resource_controller/collection_spec.rb
|
461
573
|
- spec/unit/resource_controller_spec.rb
|
462
574
|
- spec/unit/resource_spec.rb
|
463
575
|
- spec/unit/routing_spec.rb
|
576
|
+
- spec/unit/sass/helpers_spec.rb
|
464
577
|
- spec/unit/scope_spec.rb
|
465
|
-
- spec/unit/tabs_renderer_spec.rb
|
466
578
|
- spec/unit/view_factory_spec.rb
|
579
|
+
- spec/unit/views/components/attributes_table_spec.rb
|
580
|
+
- spec/unit/views/components/blank_slate_spec.rb
|
581
|
+
- spec/unit/views/components/columns_spec.rb
|
582
|
+
- spec/unit/views/components/panel_spec.rb
|
583
|
+
- spec/unit/views/components/sidebar_section_spec.rb
|
584
|
+
- spec/unit/views/components/status_tag_spec.rb
|
585
|
+
- spec/unit/views/components/table_for_spec.rb
|
586
|
+
- spec/unit/views/pages/layout_spec.rb
|
587
|
+
- spec/unit/views/tabbed_navigation_spec.rb
|