andrewroth_activeadmin 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +35 -0
- data/.travis.yml +4 -0
- data/.yardopts +8 -0
- data/CHANGELOG.md +301 -0
- data/Gemfile +40 -0
- data/Guardfile +8 -0
- data/LICENSE +25 -0
- data/README.rdoc +113 -0
- data/Rakefile +18 -0
- data/activeadmin.gemspec +28 -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/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/base.js +12 -0
- data/app/assets/javascripts/active_admin/vendor.js +382 -0
- data/app/assets/stylesheets/active_admin/_base.css.scss +363 -0
- data/app/assets/stylesheets/active_admin/_forms.css.scss +259 -0
- data/app/assets/stylesheets/active_admin/_header.css.scss +121 -0
- data/app/assets/stylesheets/active_admin/_mixins.css.scss +1 -0
- data/app/assets/stylesheets/active_admin/_typography.css.scss +102 -0
- data/app/assets/stylesheets/active_admin/components/_comments.css.scss +43 -0
- data/app/assets/stylesheets/active_admin/components/_date_picker.css.scss +125 -0
- data/app/assets/stylesheets/active_admin/components/_flash_messages.css.scss +39 -0
- data/app/assets/stylesheets/active_admin/components/_tables.css.scss +68 -0
- data/app/assets/stylesheets/active_admin/mixins/_all.css.scss +10 -0
- data/app/assets/stylesheets/active_admin/mixins/_buttons.css.scss +27 -0
- data/app/assets/stylesheets/active_admin/mixins/_gradients.css.scss +29 -0
- data/app/assets/stylesheets/active_admin/mixins/_icons.css.scss +20 -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 +34 -0
- data/app/assets/stylesheets/active_admin/mixins/_shadows.css.scss +21 -0
- data/app/assets/stylesheets/active_admin/mixins/_utilities.scss +17 -0
- data/app/assets/stylesheets/active_admin/mixins/_variables.css.scss +21 -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 +16 -0
- data/app/views/active_admin/devise/passwords/new.html.erb +14 -0
- data/app/views/active_admin/devise/sessions/new.html.erb +18 -0
- data/app/views/active_admin/devise/shared/_links.erb +20 -0
- data/app/views/active_admin/devise/unlocks/new.html.erb +12 -0
- data/app/views/active_admin/resource/edit.html.arb +1 -0
- data/app/views/active_admin/resource/index.csv.erb +20 -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 +35 -0
- data/cucumber.yml +2 -0
- data/docs/0-installation.md +50 -0
- data/docs/1-general-configuration.md +43 -0
- data/docs/2-resource-customization.md +114 -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 +36 -0
- data/docs/7-sidebars.md +35 -0
- data/docs/8-custom-actions.md +123 -0
- data/features/comments/commenting.feature +112 -0
- data/features/comments/viewing_index.feature +19 -0
- data/features/dashboard.feature +26 -0
- data/features/edit_page.feature +106 -0
- data/features/first_boot.feature +16 -0
- data/features/global_navigation.feature +30 -0
- data/features/index/filters.feature +35 -0
- data/features/index/format_as_csv.feature +46 -0
- data/features/index/formats.feature +12 -0
- data/features/index/index_as_block.feature +15 -0
- data/features/index/index_as_blog.feature +50 -0
- data/features/index/index_as_grid.feature +45 -0
- data/features/index/index_as_table.feature +81 -0
- data/features/index/index_blank_slate.feature +56 -0
- data/features/index/index_scopes.feature +52 -0
- data/features/index/pagination.feature +17 -0
- data/features/menu.feature +37 -0
- data/features/new_page.feature +75 -0
- data/features/registering_assets.feature +35 -0
- data/features/registering_resources.feature +33 -0
- data/features/show/default_content.feature +43 -0
- data/features/show/page_title.feature +33 -0
- data/features/sidebar_sections.feature +127 -0
- data/features/specifying_actions.feature +87 -0
- data/features/step_definitions/action_item_steps.rb +7 -0
- data/features/step_definitions/additional_web_steps.rb +77 -0
- data/features/step_definitions/asset_steps.rb +7 -0
- data/features/step_definitions/attribute_steps.rb +13 -0
- data/features/step_definitions/comment_steps.rb +8 -0
- data/features/step_definitions/configuration_steps.rb +31 -0
- data/features/step_definitions/dashboard_steps.rb +11 -0
- data/features/step_definitions/factory_steps.rb +29 -0
- data/features/step_definitions/flash_steps.rb +3 -0
- data/features/step_definitions/format_steps.rb +35 -0
- data/features/step_definitions/index_scope_steps.rb +20 -0
- data/features/step_definitions/layout_steps.rb +3 -0
- data/features/step_definitions/menu_steps.rb +7 -0
- data/features/step_definitions/pagination_steps.rb +8 -0
- data/features/step_definitions/sidebar_steps.rb +7 -0
- data/features/step_definitions/tab_steps.rb +3 -0
- data/features/step_definitions/user_steps.rb +26 -0
- data/features/step_definitions/web_steps.rb +211 -0
- data/features/sti_resource.feature +61 -0
- data/features/support/env.rb +96 -0
- data/features/support/paths.rb +50 -0
- data/features/support/selectors.rb +45 -0
- data/features/users/logging_in.feature +34 -0
- data/features/users/logging_out.feature +13 -0
- data/lib/active_admin.rb +82 -0
- data/lib/active_admin/abstract_view_factory.rb +95 -0
- data/lib/active_admin/application.rb +231 -0
- data/lib/active_admin/arbre.rb +23 -0
- data/lib/active_admin/arbre/builder.rb +111 -0
- data/lib/active_admin/arbre/context.rb +45 -0
- data/lib/active_admin/arbre/core_extensions.rb +5 -0
- data/lib/active_admin/arbre/html/attributes.rb +20 -0
- data/lib/active_admin/arbre/html/class_list.rb +28 -0
- data/lib/active_admin/arbre/html/collection.rb +27 -0
- data/lib/active_admin/arbre/html/document.rb +42 -0
- data/lib/active_admin/arbre/html/element.rb +151 -0
- data/lib/active_admin/arbre/html/html5_elements.rb +47 -0
- data/lib/active_admin/arbre/html/tag.rb +137 -0
- data/lib/active_admin/arbre/html/text_node.rb +35 -0
- data/lib/active_admin/asset_registration.rb +34 -0
- data/lib/active_admin/callbacks.rb +89 -0
- data/lib/active_admin/comments.rb +88 -0
- data/lib/active_admin/comments/comment.rb +21 -0
- data/lib/active_admin/comments/configuration.rb +18 -0
- data/lib/active_admin/comments/namespace_helper.rb +14 -0
- data/lib/active_admin/comments/resource_helper.rb +17 -0
- data/lib/active_admin/comments/show_page_helper.rb +23 -0
- data/lib/active_admin/comments/views.rb +3 -0
- data/lib/active_admin/comments/views/active_admin_comment.rb +0 -0
- data/lib/active_admin/comments/views/active_admin_comments.rb +82 -0
- data/lib/active_admin/component.rb +22 -0
- data/lib/active_admin/controller_action.rb +12 -0
- data/lib/active_admin/csv_builder.rb +45 -0
- data/lib/active_admin/dashboards.rb +48 -0
- data/lib/active_admin/dashboards/dashboard_controller.rb +38 -0
- data/lib/active_admin/dashboards/section.rb +34 -0
- data/lib/active_admin/dependency_checker.rb +30 -0
- data/lib/active_admin/deprecation.rb +36 -0
- data/lib/active_admin/devise.rb +54 -0
- data/lib/active_admin/dsl.rb +224 -0
- data/lib/active_admin/engine.rb +4 -0
- data/lib/active_admin/event.rb +31 -0
- data/lib/active_admin/form_builder.rb +118 -0
- data/lib/active_admin/helpers/optional_display.rb +34 -0
- data/lib/active_admin/helpers/scope_chain.rb +23 -0
- data/lib/active_admin/helpers/settings.rb +70 -0
- data/lib/active_admin/iconic.rb +51 -0
- data/lib/active_admin/iconic/icons.rb +142 -0
- data/lib/active_admin/locales/bg.yml +40 -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 +40 -0
- data/lib/active_admin/locales/ja.yml +40 -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/sv-SE.yml +40 -0
- data/lib/active_admin/locales/zh_cn.yml +40 -0
- data/lib/active_admin/menu.rb +42 -0
- data/lib/active_admin/menu_item.rb +73 -0
- data/lib/active_admin/namespace.rb +206 -0
- data/lib/active_admin/page_config.rb +15 -0
- data/lib/active_admin/reloader.rb +64 -0
- data/lib/active_admin/renderer.rb +87 -0
- data/lib/active_admin/resource.rb +159 -0
- data/lib/active_admin/resource/action_items.rb +88 -0
- data/lib/active_admin/resource/belongs_to.rb +31 -0
- data/lib/active_admin/resource/menu.rb +45 -0
- data/lib/active_admin/resource/naming.rb +50 -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 +105 -0
- data/lib/active_admin/resource_controller/action_builder.rb +21 -0
- data/lib/active_admin/resource_controller/actions.rb +79 -0
- data/lib/active_admin/resource_controller/callbacks.rb +47 -0
- data/lib/active_admin/resource_controller/collection.rb +138 -0
- data/lib/active_admin/resource_controller/filters.rb +58 -0
- data/lib/active_admin/resource_controller/form.rb +42 -0
- data/lib/active_admin/resource_controller/menu.rb +29 -0
- data/lib/active_admin/resource_controller/page_configurations.rb +53 -0
- data/lib/active_admin/resource_controller/scoping.rb +36 -0
- data/lib/active_admin/resource_controller/sidebars.rb +18 -0
- 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 +31 -0
- 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 +3 -0
- data/lib/active_admin/view_factory.rb +23 -0
- data/lib/active_admin/view_helpers.rb +22 -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 +42 -0
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +29 -0
- data/lib/active_admin/view_helpers/display_helper.rb +38 -0
- data/lib/active_admin/view_helpers/filter_form_helper.rb +186 -0
- data/lib/active_admin/view_helpers/form_helper.rb +13 -0
- data/lib/active_admin/view_helpers/icon_helper.rb +12 -0
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +26 -0
- data/lib/active_admin/view_helpers/renderer_helper.rb +29 -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/views.rb +8 -0
- data/lib/active_admin/views/action_items.rb +17 -0
- data/lib/active_admin/views/components/attributes_table.rb +66 -0
- data/lib/active_admin/views/components/blank_slate.rb +17 -0
- data/lib/active_admin/views/components/columns.rb +47 -0
- data/lib/active_admin/views/components/paginated_collection.rb +92 -0
- data/lib/active_admin/views/components/panel.rb +26 -0
- data/lib/active_admin/views/components/scopes.rb +69 -0
- data/lib/active_admin/views/components/sidebar_section.rb +28 -0
- data/lib/active_admin/views/components/status_tag.rb +55 -0
- data/lib/active_admin/views/components/table_for.rb +193 -0
- data/lib/active_admin/views/dashboard_section_renderer.rb +19 -0
- data/lib/active_admin/views/header_renderer.rb +57 -0
- data/lib/active_admin/views/index_as_block.rb +29 -0
- data/lib/active_admin/views/index_as_blog.rb +129 -0
- data/lib/active_admin/views/index_as_grid.rb +70 -0
- data/lib/active_admin/views/index_as_table.rb +164 -0
- data/lib/active_admin/views/pages/base.rb +167 -0
- data/lib/active_admin/views/pages/dashboard.rb +62 -0
- data/lib/active_admin/views/pages/edit.rb +28 -0
- data/lib/active_admin/views/pages/index.rb +91 -0
- data/lib/active_admin/views/pages/layout.rb +26 -0
- data/lib/active_admin/views/pages/new.rb +28 -0
- data/lib/active_admin/views/pages/show.rb +56 -0
- data/lib/active_admin/views/tabbed_navigation.rb +94 -0
- data/lib/activeadmin.rb +1 -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/devise/devise_generator.rb +49 -0
- data/lib/generators/active_admin/install/install_generator.rb +44 -0
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +103 -0
- data/lib/generators/active_admin/install/templates/dashboards.rb +38 -0
- data/lib/generators/active_admin/install/templates/migrations/1_create_admin_notes.rb +16 -0
- data/lib/generators/active_admin/install/templates/migrations/2_move_admin_notes_to_comments.rb +25 -0
- data/lib/generators/active_admin/resource/resource_generator.rb +16 -0
- data/lib/generators/active_admin/resource/templates/admin.rb +3 -0
- data/script/local +44 -0
- data/script/use_rails +46 -0
- data/spec/integration/belongs_to_spec.rb +42 -0
- data/spec/integration/default_namespace.rb +77 -0
- data/spec/integration/javascript_spec.rb +20 -0
- data/spec/integration/memory_spec.rb +38 -0
- data/spec/integration/stylesheets_spec.rb +41 -0
- data/spec/spec_helper.rb +167 -0
- data/spec/support/detect_rails_version.rb +10 -0
- data/spec/support/integration_example_group.rb +33 -0
- data/spec/support/jslint.yml +80 -0
- data/spec/support/rails_template.rb +32 -0
- data/spec/support/rails_template_with_data.rb +33 -0
- data/spec/support/templates/cucumber.rb +24 -0
- data/spec/unit/abstract_view_factory_spec.rb +79 -0
- data/spec/unit/action_builder_spec.rb +88 -0
- data/spec/unit/active_admin_spec.rb +17 -0
- data/spec/unit/application_spec.rb +87 -0
- data/spec/unit/arbre/context_spec.rb +35 -0
- data/spec/unit/arbre/html/element_finder_methods_spec.rb +54 -0
- data/spec/unit/arbre/html/element_spec.rb +223 -0
- data/spec/unit/arbre/html/tag_attributes_spec.rb +61 -0
- data/spec/unit/arbre/html/tag_spec.rb +63 -0
- data/spec/unit/arbre/html_spec.rb +209 -0
- data/spec/unit/asset_registration_spec.rb +37 -0
- data/spec/unit/auto_link_spec.rb +39 -0
- data/spec/unit/belongs_to_spec.rb +45 -0
- data/spec/unit/breadcrumbs_spec.rb +110 -0
- data/spec/unit/comments_spec.rb +57 -0
- data/spec/unit/component_spec.rb +18 -0
- data/spec/unit/controller_filters_spec.rb +34 -0
- data/spec/unit/csv_builder_spec.rb +83 -0
- data/spec/unit/dashboard_controller_spec.rb +26 -0
- data/spec/unit/dashboard_section_spec.rb +56 -0
- data/spec/unit/dashboards_spec.rb +59 -0
- data/spec/unit/devise_spec.rb +66 -0
- data/spec/unit/display_name_spec.rb +29 -0
- data/spec/unit/event_spec.rb +41 -0
- data/spec/unit/filter_form_builder_spec.rb +182 -0
- data/spec/unit/form_builder_spec.rb +256 -0
- 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 +143 -0
- data/spec/unit/menu_spec.rb +53 -0
- data/spec/unit/namespace_spec.rb +214 -0
- data/spec/unit/pretty_format_spec.rb +35 -0
- data/spec/unit/rails_spec.rb +43 -0
- data/spec/unit/registration_spec.rb +76 -0
- data/spec/unit/reloader_spec.rb +80 -0
- data/spec/unit/renderer_spec.rb +108 -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 +75 -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 +34 -0
- data/spec/unit/resource_controller_spec.rb +152 -0
- data/spec/unit/resource_spec.rb +269 -0
- data/spec/unit/routing_spec.rb +88 -0
- data/spec/unit/sass/helpers_spec.rb +47 -0
- data/spec/unit/scope_spec.rb +41 -0
- data/spec/unit/view_factory_spec.rb +19 -0
- data/spec/unit/views/components/attributes_table_spec.rb +100 -0
- data/spec/unit/views/components/blank_slate_spec.rb +15 -0
- data/spec/unit/views/components/columns_spec.rb +75 -0
- data/spec/unit/views/components/panel_spec.rb +29 -0
- data/spec/unit/views/components/sidebar_section_spec.rb +37 -0
- data/spec/unit/views/components/status_tag_spec.rb +79 -0
- data/spec/unit/views/components/table_for_spec.rb +131 -0
- 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 +57 -0
- data/tasks/yard.rake +6 -0
- metadata +646 -0
data/.document
ADDED
data/.gitignore
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
## MAC OS
|
|
2
|
+
.DS_Store
|
|
3
|
+
|
|
4
|
+
## TEXTMATE
|
|
5
|
+
*.tmproj
|
|
6
|
+
tmtags
|
|
7
|
+
|
|
8
|
+
## EMACS
|
|
9
|
+
*~
|
|
10
|
+
\#*
|
|
11
|
+
.\#*
|
|
12
|
+
|
|
13
|
+
## VIM
|
|
14
|
+
*.swp
|
|
15
|
+
|
|
16
|
+
## PROJECT::GENERAL
|
|
17
|
+
tags
|
|
18
|
+
coverage
|
|
19
|
+
rdoc
|
|
20
|
+
doc
|
|
21
|
+
.yardoc
|
|
22
|
+
pkg
|
|
23
|
+
|
|
24
|
+
## PROJECT::SPECIFIC
|
|
25
|
+
.bundle
|
|
26
|
+
spec/rails
|
|
27
|
+
*.sqlite3-journal
|
|
28
|
+
Gemfile.lock
|
|
29
|
+
Gemfile-*.lock
|
|
30
|
+
capybara*
|
|
31
|
+
viewcumber
|
|
32
|
+
test-rails*
|
|
33
|
+
public
|
|
34
|
+
.rvmrc
|
|
35
|
+
.rspec
|
data/.travis.yml
ADDED
data/.yardopts
ADDED
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
## Master
|
|
2
|
+
|
|
3
|
+
Nothing yet
|
|
4
|
+
|
|
5
|
+
## 0.3.4
|
|
6
|
+
|
|
7
|
+
2 commits by 2 authors
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix reloading issues across operating systems.
|
|
12
|
+
* Fix issue where SASS was recompiling on every request. This can seriously
|
|
13
|
+
decrease the load time of applications when running in development mode.
|
|
14
|
+
Thanks @dhiemstra for tracking this one down!
|
|
15
|
+
|
|
16
|
+
### Contributors
|
|
17
|
+
|
|
18
|
+
* Danny Hiemstra
|
|
19
|
+
* Greg Bell
|
|
20
|
+
|
|
21
|
+
## 0.3.3
|
|
22
|
+
|
|
23
|
+
1 commit by 1 author
|
|
24
|
+
|
|
25
|
+
### Enhancements
|
|
26
|
+
|
|
27
|
+
* Only reload Active Admin when files in the load paths have changed. This is a
|
|
28
|
+
major speed increase in development mode. Also helps with memory consumption
|
|
29
|
+
because we aren't reloading Active admin all the time.
|
|
30
|
+
|
|
31
|
+
### Contributors
|
|
32
|
+
|
|
33
|
+
* Greg Bell
|
|
34
|
+
|
|
35
|
+
## 0.3.2
|
|
36
|
+
|
|
37
|
+
45 commits by 15 contributors
|
|
38
|
+
|
|
39
|
+
### Enhancements
|
|
40
|
+
|
|
41
|
+
* Site title can now be a link. Use config.site_title_link in
|
|
42
|
+
config/initializers/active_admin.rb
|
|
43
|
+
* i18n support for Japanese
|
|
44
|
+
* i18n support for Bulgarian
|
|
45
|
+
* i18n support for Swedish
|
|
46
|
+
|
|
47
|
+
### Bug Fixes
|
|
48
|
+
|
|
49
|
+
* DeviseGenerator respects singular table names
|
|
50
|
+
* Active Admin no longer assumes sass-rails is installed
|
|
51
|
+
* Arbre::Context passes methods to the underlying html which fixes
|
|
52
|
+
issues on different types of servers (and on Heroku)
|
|
53
|
+
* #45: Fix for multibyte characters (@tricknotes)
|
|
54
|
+
* #505: Fix titlebar height when no breadcrumb (@mattvague)
|
|
55
|
+
* Fixed vertical align in dashboard
|
|
56
|
+
* Fixed i18n path's for multi-word model names
|
|
57
|
+
|
|
58
|
+
### Dependencies
|
|
59
|
+
|
|
60
|
+
* Formtastic 2.0.0 breaks Active Admin. Locking to < 2.0.0
|
|
61
|
+
|
|
62
|
+
### Contributors
|
|
63
|
+
|
|
64
|
+
* Amiel Martin
|
|
65
|
+
* Christian Hjalmarsson
|
|
66
|
+
* Edgars Beigarts
|
|
67
|
+
* Greg Bell
|
|
68
|
+
* Jan Dupal
|
|
69
|
+
* Joe Van
|
|
70
|
+
* Mark Roghelia
|
|
71
|
+
* Mathieu Martin
|
|
72
|
+
* Matt Vague
|
|
73
|
+
* Philippe Creux
|
|
74
|
+
* Ryunosuke SATO
|
|
75
|
+
* Sam Vincent
|
|
76
|
+
* Trace Wax
|
|
77
|
+
* Tsvetan Roustchev
|
|
78
|
+
* l4u
|
|
79
|
+
|
|
80
|
+
## 0.3.1
|
|
81
|
+
|
|
82
|
+
* Only support InheritedResources up to 1.2.2
|
|
83
|
+
|
|
84
|
+
## 0.3.0
|
|
85
|
+
|
|
86
|
+
326 commits by 35 contributors
|
|
87
|
+
|
|
88
|
+
### New Features
|
|
89
|
+
|
|
90
|
+
* I18n! Now supported in 10 languages!
|
|
91
|
+
* Customizeable CSV ([@pcreux][], [@gregbell][])
|
|
92
|
+
* Menus now support `if` and `priority` (Moritz Lawitschka)
|
|
93
|
+
* Rails 3.1 support
|
|
94
|
+
* Asset pipeline support ([@gregbell][])
|
|
95
|
+
* `skip_before_filter` now supported in DSL ([@shayfrendt][])
|
|
96
|
+
* Added a blank slate design ([@mattvague][])
|
|
97
|
+
* Collection and Member actions use the Active Admin layout ([@gregbell][])
|
|
98
|
+
|
|
99
|
+
### Enhancements
|
|
100
|
+
|
|
101
|
+
* Better I18n config file loading ([@fabiokr][])
|
|
102
|
+
* `TableFor` now supports I18n headers ([@fabiokr][])
|
|
103
|
+
* `AttributesTable` now supports I18n attributes ([@fabiokr][])
|
|
104
|
+
* Member actions all use CSS class `member_link` ([@doug316][])
|
|
105
|
+
* Made `status_tag` an Arbre component ([@pcreux][])
|
|
106
|
+
* CSV downloads have sexy names such as "articles-2011-06-21.csv" ([@pcreux][])
|
|
107
|
+
* Created `ActiveAdmin::Setting` to easily create settings ([@gregbell][])
|
|
108
|
+
* New datepicker styles ([@mattvague][])
|
|
109
|
+
* Set `[@page_title][]` in member action to render a custom title ([@gregbell][])
|
|
110
|
+
* [#248][]: Settable logout link options in initializer ([@gregbell][])
|
|
111
|
+
* Added a DependencyChecker that warns if dependencies aren't met ([@pcreux][])
|
|
112
|
+
|
|
113
|
+
### Bug Fixes
|
|
114
|
+
|
|
115
|
+
* [#52][]: Fix update action with STI models ([@gregbell][])
|
|
116
|
+
* [#122][]: Fix sortable columns on nested resources ([@knoopx][])
|
|
117
|
+
* Fix so that Dashboard Sections can appear in root namespace ([@knoopx][])
|
|
118
|
+
* [#131][]: Fixed `status_tag` with nil content ([@pcreux][])
|
|
119
|
+
* [#110][]: Fixed dropdown menu floats in Firefox ([@mattvague][])
|
|
120
|
+
* Use quoted table names ([@krug][])
|
|
121
|
+
* Fixed CSS float of `.paginated_collection_contents` bug in Firefox ([@mattvague][])
|
|
122
|
+
* Removed unwanted gradient in IE in attribute table headers ([@emzeq][])
|
|
123
|
+
* [#222][]: Added `Arbre::Context#length` for Rack servers ([@gregbell][])
|
|
124
|
+
* [#255][]: Fixed problem with dropdown menus in IE8 and IE9 ([@mattvague][])
|
|
125
|
+
* [#235][]: Default sort order should use primary_key ([@gregbell][])
|
|
126
|
+
* [#197][]: Fixed issues with #form params disappearing ([@rolfb][])
|
|
127
|
+
* [#186][]: Fixes for when `default_namespace = false` ([@gregbell][])
|
|
128
|
+
* [#135][]: Comments on STI classes redirect correctly ([@gregbell][])
|
|
129
|
+
* [#77][]: Fixed performance issue where ActiveRecord::Base.all was being called ([@pcreux][])
|
|
130
|
+
* [#332][]: Fixed Devise redirection when in false namespace ([@gregbell][])
|
|
131
|
+
* [#171][]: Fixed issue where class names would clash with HTML object names ([@gregbell][])
|
|
132
|
+
* [#381][]: Fixed issues with Devise < 1.2 ([@pcreux][])
|
|
133
|
+
* [#369][]: Added support for pluralized model names such as News ([@gregbell][])
|
|
134
|
+
* [#42][]: Default forms work with polymorphic associations ([@mattvague][])
|
|
135
|
+
|
|
136
|
+
### Dependencies
|
|
137
|
+
|
|
138
|
+
* Switched from will_paginate to Kaminari for pagination ([@mwindwer][])
|
|
139
|
+
* Removed dependency on InheritedViews ([@gregbell][])
|
|
140
|
+
* Removed Jeweler. Using Bundler and a gemspec ([@gregbell][])
|
|
141
|
+
|
|
142
|
+
### Contributors
|
|
143
|
+
|
|
144
|
+
* Armand du Plessis
|
|
145
|
+
* Aurelio Agundez
|
|
146
|
+
* Bruno Bonamin
|
|
147
|
+
* Chris Ostrowski
|
|
148
|
+
* Corey Woodcox
|
|
149
|
+
* DeLynn Berry
|
|
150
|
+
* Doug Puchalski
|
|
151
|
+
* Fabio Kreusch
|
|
152
|
+
* Greg Bell
|
|
153
|
+
* Ismael G Marin C
|
|
154
|
+
* Jackson Pires
|
|
155
|
+
* Jesper Hvirring Henriksen
|
|
156
|
+
* Josef Šimánek
|
|
157
|
+
* Jørgen Orehøj Erichsen
|
|
158
|
+
* Liborio Cannici
|
|
159
|
+
* Matt Vague
|
|
160
|
+
* Matthew Windwer
|
|
161
|
+
* Moritz Lawitschka
|
|
162
|
+
* Nathan Le Ray
|
|
163
|
+
* Nicolas Mosconi
|
|
164
|
+
* Philippe Creux
|
|
165
|
+
* Rolf Bjaanes
|
|
166
|
+
* Ryan D Johnson
|
|
167
|
+
* Ryan Krug
|
|
168
|
+
* Shay Frendt
|
|
169
|
+
* Steve Klabnik
|
|
170
|
+
* Tiago Rafael Godinho
|
|
171
|
+
* Toby Hede
|
|
172
|
+
* Vijay Dev
|
|
173
|
+
* Víctor Martínez
|
|
174
|
+
* doabit
|
|
175
|
+
* hoverlover
|
|
176
|
+
* nhurst
|
|
177
|
+
* whatthewhat
|
|
178
|
+
* Łukasz Anwajler
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
## 0.2.2 (2011-05-26)
|
|
182
|
+
|
|
183
|
+
68 Commits by 13 Contributors
|
|
184
|
+
|
|
185
|
+
### Features & Enhancements
|
|
186
|
+
|
|
187
|
+
* Arbre includes self closing tags ([#100][])
|
|
188
|
+
* Controller class & action added to body as CSS classes ([#99][])
|
|
189
|
+
* HAML is not required by default ([#92][])
|
|
190
|
+
* Devise login now respects Devise.authentication_keys ([#69][])
|
|
191
|
+
* Active Admin no longer uses <tt>ActiveRecord::Base#search</tt> ([#28][])
|
|
192
|
+
* Resource's can now override the label in the menu ([#48][])
|
|
193
|
+
* Subdirectories are now loaded in the Active Admin load path
|
|
194
|
+
|
|
195
|
+
### Bug Fixes
|
|
196
|
+
|
|
197
|
+
* Sort order now includes table name ([#38][])
|
|
198
|
+
* Fixed table_for 'odd', 'even' row classes ([#96][])
|
|
199
|
+
* Fixed Devise installation if AdminUser already exists ([#95][])
|
|
200
|
+
* Fixed issues when ActiveAdmin.default_namespaces is false ([#32][])
|
|
201
|
+
* Added styles for missing HTML 5 inputs ([#31][])
|
|
202
|
+
* Fixed issue if adding empty Active Admin Comment ([#21][])
|
|
203
|
+
* Fixed layout issues in FF 4 ([#22][])
|
|
204
|
+
* Use Sass::Plugin.options[:css_location] instead of Rails.root ([#55][])
|
|
205
|
+
|
|
206
|
+
### Test Suite
|
|
207
|
+
|
|
208
|
+
* Update RSpec to latest & fix specs (Thanks Ben Marini & Jeremt Ruppel!) ([#100][])
|
|
209
|
+
* Added tests for STI models ([#52][])
|
|
210
|
+
|
|
211
|
+
### Contributors
|
|
212
|
+
|
|
213
|
+
* Ben Marini
|
|
214
|
+
* Bookis Smuin
|
|
215
|
+
* Caley Woods
|
|
216
|
+
* Doug Puchalski
|
|
217
|
+
* Federico Romero
|
|
218
|
+
* Greg Bell
|
|
219
|
+
* Ian MacLeod
|
|
220
|
+
* Jeremy Ruppel
|
|
221
|
+
* Jordan Sitkin
|
|
222
|
+
* Juha Suuraho
|
|
223
|
+
* Mathieu Martin
|
|
224
|
+
* Paul Annesley
|
|
225
|
+
* Philippe Creux
|
|
226
|
+
|
|
227
|
+
## 0.2.1 (2011-05-12)
|
|
228
|
+
|
|
229
|
+
### Bug Fixes
|
|
230
|
+
* Fixed issue with dashboard rendering a sidebar
|
|
231
|
+
|
|
232
|
+
## 0.2.0 (2011-05-12)
|
|
233
|
+
|
|
234
|
+
0.2.0 is essentially an entire re-write of Active Admin. Here are some
|
|
235
|
+
of the highlights. 250 commits. Enough said.
|
|
236
|
+
|
|
237
|
+
### Features & Enhancements
|
|
238
|
+
|
|
239
|
+
* Full visual redesign
|
|
240
|
+
* Integrated Devise for authentication
|
|
241
|
+
* Brand new view and component layer called Arbre (Project coming soon)
|
|
242
|
+
* Added ActiveAdmin::Comments
|
|
243
|
+
|
|
244
|
+
### Bug Fixes
|
|
245
|
+
|
|
246
|
+
* Too many to list! Been in production for close to a year
|
|
247
|
+
|
|
248
|
+
## 0.1.1 (2010-09-15)
|
|
249
|
+
|
|
250
|
+
### Bug Fixes
|
|
251
|
+
|
|
252
|
+
* Fixed issues running on Ruby 1.9.2
|
|
253
|
+
|
|
254
|
+
## 0.1.0
|
|
255
|
+
|
|
256
|
+
* Initial release
|
|
257
|
+
|
|
258
|
+
<!--- The following link definition list is generated by PimpMyChangelog --->
|
|
259
|
+
[#21]: https://github.com/gregbell/active_admin/issues/21
|
|
260
|
+
[#22]: https://github.com/gregbell/active_admin/issues/22
|
|
261
|
+
[#28]: https://github.com/gregbell/active_admin/issues/28
|
|
262
|
+
[#31]: https://github.com/gregbell/active_admin/issues/31
|
|
263
|
+
[#32]: https://github.com/gregbell/active_admin/issues/32
|
|
264
|
+
[#38]: https://github.com/gregbell/active_admin/issues/38
|
|
265
|
+
[#42]: https://github.com/gregbell/active_admin/issues/42
|
|
266
|
+
[#48]: https://github.com/gregbell/active_admin/issues/48
|
|
267
|
+
[#52]: https://github.com/gregbell/active_admin/issues/52
|
|
268
|
+
[#55]: https://github.com/gregbell/active_admin/issues/55
|
|
269
|
+
[#69]: https://github.com/gregbell/active_admin/issues/69
|
|
270
|
+
[#77]: https://github.com/gregbell/active_admin/issues/77
|
|
271
|
+
[#92]: https://github.com/gregbell/active_admin/issues/92
|
|
272
|
+
[#95]: https://github.com/gregbell/active_admin/issues/95
|
|
273
|
+
[#96]: https://github.com/gregbell/active_admin/issues/96
|
|
274
|
+
[#99]: https://github.com/gregbell/active_admin/issues/99
|
|
275
|
+
[#100]: https://github.com/gregbell/active_admin/issues/100
|
|
276
|
+
[#110]: https://github.com/gregbell/active_admin/issues/110
|
|
277
|
+
[#122]: https://github.com/gregbell/active_admin/issues/122
|
|
278
|
+
[#131]: https://github.com/gregbell/active_admin/issues/131
|
|
279
|
+
[#135]: https://github.com/gregbell/active_admin/issues/135
|
|
280
|
+
[#171]: https://github.com/gregbell/active_admin/issues/171
|
|
281
|
+
[#186]: https://github.com/gregbell/active_admin/issues/186
|
|
282
|
+
[#197]: https://github.com/gregbell/active_admin/issues/197
|
|
283
|
+
[#222]: https://github.com/gregbell/active_admin/issues/222
|
|
284
|
+
[#235]: https://github.com/gregbell/active_admin/issues/235
|
|
285
|
+
[#248]: https://github.com/gregbell/active_admin/issues/248
|
|
286
|
+
[#255]: https://github.com/gregbell/active_admin/issues/255
|
|
287
|
+
[#332]: https://github.com/gregbell/active_admin/issues/332
|
|
288
|
+
[#369]: https://github.com/gregbell/active_admin/issues/369
|
|
289
|
+
[#381]: https://github.com/gregbell/active_admin/issues/381
|
|
290
|
+
[@doug316]: https://github.com/doug316
|
|
291
|
+
[@emzeq]: https://github.com/emzeq
|
|
292
|
+
[@fabiokr]: https://github.com/fabiokr
|
|
293
|
+
[@gregbell]: https://github.com/gregbell
|
|
294
|
+
[@knoopx]: https://github.com/knoopx
|
|
295
|
+
[@krug]: https://github.com/krug
|
|
296
|
+
[@mattvague]: https://github.com/mattvague
|
|
297
|
+
[@mwindwer]: https://github.com/mwindwer
|
|
298
|
+
[@page_title]: https://github.com/page_title
|
|
299
|
+
[@pcreux]: https://github.com/pcreux
|
|
300
|
+
[@rolfb]: https://github.com/rolfb
|
|
301
|
+
[@shayfrendt]: https://github.com/shayfrendt
|
data/Gemfile
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
source 'http://rubygems.org'
|
|
2
|
+
|
|
3
|
+
gemspec
|
|
4
|
+
|
|
5
|
+
require File.expand_path('../spec/support/detect_rails_version', __FILE__)
|
|
6
|
+
|
|
7
|
+
rails_version = ENV['RAILS'] || detect_rails_version || "3.1.0"
|
|
8
|
+
gem 'rails', rails_version
|
|
9
|
+
|
|
10
|
+
case rails_version
|
|
11
|
+
when /^3\.0/
|
|
12
|
+
# Do nothing, bundler should figure it out
|
|
13
|
+
when /^3\.1/
|
|
14
|
+
# These are the gems you have to have for Rails 3.1 to be happy
|
|
15
|
+
gem 'sass-rails'
|
|
16
|
+
gem 'uglifier'
|
|
17
|
+
else
|
|
18
|
+
raise "Rails #{rails_version} is not supported yet"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
group :development, :test do
|
|
22
|
+
gem 'sqlite3-ruby', :require => 'sqlite3'
|
|
23
|
+
gem 'rake', '0.8.7', :require => false
|
|
24
|
+
gem 'haml', '~> 3.1.1', :require => false
|
|
25
|
+
gem 'yard'
|
|
26
|
+
gem 'rdiscount' # For yard
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
group :test do
|
|
30
|
+
gem 'rspec', '~> 2.6.0'
|
|
31
|
+
gem 'rspec-rails', '~> 2.6.0'
|
|
32
|
+
gem 'capybara', '1.0.0'
|
|
33
|
+
gem 'cucumber', '0.10.6'
|
|
34
|
+
gem 'cucumber-rails', '0.5.2'
|
|
35
|
+
gem 'database_cleaner'
|
|
36
|
+
gem 'shoulda', '2.11.2', :require => nil
|
|
37
|
+
gem 'launchy'
|
|
38
|
+
gem 'jslint_on_rails', '~> 1.0.6'
|
|
39
|
+
gem 'guard-rspec'
|
|
40
|
+
end
|
data/Guardfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# More info at https://github.com/guard/guard#readme
|
|
2
|
+
|
|
3
|
+
guard 'rspec', :all_on_start => false, :version => 2 do
|
|
4
|
+
watch(%r{^spec/.+_spec\.rb$})
|
|
5
|
+
watch(%r{^lib/active_admin/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" }
|
|
6
|
+
watch('spec/spec_helper.rb') { "spec/" }
|
|
7
|
+
end
|
|
8
|
+
|
data/LICENSE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Copyright (c) 2010 Greg Bell, VersaPay Corporation
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
21
|
+
|
|
22
|
+
Iconic Icons are designed by P.J. Onori and are shared under
|
|
23
|
+
the Creative Commons Attribution-Share Alike 3.0 license:
|
|
24
|
+
http://creativecommons.org/licenses/by-sa/3.0/us
|
|
25
|
+
http://somerandomdude.com/projects/iconic/
|
data/README.rdoc
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
= Active Admin
|
|
2
|
+
|
|
3
|
+
Active Admin is a framework for creating administration style interfaces. It
|
|
4
|
+
abstracts common business application patterns to make it simple for developers
|
|
5
|
+
to implement beautiful and elegant interfaces with very little effort.
|
|
6
|
+
|
|
7
|
+
{<img src="http://travis-ci.org/gregbell/active_admin.png" />}[http://travis-ci.org/gregbell/active_admin]
|
|
8
|
+
|
|
9
|
+
== Help / Support / Demo
|
|
10
|
+
|
|
11
|
+
* Documentation & Guides: http://activeadmin.info/documentation.html
|
|
12
|
+
* Mailing list: http://groups.google.com/group/activeadmin
|
|
13
|
+
* Bug reports: https://github.com/gregbell/active_admin/issues
|
|
14
|
+
* RDoc: http://rubydoc.info/github/gregbell/active_admin/master/frames
|
|
15
|
+
* Live demo: http://demo.activeadmin.info/admin
|
|
16
|
+
* Website: http://www.activeadmin.info
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
== Goals
|
|
20
|
+
|
|
21
|
+
1. Allow developers to quickly create gorgeous administration interfaces
|
|
22
|
+
<strong>(Not Just CRUD)</strong>
|
|
23
|
+
2. Build a DSL for developers and an interface for businesses.
|
|
24
|
+
3. Ensure that developers can easily customize every nook and cranny of the interface.
|
|
25
|
+
4. Build common interfaces as shareable gems so that the entire community benefits.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
== Getting Started
|
|
29
|
+
|
|
30
|
+
Active Admin is released as a Ruby Gem. The gem is to be installed within a Ruby
|
|
31
|
+
on Rails 3 application. To install, simply add the following to your Gemfile:
|
|
32
|
+
|
|
33
|
+
# Gemfile in Rails < 3.1
|
|
34
|
+
gem 'activeadmin'
|
|
35
|
+
|
|
36
|
+
If you are using Rails >= 3.1, you must also have sass-rails in your Gemfile:
|
|
37
|
+
|
|
38
|
+
# Gemfile in Rails >= 3.1
|
|
39
|
+
gem 'activeadmin'
|
|
40
|
+
gem 'sass-rails'
|
|
41
|
+
|
|
42
|
+
After updating your bundle, run the installer
|
|
43
|
+
|
|
44
|
+
$> rails generate active_admin:install
|
|
45
|
+
|
|
46
|
+
The installer creates an initializer used for configuring defaults used by Active Admin as well
|
|
47
|
+
as a new folder at <tt>app/admin</tt> to put all your admin configurations.
|
|
48
|
+
|
|
49
|
+
Migrate your db and start the server:
|
|
50
|
+
|
|
51
|
+
$> rake db:migrate
|
|
52
|
+
$> rails server
|
|
53
|
+
|
|
54
|
+
Visit http://localhost:3000/admin and log in using:
|
|
55
|
+
|
|
56
|
+
* *User*: admin@example.com
|
|
57
|
+
* *Password*: password
|
|
58
|
+
|
|
59
|
+
Voila! You're on your brand new Active Admin dashboard.
|
|
60
|
+
|
|
61
|
+
To register your first model, run:
|
|
62
|
+
|
|
63
|
+
$> rails generate active_admin:resource [MyModelName]
|
|
64
|
+
|
|
65
|
+
This creates a file at <tt>app/admin/my_model_names.rb</tt> for configuring the resource.
|
|
66
|
+
Refresh your web browser to see the interface.
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
== Next Steps
|
|
70
|
+
|
|
71
|
+
The best place to get documentation is at http://activeadmin.info/documentation.html.
|
|
72
|
+
|
|
73
|
+
To view a sample Active Admin application, checkout http://demo.activeadmin.info
|
|
74
|
+
|
|
75
|
+
If you have any questions, please email the mailing list at http://groups.google.com/group/activeadmin
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
== Tools Being Used
|
|
79
|
+
|
|
80
|
+
We believe strongly in not writing code unless we have to, so Active Admin is built using many
|
|
81
|
+
other open source projects:
|
|
82
|
+
|
|
83
|
+
InheritedResources::
|
|
84
|
+
Inherited Resources speeds up development by making your controllers inherit all restful
|
|
85
|
+
actions so you just have to focus on what is important.
|
|
86
|
+
Formtastic::
|
|
87
|
+
A DSL for semantically building amazing forms.
|
|
88
|
+
Devise::
|
|
89
|
+
User authentication is done using Devise
|
|
90
|
+
Kaminari::
|
|
91
|
+
Pagination for rails apps
|
|
92
|
+
Iconic Icons::
|
|
93
|
+
Excellent SVG icon set designed by P.J. Onori: http://somerandomdude.com/projects/iconic
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
== Roadmap & Issue Tracking
|
|
97
|
+
|
|
98
|
+
We are using the awesome Github issues! Please submit bugs or features to
|
|
99
|
+
https://github.com/gregbell/active_admin/issues
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
== Note on Patches/Pull Requests
|
|
103
|
+
|
|
104
|
+
* Fork the project.
|
|
105
|
+
* Make a NEW TOPIC BRANCH, then make your feature addition or bug fix
|
|
106
|
+
* Add specs and cukes for it. This is important so I don't break it in a
|
|
107
|
+
future version unintentionally.
|
|
108
|
+
* Commit, do not mess with rakefile, version, or history.
|
|
109
|
+
* Send a pull request.
|
|
110
|
+
|
|
111
|
+
== Copyright
|
|
112
|
+
|
|
113
|
+
Copyright (c) 2010 Greg Bell, VersaPay Corporation. See LICENSE for details.
|