admin_assistant 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +16 -0
- data/Rakefile +34 -6
- data/VERSION +1 -0
- data/admin_assistant.gemspec +440 -0
- data/doc/img/blog_posts-index.png +0 -0
- data/install.rb +25 -4
- data/lib/admin_assistant/active_record_column.rb +133 -45
- data/lib/admin_assistant/association_target.rb +16 -3
- data/lib/admin_assistant/belongs_to_column.rb +18 -10
- data/lib/admin_assistant/builder.rb +67 -30
- data/lib/admin_assistant/column.rb +153 -71
- data/lib/admin_assistant/date_time_range_end_point_selector.rb +340 -0
- data/lib/admin_assistant/default_search_column.rb +3 -7
- data/lib/admin_assistant/form_view.rb +114 -10
- data/lib/admin_assistant/has_many_column.rb +56 -0
- data/lib/admin_assistant/index.rb +220 -83
- data/lib/admin_assistant/polymorphic_belongs_to_column.rb +1 -1
- data/lib/admin_assistant/request/base.rb +196 -67
- data/lib/admin_assistant/request/create.rb +55 -7
- data/lib/admin_assistant/request/edit.rb +1 -2
- data/lib/admin_assistant/request/index.rb +16 -9
- data/lib/admin_assistant/request/new.rb +19 -7
- data/lib/admin_assistant/request/update.rb +28 -13
- data/lib/admin_assistant/search.rb +17 -2
- data/lib/admin_assistant/virtual_column.rb +15 -7
- data/lib/admin_assistant.rb +101 -81
- data/lib/javascripts/admin_assistant.js +1 -1
- data/lib/stylesheets/activescaffold.css +6 -1
- data/lib/stylesheets/default.css +17 -0
- data/lib/views/form.html.erb +7 -3
- data/lib/views/index.html.erb +13 -8
- data/lib/views/multi_form.html.erb +71 -0
- data/lib/views/show.html.erb +4 -4
- data/test_rails_app/README +256 -0
- data/test_rails_app/Rakefile +13 -0
- data/test_rails_app/app/controllers/admin/appointments2_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/appointments_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/blog_posts2_controller.rb +138 -0
- data/test_rails_app/app/controllers/admin/blog_posts3_controller.rb +76 -0
- data/test_rails_app/app/controllers/admin/blog_posts4_controller.rb +21 -0
- data/test_rails_app/app/controllers/admin/blog_posts5_controller.rb +27 -0
- data/test_rails_app/app/controllers/admin/blog_posts6_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/blog_posts_controller.rb +8 -0
- data/test_rails_app/app/controllers/admin/blog_posts_custom_new_and_edit_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/blog_posts_read_only_controller.rb +19 -0
- data/test_rails_app/app/controllers/admin/bookmarks_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/comments2_controller.rb +14 -0
- data/test_rails_app/app/controllers/admin/comments_controller.rb +12 -0
- data/test_rails_app/app/controllers/admin/file_column_images2_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/file_column_images_controller.rb +6 -0
- data/test_rails_app/app/controllers/admin/images2_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/images_controller.rb +6 -0
- data/test_rails_app/app/controllers/admin/misconfigured1_controller.rb +7 -0
- data/test_rails_app/app/controllers/admin/not_migrated_yets_controller.rb +9 -0
- data/test_rails_app/app/controllers/admin/product_categories2_controller.rb +7 -0
- data/test_rails_app/app/controllers/admin/product_categories_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/products2_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/products_controller.rb +31 -0
- data/test_rails_app/app/controllers/admin/television_airings_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/television_time_slots_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/users2_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/users_controller.rb +63 -0
- data/test_rails_app/app/controllers/application.rb +16 -0
- data/test_rails_app/app/controllers/application_controller.rb +16 -0
- data/test_rails_app/app/controllers/blog_posts_controller.rb +5 -0
- data/test_rails_app/app/helpers/admin/appointments2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/appointments_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts2_helper.rb +27 -0
- data/test_rails_app/app/helpers/admin/blog_posts3_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts4_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts6_helper.rb +16 -0
- data/test_rails_app/app/helpers/admin/blog_posts_custom_new_and_edit_helper.rb +29 -0
- data/test_rails_app/app/helpers/admin/blog_posts_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts_read_only_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/bookmarks_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/comments2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/comments_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/file_column_images2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/file_column_images_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/images2_helper.rb +8 -0
- data/test_rails_app/app/helpers/admin/images_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/misconfigured1_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/not_migrated_yets_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/product_categories2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/product_categories_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/products2_helper.rb +3 -0
- data/test_rails_app/app/helpers/admin/products_helper.rb +6 -0
- data/test_rails_app/app/helpers/admin/television_airings_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/television_time_slots_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/users2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/users_helper.rb +25 -0
- data/test_rails_app/app/helpers/application_helper.rb +3 -0
- data/test_rails_app/app/helpers/blog_posts_helper.rb +2 -0
- data/test_rails_app/app/models/appointment.rb +5 -0
- data/test_rails_app/app/models/blog_post.rb +14 -0
- data/test_rails_app/app/models/blog_post_tag.rb +6 -0
- data/test_rails_app/app/models/bookmark.rb +6 -0
- data/test_rails_app/app/models/comment.rb +4 -0
- data/test_rails_app/app/models/file_column_image.rb +3 -0
- data/test_rails_app/app/models/image.rb +3 -0
- data/test_rails_app/app/models/not_migrated_yet.rb +2 -0
- data/test_rails_app/app/models/product.rb +7 -0
- data/test_rails_app/app/models/product_category.rb +9 -0
- data/test_rails_app/app/models/tag.rb +4 -0
- data/test_rails_app/app/models/television_airing.rb +3 -0
- data/test_rails_app/app/models/television_time_slot.rb +11 -0
- data/test_rails_app/app/models/user.rb +14 -0
- data/test_rails_app/app/views/admin/appointments/_subject_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/appointments2/_time_input.html.erb +31 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_form.html.erb +5 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_index.html.erb +1 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_tags_input.html.erb +16 -0
- data/test_rails_app/app/views/admin/blog_posts2/_before_index.html.erb +2 -0
- data/test_rails_app/app/views/admin/blog_posts5/_after_index_header.html.erb +8 -0
- data/test_rails_app/app/views/admin/blog_posts_read_only/_body_for_show.html.erb +1 -0
- data/test_rails_app/app/views/admin/products/_name_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/products/_percent_off_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/products/_price_input.html.erb +10 -0
- data/test_rails_app/app/views/blog_posts/show.html.erb +13 -0
- data/test_rails_app/app/views/layouts/admin.html.erb +31 -0
- data/test_rails_app/config/boot.rb +109 -0
- data/test_rails_app/config/database.yml +28 -0
- data/test_rails_app/config/environment.rb +78 -0
- data/test_rails_app/config/environments/development.rb +17 -0
- data/test_rails_app/config/environments/production.rb +24 -0
- data/test_rails_app/config/environments/test.rb +24 -0
- data/test_rails_app/config/initializers/inflections.rb +10 -0
- data/test_rails_app/config/initializers/mime_types.rb +5 -0
- data/test_rails_app/config/initializers/new_rails_defaults.rb +17 -0
- data/test_rails_app/config/locales/en.yml +5 -0
- data/test_rails_app/config/routes.rb +43 -0
- data/test_rails_app/db/migrate/20090213215514_create_blog_posts.rb +12 -0
- data/test_rails_app/db/migrate/20090217225542_add_body_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090221220917_create_tags.rb +13 -0
- data/test_rails_app/db/migrate/20090221220947_create_blog_post_tags.rb +14 -0
- data/test_rails_app/db/migrate/20090222162204_add_textile_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090222163231_add_published_at_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090301191722_create_images.rb +16 -0
- data/test_rails_app/db/migrate/20090305165345_create_accounts.rb +14 -0
- data/test_rails_app/db/migrate/20090307225027_rename_accounts_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090307225750_add_user_id_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090309185114_change_blog_posts_textile.rb +9 -0
- data/test_rails_app/db/migrate/20090309193635_create_products.rb +14 -0
- data/test_rails_app/db/migrate/20090309203056_create_comments.rb +15 -0
- data/test_rails_app/db/migrate/20090323005947_create_file_column_images.rb +12 -0
- data/test_rails_app/db/migrate/20090326160049_add_birthday_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090326223606_add_state_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090503134004_add_file_column_image_to_products.rb +9 -0
- data/test_rails_app/db/migrate/20090617173651_create_bookmarks.rb +15 -0
- data/test_rails_app/db/migrate/20090624165355_add_tags_string_to_blog_post.rb +9 -0
- data/test_rails_app/db/migrate/20090625144313_add_avatar_fields_to_user.rb +11 -0
- data/test_rails_app/db/migrate/20090629202956_add_merged_into_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090701171857_add_force_textile_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090704163647_add_deleted_at_to_products.rb +9 -0
- data/test_rails_app/db/migrate/20090704173800_add_sale_fields_to_products.rb +13 -0
- data/test_rails_app/db/migrate/20090714024501_create_product_categories.rb +15 -0
- data/test_rails_app/db/migrate/20090819162835_add_admin_level_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20091115134559_add_first_and_last_names_to_users.rb +11 -0
- data/test_rails_app/db/migrate/20091221011256_add_position_to_product_categories.rb +9 -0
- data/test_rails_app/db/migrate/20091222160814_create_appointments.rb +14 -0
- data/test_rails_app/db/migrate/20091227224547_add_user_id_to_appointments.rb +9 -0
- data/test_rails_app/db/migrate/20100214213359_create_television_time_slots.rb +13 -0
- data/test_rails_app/db/migrate/20100214213451_create_television_airings.rb +15 -0
- data/test_rails_app/doc/README_FOR_APP +5 -0
- data/test_rails_app/lib/tasks/rspec.rake +163 -0
- data/test_rails_app/public/404.html +30 -0
- data/test_rails_app/public/422.html +30 -0
- data/test_rails_app/public/500.html +33 -0
- data/test_rails_app/public/dispatch.cgi +10 -0
- data/test_rails_app/public/dispatch.fcgi +24 -0
- data/test_rails_app/public/dispatch.rb +10 -0
- data/test_rails_app/public/favicon.ico +0 -0
- data/test_rails_app/public/images/rails.png +0 -0
- data/test_rails_app/public/index.html +274 -0
- data/test_rails_app/public/javascripts/application.js +2 -0
- data/test_rails_app/public/javascripts/controls.js +963 -0
- data/test_rails_app/public/javascripts/dragdrop.js +973 -0
- data/test_rails_app/public/javascripts/effects.js +1128 -0
- data/test_rails_app/public/javascripts/prototype.js +4320 -0
- data/test_rails_app/public/robots.txt +5 -0
- data/test_rails_app/public/stylesheets/admin.css +3 -0
- data/test_rails_app/public/stylesheets/scaffold.css +54 -0
- data/test_rails_app/script/about +4 -0
- data/test_rails_app/script/autospec +5 -0
- data/test_rails_app/script/console +3 -0
- data/test_rails_app/script/dbconsole +3 -0
- data/test_rails_app/script/destroy +3 -0
- data/test_rails_app/script/generate +3 -0
- data/test_rails_app/script/performance/benchmarker +3 -0
- data/test_rails_app/script/performance/profiler +3 -0
- data/test_rails_app/script/performance/request +3 -0
- data/test_rails_app/script/plugin +3 -0
- data/test_rails_app/script/populate_tables.rb +49 -0
- data/test_rails_app/script/process/inspector +3 -0
- data/test_rails_app/script/process/reaper +3 -0
- data/test_rails_app/script/process/spawner +3 -0
- data/test_rails_app/script/runner +3 -0
- data/test_rails_app/script/server +3 -0
- data/test_rails_app/script/spec +5 -0
- data/test_rails_app/script/spec_server +125 -0
- data/test_rails_app/spec/controllers/admin/appointments2_controller_spec.rb +88 -0
- data/test_rails_app/spec/controllers/admin/appointments_controller_spec.rb +419 -0
- data/test_rails_app/spec/controllers/admin/blog_posts2_controller_spec.rb +1021 -0
- data/test_rails_app/spec/controllers/admin/blog_posts3_controller_spec.rb +532 -0
- data/test_rails_app/spec/controllers/admin/blog_posts4_controller_spec.rb +231 -0
- data/test_rails_app/spec/controllers/admin/blog_posts5_controller_spec.rb +77 -0
- data/test_rails_app/spec/controllers/admin/blog_posts6_controller_spec.rb +49 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_controller_spec.rb +987 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_custom_new_and_edit_controller_spec.rb +99 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_read_only_controller_spec.rb +94 -0
- data/test_rails_app/spec/controllers/admin/bookmarks_controller_spec.rb +505 -0
- data/test_rails_app/spec/controllers/admin/comments2_controller_spec.rb +70 -0
- data/test_rails_app/spec/controllers/admin/comments_controller_spec.rb +82 -0
- data/test_rails_app/spec/controllers/admin/file_column_images2_controller_spec.rb +25 -0
- data/test_rails_app/spec/controllers/admin/file_column_images_controller_spec.rb +82 -0
- data/test_rails_app/spec/controllers/admin/images2_controller_spec.rb +44 -0
- data/test_rails_app/spec/controllers/admin/images_controller_spec.rb +97 -0
- data/test_rails_app/spec/controllers/admin/misconfigured1_controller_spec.rb +21 -0
- data/test_rails_app/spec/controllers/admin/not_migrated_yets_controller_spec.rb +10 -0
- data/test_rails_app/spec/controllers/admin/product_categories2_controller_spec.rb +215 -0
- data/test_rails_app/spec/controllers/admin/product_categories_controller_spec.rb +19 -0
- data/test_rails_app/spec/controllers/admin/products2_controller_spec.rb +203 -0
- data/test_rails_app/spec/controllers/admin/products_controller_spec.rb +255 -0
- data/test_rails_app/spec/controllers/admin/television_airings_controller_spec.rb +32 -0
- data/test_rails_app/spec/controllers/admin/television_time_slots_controller_spec.rb +10 -0
- data/test_rails_app/spec/controllers/admin/users2_controller_spec.rb +65 -0
- data/test_rails_app/spec/controllers/admin/users_controller_spec.rb +344 -0
- data/test_rails_app/spec/controllers/blog_posts_controller_spec.rb +13 -0
- data/test_rails_app/spec/data/ruby_throated.jpg +0 -0
- data/test_rails_app/spec/data/tweenbot.jpg +0 -0
- data/test_rails_app/spec/fixtures/appointments.yml +9 -0
- data/test_rails_app/spec/fixtures/blog_post_tags.yml +9 -0
- data/test_rails_app/spec/fixtures/blog_posts.yml +7 -0
- data/test_rails_app/spec/fixtures/bookmarks.yml +11 -0
- data/test_rails_app/spec/fixtures/comments.yml +11 -0
- data/test_rails_app/spec/fixtures/file_column_images.yml +7 -0
- data/test_rails_app/spec/fixtures/images.yml +7 -0
- data/test_rails_app/spec/fixtures/not_migrated_yets.yml +7 -0
- data/test_rails_app/spec/fixtures/product_categories.yml +7 -0
- data/test_rails_app/spec/fixtures/products.yml +9 -0
- data/test_rails_app/spec/fixtures/tags.yml +7 -0
- data/test_rails_app/spec/fixtures/television_airings.yml +11 -0
- data/test_rails_app/spec/fixtures/television_time_slots.yml +7 -0
- data/test_rails_app/spec/fixtures/users.yml +9 -0
- data/test_rails_app/spec/helpers/admin/appointments2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/appointments_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts3_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts4_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_custom_new_and_edit_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_read_only_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/bookmarks_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/comments2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/comments_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/file_column_images2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/file_column_images_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/images2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/images_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/misconfigured1_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/not_migrated_yets_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/product_categories2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/product_categories_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/products2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/products_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/television_airings_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/television_time_slots_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/users2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/users_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/blog_posts_helper_spec.rb +11 -0
- data/test_rails_app/spec/models/appointment_spec.rb +16 -0
- data/test_rails_app/spec/models/blog_post_spec.rb +13 -0
- data/test_rails_app/spec/models/blog_post_tag_spec.rb +14 -0
- data/test_rails_app/spec/models/bookmark_spec.rb +15 -0
- data/test_rails_app/spec/models/comment_spec.rb +15 -0
- data/test_rails_app/spec/models/file_column_image_spec.rb +12 -0
- data/test_rails_app/spec/models/image_spec.rb +12 -0
- data/test_rails_app/spec/models/not_migrated_yet_spec.rb +15 -0
- data/test_rails_app/spec/models/product_category_spec.rb +15 -0
- data/test_rails_app/spec/models/product_spec.rb +14 -0
- data/test_rails_app/spec/models/tag_spec.rb +13 -0
- data/test_rails_app/spec/models/television_airing_spec.rb +15 -0
- data/test_rails_app/spec/models/television_time_slot_spec.rb +13 -0
- data/test_rails_app/spec/models/user_spec.rb +14 -0
- data/test_rails_app/spec/rcov.opts +2 -0
- data/test_rails_app/spec/spec.opts +4 -0
- data/test_rails_app/spec/spec_helper.rb +88 -0
- data/test_rails_app/spec/spec_or_test_helper.rb +49 -0
- data/test_rails_app/test/fixtures/file_column_images.yml +7 -0
- data/test_rails_app/test/integration/admin_blog_posts2_integration_test.rb +16 -0
- data/test_rails_app/test/integration/admin_blog_posts5_integration_test.rb +19 -0
- data/test_rails_app/test/integration/admin_blog_posts_integration_test.rb +25 -0
- data/test_rails_app/test/test_helper.rb +28 -0
- data/test_rails_app/vendor/plugins/file_column/CHANGELOG +69 -0
- data/test_rails_app/vendor/plugins/file_column/README +54 -0
- data/test_rails_app/vendor/plugins/file_column/Rakefile +36 -0
- data/test_rails_app/vendor/plugins/file_column/TODO +6 -0
- data/test_rails_app/vendor/plugins/file_column/init.rb +13 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_column.rb +723 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_column_helper.rb +150 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_compat.rb +28 -0
- data/test_rails_app/vendor/plugins/file_column/lib/magick_file_column.rb +260 -0
- data/test_rails_app/vendor/plugins/file_column/lib/rails_file_column.rb +19 -0
- data/test_rails_app/vendor/plugins/file_column/lib/test_case.rb +124 -0
- data/test_rails_app/vendor/plugins/file_column/lib/validations.rb +112 -0
- data/test_rails_app/vendor/plugins/file_column/test/abstract_unit.rb +63 -0
- data/test_rails_app/vendor/plugins/file_column/test/connection.rb +17 -0
- data/test_rails_app/vendor/plugins/file_column/test/file_column_helper_test.rb +97 -0
- data/test_rails_app/vendor/plugins/file_column/test/file_column_test.rb +650 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/entry.rb +32 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/invalid-image.jpg +1 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/kerb.jpg +0 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/mysql.sql +25 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/schema.rb +10 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/skanthak.png +0 -0
- data/test_rails_app/vendor/plugins/file_column/test/magick_test.rb +380 -0
- data/test_rails_app/vendor/plugins/file_column/test/magick_view_only_test.rb +21 -0
- data/vendor/ar_query/ar_query.gemspec +16 -0
- data/website/_layouts/api.html +39 -0
- data/website/_layouts/default.html +34 -0
- data/website/api/core.markdown +106 -0
- data/website/api/destroy.markdown +25 -0
- data/website/api/form.markdown +291 -0
- data/website/api/idx.markdown +286 -0
- data/website/api/index.markdown +147 -0
- data/website/api/search.markdown +108 -0
- data/website/api/show.markdown +22 -0
- data/website/community.markdown +27 -0
- data/website/css/lightbox.css +29 -0
- data/website/css/main.css +70 -0
- data/website/design_principles.markdown +50 -0
- data/website/getting_started.markdown +10 -0
- data/website/img/blog_posts-index.png +0 -0
- data/website/img/blog_posts-search.png +0 -0
- data/website/img/lightbox/bullet.gif +0 -0
- data/website/img/lightbox/close.gif +0 -0
- data/website/img/lightbox/closelabel.gif +0 -0
- data/website/img/lightbox/donate-button.gif +0 -0
- data/website/img/lightbox/download-icon.gif +0 -0
- data/website/img/lightbox/image-1.jpg +0 -0
- data/website/img/lightbox/loading.gif +0 -0
- data/website/img/lightbox/nextlabel.gif +0 -0
- data/website/img/lightbox/prevlabel.gif +0 -0
- data/website/img/lightbox/thumb-1.jpg +0 -0
- data/website/img/screen1-thumb.png +0 -0
- data/website/img/screen1.png +0 -0
- data/website/img/screen10-thumb.png +0 -0
- data/website/img/screen10.png +0 -0
- data/website/img/screen11-thumb.png +0 -0
- data/website/img/screen11.png +0 -0
- data/website/img/screen2-thumb.png +0 -0
- data/website/img/screen2.png +0 -0
- data/website/img/screen3-thumb.png +0 -0
- data/website/img/screen3.png +0 -0
- data/website/img/screen4-thumb.png +0 -0
- data/website/img/screen4.png +0 -0
- data/website/img/screen5-thumb.png +0 -0
- data/website/img/screen5.png +0 -0
- data/website/img/screen6-thumb.png +0 -0
- data/website/img/screen6.png +0 -0
- data/website/img/screen7-thumb.png +0 -0
- data/website/img/screen7.png +0 -0
- data/website/img/screen8-thumb.png +0 -0
- data/website/img/screen8.png +0 -0
- data/website/img/screen9-thumb.png +0 -0
- data/website/img/screen9.png +0 -0
- data/website/img/user-form.png +0 -0
- data/website/index.markdown +35 -0
- data/website/js/builder.js +136 -0
- data/website/js/effects.js +1122 -0
- data/website/js/lightbox.js +497 -0
- data/website/js/prototype.js +4221 -0
- data/website/js/scriptaculous.js +58 -0
- data/website/quick_start.markdown +44 -0
- data/website/screenshots.markdown +27 -0
- data/website/tutorial.markdown +56 -0
- metadata +391 -23
data/.gitignore
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
pkg/*
|
2
|
+
test_rails_app/db/*.sqlite3
|
3
|
+
test_rails_app/log/*.log
|
4
|
+
test_rails_app/db/schema.rb
|
5
|
+
test_rails_app/public/images/*
|
6
|
+
test_rails_app/public/javascripts/admin_assistant.js
|
7
|
+
test_rails_app/public/stylesheets/admin_assistant*.css
|
8
|
+
test_rails_app/public/stylesheets/admin_assistant/*.css
|
9
|
+
test_rails_app/public/file_column_image/*
|
10
|
+
test_rails_app/public/product/*
|
11
|
+
test_rails_app/public/system/*
|
12
|
+
test_rails_app/public/user/*
|
13
|
+
test_rails_app/tmp/*
|
14
|
+
test_rails_app/webrat-*.html
|
15
|
+
website/_site
|
16
|
+
*~
|
data/Rakefile
CHANGED
@@ -26,11 +26,39 @@ end
|
|
26
26
|
|
27
27
|
desc 'Run all specs across all supported Rails gem versions.'
|
28
28
|
task :spec do
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
29
|
+
supported_versions = %w(2.1.0 2.1.2 2.2.2 2.3.2 2.3.3 2.3.4)
|
30
|
+
locally_installed_versions =
|
31
|
+
`gem list --local rails`.split(/\n/).
|
32
|
+
detect { |l| l=~ /^rails / }.strip.
|
33
|
+
gsub(/^.*\((.*)\).*$/, '\1').split(/\s*,\s*/)
|
34
|
+
missing = supported_versions - locally_installed_versions
|
35
|
+
if !missing.empty?
|
36
|
+
puts "Missing Rails versions #{missing.join(',')}; please install and then re-run tests"
|
37
|
+
else
|
38
|
+
cmd = "cd test_rails_app && " + (
|
39
|
+
supported_versions.map { |version|
|
40
|
+
"echo '===== Testing #{version} =====' && RAILS_GEM_VERSION=#{version} rake"
|
41
|
+
}.join(" && ")
|
42
|
+
)
|
43
|
+
puts cmd
|
44
|
+
puts `#{cmd}`
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
begin
|
49
|
+
require 'jeweler'
|
50
|
+
Jeweler::Tasks.new do |gem|
|
51
|
+
gem.name = "admin_assistant"
|
52
|
+
gem.summary = %Q{admin_assistant is a Rails plugin that automates a lot of features typically needed in admin interfaces.}
|
53
|
+
gem.description = %Q{admin_assistant is a Rails plugin that automates a lot of features typically needed in admin interfaces.}
|
54
|
+
gem.email = "sera@fhwang.net"
|
55
|
+
gem.homepage = "http://github.com/fhwang/admin_assistant"
|
56
|
+
gem.authors = ["Francis Hwang"]
|
57
|
+
gem.add_dependency "will_paginate"
|
58
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
59
|
+
end
|
60
|
+
Jeweler::GemcutterTasks.new
|
61
|
+
rescue LoadError
|
62
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
35
63
|
end
|
36
64
|
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.1
|
@@ -0,0 +1,440 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{admin_assistant}
|
8
|
+
s.version = "1.0.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Francis Hwang"]
|
12
|
+
s.date = %q{2010-11-06}
|
13
|
+
s.description = %q{admin_assistant is a Rails plugin that automates a lot of features typically needed in admin interfaces.}
|
14
|
+
s.email = %q{sera@fhwang.net}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"README"
|
17
|
+
]
|
18
|
+
s.files = [
|
19
|
+
".gitignore",
|
20
|
+
"MIT-LICENSE",
|
21
|
+
"README",
|
22
|
+
"Rakefile",
|
23
|
+
"VERSION",
|
24
|
+
"admin_assistant.gemspec",
|
25
|
+
"doc/img/blog_posts-index.png",
|
26
|
+
"init.rb",
|
27
|
+
"install.rb",
|
28
|
+
"lib/admin_assistant.rb",
|
29
|
+
"lib/admin_assistant/active_record_column.rb",
|
30
|
+
"lib/admin_assistant/association_target.rb",
|
31
|
+
"lib/admin_assistant/belongs_to_column.rb",
|
32
|
+
"lib/admin_assistant/builder.rb",
|
33
|
+
"lib/admin_assistant/column.rb",
|
34
|
+
"lib/admin_assistant/date_time_range_end_point_selector.rb",
|
35
|
+
"lib/admin_assistant/default_search_column.rb",
|
36
|
+
"lib/admin_assistant/file_column_column.rb",
|
37
|
+
"lib/admin_assistant/form_view.rb",
|
38
|
+
"lib/admin_assistant/has_many_column.rb",
|
39
|
+
"lib/admin_assistant/helper.rb",
|
40
|
+
"lib/admin_assistant/index.rb",
|
41
|
+
"lib/admin_assistant/paperclip_column.rb",
|
42
|
+
"lib/admin_assistant/polymorphic_belongs_to_column.rb",
|
43
|
+
"lib/admin_assistant/request/autocomplete.rb",
|
44
|
+
"lib/admin_assistant/request/base.rb",
|
45
|
+
"lib/admin_assistant/request/create.rb",
|
46
|
+
"lib/admin_assistant/request/destroy.rb",
|
47
|
+
"lib/admin_assistant/request/edit.rb",
|
48
|
+
"lib/admin_assistant/request/index.rb",
|
49
|
+
"lib/admin_assistant/request/new.rb",
|
50
|
+
"lib/admin_assistant/request/show.rb",
|
51
|
+
"lib/admin_assistant/request/update.rb",
|
52
|
+
"lib/admin_assistant/search.rb",
|
53
|
+
"lib/admin_assistant/show_view.rb",
|
54
|
+
"lib/admin_assistant/virtual_column.rb",
|
55
|
+
"lib/images/sort-asc.png",
|
56
|
+
"lib/images/sort-desc.png",
|
57
|
+
"lib/javascripts/admin_assistant.js",
|
58
|
+
"lib/stylesheets/activescaffold.css",
|
59
|
+
"lib/stylesheets/default.css",
|
60
|
+
"lib/views/_polymorphic_field_search.html.erb",
|
61
|
+
"lib/views/_restricted_autocompleter.html.erb",
|
62
|
+
"lib/views/autocomplete.html.erb",
|
63
|
+
"lib/views/form.html.erb",
|
64
|
+
"lib/views/index.html.erb",
|
65
|
+
"lib/views/multi_form.html.erb",
|
66
|
+
"lib/views/show.html.erb",
|
67
|
+
"tasks/admin_assistant_tasks.rake",
|
68
|
+
"test_rails_app/README",
|
69
|
+
"test_rails_app/Rakefile",
|
70
|
+
"test_rails_app/app/controllers/admin/appointments2_controller.rb",
|
71
|
+
"test_rails_app/app/controllers/admin/appointments_controller.rb",
|
72
|
+
"test_rails_app/app/controllers/admin/blog_posts2_controller.rb",
|
73
|
+
"test_rails_app/app/controllers/admin/blog_posts3_controller.rb",
|
74
|
+
"test_rails_app/app/controllers/admin/blog_posts4_controller.rb",
|
75
|
+
"test_rails_app/app/controllers/admin/blog_posts5_controller.rb",
|
76
|
+
"test_rails_app/app/controllers/admin/blog_posts6_controller.rb",
|
77
|
+
"test_rails_app/app/controllers/admin/blog_posts_controller.rb",
|
78
|
+
"test_rails_app/app/controllers/admin/blog_posts_custom_new_and_edit_controller.rb",
|
79
|
+
"test_rails_app/app/controllers/admin/blog_posts_read_only_controller.rb",
|
80
|
+
"test_rails_app/app/controllers/admin/bookmarks_controller.rb",
|
81
|
+
"test_rails_app/app/controllers/admin/comments2_controller.rb",
|
82
|
+
"test_rails_app/app/controllers/admin/comments_controller.rb",
|
83
|
+
"test_rails_app/app/controllers/admin/file_column_images2_controller.rb",
|
84
|
+
"test_rails_app/app/controllers/admin/file_column_images_controller.rb",
|
85
|
+
"test_rails_app/app/controllers/admin/images2_controller.rb",
|
86
|
+
"test_rails_app/app/controllers/admin/images_controller.rb",
|
87
|
+
"test_rails_app/app/controllers/admin/misconfigured1_controller.rb",
|
88
|
+
"test_rails_app/app/controllers/admin/not_migrated_yets_controller.rb",
|
89
|
+
"test_rails_app/app/controllers/admin/product_categories2_controller.rb",
|
90
|
+
"test_rails_app/app/controllers/admin/product_categories_controller.rb",
|
91
|
+
"test_rails_app/app/controllers/admin/products2_controller.rb",
|
92
|
+
"test_rails_app/app/controllers/admin/products_controller.rb",
|
93
|
+
"test_rails_app/app/controllers/admin/television_airings_controller.rb",
|
94
|
+
"test_rails_app/app/controllers/admin/television_time_slots_controller.rb",
|
95
|
+
"test_rails_app/app/controllers/admin/users2_controller.rb",
|
96
|
+
"test_rails_app/app/controllers/admin/users_controller.rb",
|
97
|
+
"test_rails_app/app/controllers/application.rb",
|
98
|
+
"test_rails_app/app/controllers/application_controller.rb",
|
99
|
+
"test_rails_app/app/controllers/blog_posts_controller.rb",
|
100
|
+
"test_rails_app/app/helpers/admin/appointments2_helper.rb",
|
101
|
+
"test_rails_app/app/helpers/admin/appointments_helper.rb",
|
102
|
+
"test_rails_app/app/helpers/admin/blog_posts2_helper.rb",
|
103
|
+
"test_rails_app/app/helpers/admin/blog_posts3_helper.rb",
|
104
|
+
"test_rails_app/app/helpers/admin/blog_posts4_helper.rb",
|
105
|
+
"test_rails_app/app/helpers/admin/blog_posts6_helper.rb",
|
106
|
+
"test_rails_app/app/helpers/admin/blog_posts_custom_new_and_edit_helper.rb",
|
107
|
+
"test_rails_app/app/helpers/admin/blog_posts_helper.rb",
|
108
|
+
"test_rails_app/app/helpers/admin/blog_posts_read_only_helper.rb",
|
109
|
+
"test_rails_app/app/helpers/admin/bookmarks_helper.rb",
|
110
|
+
"test_rails_app/app/helpers/admin/comments2_helper.rb",
|
111
|
+
"test_rails_app/app/helpers/admin/comments_helper.rb",
|
112
|
+
"test_rails_app/app/helpers/admin/file_column_images2_helper.rb",
|
113
|
+
"test_rails_app/app/helpers/admin/file_column_images_helper.rb",
|
114
|
+
"test_rails_app/app/helpers/admin/images2_helper.rb",
|
115
|
+
"test_rails_app/app/helpers/admin/images_helper.rb",
|
116
|
+
"test_rails_app/app/helpers/admin/misconfigured1_helper.rb",
|
117
|
+
"test_rails_app/app/helpers/admin/not_migrated_yets_helper.rb",
|
118
|
+
"test_rails_app/app/helpers/admin/product_categories2_helper.rb",
|
119
|
+
"test_rails_app/app/helpers/admin/product_categories_helper.rb",
|
120
|
+
"test_rails_app/app/helpers/admin/products2_helper.rb",
|
121
|
+
"test_rails_app/app/helpers/admin/products_helper.rb",
|
122
|
+
"test_rails_app/app/helpers/admin/television_airings_helper.rb",
|
123
|
+
"test_rails_app/app/helpers/admin/television_time_slots_helper.rb",
|
124
|
+
"test_rails_app/app/helpers/admin/users2_helper.rb",
|
125
|
+
"test_rails_app/app/helpers/admin/users_helper.rb",
|
126
|
+
"test_rails_app/app/helpers/application_helper.rb",
|
127
|
+
"test_rails_app/app/helpers/blog_posts_helper.rb",
|
128
|
+
"test_rails_app/app/models/appointment.rb",
|
129
|
+
"test_rails_app/app/models/blog_post.rb",
|
130
|
+
"test_rails_app/app/models/blog_post_tag.rb",
|
131
|
+
"test_rails_app/app/models/bookmark.rb",
|
132
|
+
"test_rails_app/app/models/comment.rb",
|
133
|
+
"test_rails_app/app/models/file_column_image.rb",
|
134
|
+
"test_rails_app/app/models/image.rb",
|
135
|
+
"test_rails_app/app/models/not_migrated_yet.rb",
|
136
|
+
"test_rails_app/app/models/product.rb",
|
137
|
+
"test_rails_app/app/models/product_category.rb",
|
138
|
+
"test_rails_app/app/models/tag.rb",
|
139
|
+
"test_rails_app/app/models/television_airing.rb",
|
140
|
+
"test_rails_app/app/models/television_time_slot.rb",
|
141
|
+
"test_rails_app/app/models/user.rb",
|
142
|
+
"test_rails_app/app/views/admin/appointments/_subject_input.html.erb",
|
143
|
+
"test_rails_app/app/views/admin/appointments2/_time_input.html.erb",
|
144
|
+
"test_rails_app/app/views/admin/blog_posts2/_after_form.html.erb",
|
145
|
+
"test_rails_app/app/views/admin/blog_posts2/_after_index.html.erb",
|
146
|
+
"test_rails_app/app/views/admin/blog_posts2/_after_tags_input.html.erb",
|
147
|
+
"test_rails_app/app/views/admin/blog_posts2/_before_index.html.erb",
|
148
|
+
"test_rails_app/app/views/admin/blog_posts5/_after_index_header.html.erb",
|
149
|
+
"test_rails_app/app/views/admin/blog_posts_read_only/_body_for_show.html.erb",
|
150
|
+
"test_rails_app/app/views/admin/products/_name_input.html.erb",
|
151
|
+
"test_rails_app/app/views/admin/products/_percent_off_input.html.erb",
|
152
|
+
"test_rails_app/app/views/admin/products/_price_input.html.erb",
|
153
|
+
"test_rails_app/app/views/blog_posts/show.html.erb",
|
154
|
+
"test_rails_app/app/views/layouts/admin.html.erb",
|
155
|
+
"test_rails_app/config/boot.rb",
|
156
|
+
"test_rails_app/config/database.yml",
|
157
|
+
"test_rails_app/config/environment.rb",
|
158
|
+
"test_rails_app/config/environments/development.rb",
|
159
|
+
"test_rails_app/config/environments/production.rb",
|
160
|
+
"test_rails_app/config/environments/test.rb",
|
161
|
+
"test_rails_app/config/initializers/inflections.rb",
|
162
|
+
"test_rails_app/config/initializers/mime_types.rb",
|
163
|
+
"test_rails_app/config/initializers/new_rails_defaults.rb",
|
164
|
+
"test_rails_app/config/locales/en.yml",
|
165
|
+
"test_rails_app/config/routes.rb",
|
166
|
+
"test_rails_app/db/migrate/20090213215514_create_blog_posts.rb",
|
167
|
+
"test_rails_app/db/migrate/20090217225542_add_body_to_blog_posts.rb",
|
168
|
+
"test_rails_app/db/migrate/20090221220917_create_tags.rb",
|
169
|
+
"test_rails_app/db/migrate/20090221220947_create_blog_post_tags.rb",
|
170
|
+
"test_rails_app/db/migrate/20090222162204_add_textile_to_blog_posts.rb",
|
171
|
+
"test_rails_app/db/migrate/20090222163231_add_published_at_to_blog_posts.rb",
|
172
|
+
"test_rails_app/db/migrate/20090301191722_create_images.rb",
|
173
|
+
"test_rails_app/db/migrate/20090305165345_create_accounts.rb",
|
174
|
+
"test_rails_app/db/migrate/20090307225027_rename_accounts_to_users.rb",
|
175
|
+
"test_rails_app/db/migrate/20090307225750_add_user_id_to_blog_posts.rb",
|
176
|
+
"test_rails_app/db/migrate/20090309185114_change_blog_posts_textile.rb",
|
177
|
+
"test_rails_app/db/migrate/20090309193635_create_products.rb",
|
178
|
+
"test_rails_app/db/migrate/20090309203056_create_comments.rb",
|
179
|
+
"test_rails_app/db/migrate/20090323005947_create_file_column_images.rb",
|
180
|
+
"test_rails_app/db/migrate/20090326160049_add_birthday_to_users.rb",
|
181
|
+
"test_rails_app/db/migrate/20090326223606_add_state_to_users.rb",
|
182
|
+
"test_rails_app/db/migrate/20090503134004_add_file_column_image_to_products.rb",
|
183
|
+
"test_rails_app/db/migrate/20090617173651_create_bookmarks.rb",
|
184
|
+
"test_rails_app/db/migrate/20090624165355_add_tags_string_to_blog_post.rb",
|
185
|
+
"test_rails_app/db/migrate/20090625144313_add_avatar_fields_to_user.rb",
|
186
|
+
"test_rails_app/db/migrate/20090629202956_add_merged_into_to_blog_posts.rb",
|
187
|
+
"test_rails_app/db/migrate/20090701171857_add_force_textile_to_users.rb",
|
188
|
+
"test_rails_app/db/migrate/20090704163647_add_deleted_at_to_products.rb",
|
189
|
+
"test_rails_app/db/migrate/20090704173800_add_sale_fields_to_products.rb",
|
190
|
+
"test_rails_app/db/migrate/20090714024501_create_product_categories.rb",
|
191
|
+
"test_rails_app/db/migrate/20090819162835_add_admin_level_to_users.rb",
|
192
|
+
"test_rails_app/db/migrate/20091115134559_add_first_and_last_names_to_users.rb",
|
193
|
+
"test_rails_app/db/migrate/20091221011256_add_position_to_product_categories.rb",
|
194
|
+
"test_rails_app/db/migrate/20091222160814_create_appointments.rb",
|
195
|
+
"test_rails_app/db/migrate/20091227224547_add_user_id_to_appointments.rb",
|
196
|
+
"test_rails_app/db/migrate/20100214213359_create_television_time_slots.rb",
|
197
|
+
"test_rails_app/db/migrate/20100214213451_create_television_airings.rb",
|
198
|
+
"test_rails_app/doc/README_FOR_APP",
|
199
|
+
"test_rails_app/lib/tasks/rspec.rake",
|
200
|
+
"test_rails_app/public/404.html",
|
201
|
+
"test_rails_app/public/422.html",
|
202
|
+
"test_rails_app/public/500.html",
|
203
|
+
"test_rails_app/public/dispatch.cgi",
|
204
|
+
"test_rails_app/public/dispatch.fcgi",
|
205
|
+
"test_rails_app/public/dispatch.rb",
|
206
|
+
"test_rails_app/public/favicon.ico",
|
207
|
+
"test_rails_app/public/images/rails.png",
|
208
|
+
"test_rails_app/public/index.html",
|
209
|
+
"test_rails_app/public/javascripts/application.js",
|
210
|
+
"test_rails_app/public/javascripts/controls.js",
|
211
|
+
"test_rails_app/public/javascripts/dragdrop.js",
|
212
|
+
"test_rails_app/public/javascripts/effects.js",
|
213
|
+
"test_rails_app/public/javascripts/prototype.js",
|
214
|
+
"test_rails_app/public/robots.txt",
|
215
|
+
"test_rails_app/public/stylesheets/admin.css",
|
216
|
+
"test_rails_app/public/stylesheets/scaffold.css",
|
217
|
+
"test_rails_app/script/about",
|
218
|
+
"test_rails_app/script/autospec",
|
219
|
+
"test_rails_app/script/console",
|
220
|
+
"test_rails_app/script/dbconsole",
|
221
|
+
"test_rails_app/script/destroy",
|
222
|
+
"test_rails_app/script/generate",
|
223
|
+
"test_rails_app/script/performance/benchmarker",
|
224
|
+
"test_rails_app/script/performance/profiler",
|
225
|
+
"test_rails_app/script/performance/request",
|
226
|
+
"test_rails_app/script/plugin",
|
227
|
+
"test_rails_app/script/populate_tables.rb",
|
228
|
+
"test_rails_app/script/process/inspector",
|
229
|
+
"test_rails_app/script/process/reaper",
|
230
|
+
"test_rails_app/script/process/spawner",
|
231
|
+
"test_rails_app/script/runner",
|
232
|
+
"test_rails_app/script/server",
|
233
|
+
"test_rails_app/script/spec",
|
234
|
+
"test_rails_app/script/spec_server",
|
235
|
+
"test_rails_app/spec/controllers/admin/appointments2_controller_spec.rb",
|
236
|
+
"test_rails_app/spec/controllers/admin/appointments_controller_spec.rb",
|
237
|
+
"test_rails_app/spec/controllers/admin/blog_posts2_controller_spec.rb",
|
238
|
+
"test_rails_app/spec/controllers/admin/blog_posts3_controller_spec.rb",
|
239
|
+
"test_rails_app/spec/controllers/admin/blog_posts4_controller_spec.rb",
|
240
|
+
"test_rails_app/spec/controllers/admin/blog_posts5_controller_spec.rb",
|
241
|
+
"test_rails_app/spec/controllers/admin/blog_posts6_controller_spec.rb",
|
242
|
+
"test_rails_app/spec/controllers/admin/blog_posts_controller_spec.rb",
|
243
|
+
"test_rails_app/spec/controllers/admin/blog_posts_custom_new_and_edit_controller_spec.rb",
|
244
|
+
"test_rails_app/spec/controllers/admin/blog_posts_read_only_controller_spec.rb",
|
245
|
+
"test_rails_app/spec/controllers/admin/bookmarks_controller_spec.rb",
|
246
|
+
"test_rails_app/spec/controllers/admin/comments2_controller_spec.rb",
|
247
|
+
"test_rails_app/spec/controllers/admin/comments_controller_spec.rb",
|
248
|
+
"test_rails_app/spec/controllers/admin/file_column_images2_controller_spec.rb",
|
249
|
+
"test_rails_app/spec/controllers/admin/file_column_images_controller_spec.rb",
|
250
|
+
"test_rails_app/spec/controllers/admin/images2_controller_spec.rb",
|
251
|
+
"test_rails_app/spec/controllers/admin/images_controller_spec.rb",
|
252
|
+
"test_rails_app/spec/controllers/admin/misconfigured1_controller_spec.rb",
|
253
|
+
"test_rails_app/spec/controllers/admin/not_migrated_yets_controller_spec.rb",
|
254
|
+
"test_rails_app/spec/controllers/admin/product_categories2_controller_spec.rb",
|
255
|
+
"test_rails_app/spec/controllers/admin/product_categories_controller_spec.rb",
|
256
|
+
"test_rails_app/spec/controllers/admin/products2_controller_spec.rb",
|
257
|
+
"test_rails_app/spec/controllers/admin/products_controller_spec.rb",
|
258
|
+
"test_rails_app/spec/controllers/admin/television_airings_controller_spec.rb",
|
259
|
+
"test_rails_app/spec/controllers/admin/television_time_slots_controller_spec.rb",
|
260
|
+
"test_rails_app/spec/controllers/admin/users2_controller_spec.rb",
|
261
|
+
"test_rails_app/spec/controllers/admin/users_controller_spec.rb",
|
262
|
+
"test_rails_app/spec/controllers/blog_posts_controller_spec.rb",
|
263
|
+
"test_rails_app/spec/data/ruby_throated.jpg",
|
264
|
+
"test_rails_app/spec/data/tweenbot.jpg",
|
265
|
+
"test_rails_app/spec/fixtures/appointments.yml",
|
266
|
+
"test_rails_app/spec/fixtures/blog_post_tags.yml",
|
267
|
+
"test_rails_app/spec/fixtures/blog_posts.yml",
|
268
|
+
"test_rails_app/spec/fixtures/bookmarks.yml",
|
269
|
+
"test_rails_app/spec/fixtures/comments.yml",
|
270
|
+
"test_rails_app/spec/fixtures/file_column_images.yml",
|
271
|
+
"test_rails_app/spec/fixtures/images.yml",
|
272
|
+
"test_rails_app/spec/fixtures/not_migrated_yets.yml",
|
273
|
+
"test_rails_app/spec/fixtures/product_categories.yml",
|
274
|
+
"test_rails_app/spec/fixtures/products.yml",
|
275
|
+
"test_rails_app/spec/fixtures/tags.yml",
|
276
|
+
"test_rails_app/spec/fixtures/television_airings.yml",
|
277
|
+
"test_rails_app/spec/fixtures/television_time_slots.yml",
|
278
|
+
"test_rails_app/spec/fixtures/users.yml",
|
279
|
+
"test_rails_app/spec/helpers/admin/appointments2_helper_spec.rb",
|
280
|
+
"test_rails_app/spec/helpers/admin/appointments_helper_spec.rb",
|
281
|
+
"test_rails_app/spec/helpers/admin/blog_posts2_helper_spec.rb",
|
282
|
+
"test_rails_app/spec/helpers/admin/blog_posts3_helper_spec.rb",
|
283
|
+
"test_rails_app/spec/helpers/admin/blog_posts4_helper_spec.rb",
|
284
|
+
"test_rails_app/spec/helpers/admin/blog_posts_custom_new_and_edit_helper_spec.rb",
|
285
|
+
"test_rails_app/spec/helpers/admin/blog_posts_helper_spec.rb",
|
286
|
+
"test_rails_app/spec/helpers/admin/blog_posts_read_only_helper_spec.rb",
|
287
|
+
"test_rails_app/spec/helpers/admin/bookmarks_helper_spec.rb",
|
288
|
+
"test_rails_app/spec/helpers/admin/comments2_helper_spec.rb",
|
289
|
+
"test_rails_app/spec/helpers/admin/comments_helper_spec.rb",
|
290
|
+
"test_rails_app/spec/helpers/admin/file_column_images2_helper_spec.rb",
|
291
|
+
"test_rails_app/spec/helpers/admin/file_column_images_helper_spec.rb",
|
292
|
+
"test_rails_app/spec/helpers/admin/images2_helper_spec.rb",
|
293
|
+
"test_rails_app/spec/helpers/admin/images_helper_spec.rb",
|
294
|
+
"test_rails_app/spec/helpers/admin/misconfigured1_helper_spec.rb",
|
295
|
+
"test_rails_app/spec/helpers/admin/not_migrated_yets_helper_spec.rb",
|
296
|
+
"test_rails_app/spec/helpers/admin/product_categories2_helper_spec.rb",
|
297
|
+
"test_rails_app/spec/helpers/admin/product_categories_helper_spec.rb",
|
298
|
+
"test_rails_app/spec/helpers/admin/products2_helper_spec.rb",
|
299
|
+
"test_rails_app/spec/helpers/admin/products_helper_spec.rb",
|
300
|
+
"test_rails_app/spec/helpers/admin/television_airings_helper_spec.rb",
|
301
|
+
"test_rails_app/spec/helpers/admin/television_time_slots_helper_spec.rb",
|
302
|
+
"test_rails_app/spec/helpers/admin/users2_helper_spec.rb",
|
303
|
+
"test_rails_app/spec/helpers/admin/users_helper_spec.rb",
|
304
|
+
"test_rails_app/spec/helpers/blog_posts_helper_spec.rb",
|
305
|
+
"test_rails_app/spec/models/appointment_spec.rb",
|
306
|
+
"test_rails_app/spec/models/blog_post_spec.rb",
|
307
|
+
"test_rails_app/spec/models/blog_post_tag_spec.rb",
|
308
|
+
"test_rails_app/spec/models/bookmark_spec.rb",
|
309
|
+
"test_rails_app/spec/models/comment_spec.rb",
|
310
|
+
"test_rails_app/spec/models/file_column_image_spec.rb",
|
311
|
+
"test_rails_app/spec/models/image_spec.rb",
|
312
|
+
"test_rails_app/spec/models/not_migrated_yet_spec.rb",
|
313
|
+
"test_rails_app/spec/models/product_category_spec.rb",
|
314
|
+
"test_rails_app/spec/models/product_spec.rb",
|
315
|
+
"test_rails_app/spec/models/tag_spec.rb",
|
316
|
+
"test_rails_app/spec/models/television_airing_spec.rb",
|
317
|
+
"test_rails_app/spec/models/television_time_slot_spec.rb",
|
318
|
+
"test_rails_app/spec/models/user_spec.rb",
|
319
|
+
"test_rails_app/spec/rcov.opts",
|
320
|
+
"test_rails_app/spec/spec.opts",
|
321
|
+
"test_rails_app/spec/spec_helper.rb",
|
322
|
+
"test_rails_app/spec/spec_or_test_helper.rb",
|
323
|
+
"test_rails_app/test/fixtures/file_column_images.yml",
|
324
|
+
"test_rails_app/test/integration/admin_blog_posts2_integration_test.rb",
|
325
|
+
"test_rails_app/test/integration/admin_blog_posts5_integration_test.rb",
|
326
|
+
"test_rails_app/test/integration/admin_blog_posts_integration_test.rb",
|
327
|
+
"test_rails_app/test/test_helper.rb",
|
328
|
+
"test_rails_app/vendor/plugins/file_column/CHANGELOG",
|
329
|
+
"test_rails_app/vendor/plugins/file_column/README",
|
330
|
+
"test_rails_app/vendor/plugins/file_column/Rakefile",
|
331
|
+
"test_rails_app/vendor/plugins/file_column/TODO",
|
332
|
+
"test_rails_app/vendor/plugins/file_column/init.rb",
|
333
|
+
"test_rails_app/vendor/plugins/file_column/lib/file_column.rb",
|
334
|
+
"test_rails_app/vendor/plugins/file_column/lib/file_column_helper.rb",
|
335
|
+
"test_rails_app/vendor/plugins/file_column/lib/file_compat.rb",
|
336
|
+
"test_rails_app/vendor/plugins/file_column/lib/magick_file_column.rb",
|
337
|
+
"test_rails_app/vendor/plugins/file_column/lib/rails_file_column.rb",
|
338
|
+
"test_rails_app/vendor/plugins/file_column/lib/test_case.rb",
|
339
|
+
"test_rails_app/vendor/plugins/file_column/lib/validations.rb",
|
340
|
+
"test_rails_app/vendor/plugins/file_column/test/abstract_unit.rb",
|
341
|
+
"test_rails_app/vendor/plugins/file_column/test/connection.rb",
|
342
|
+
"test_rails_app/vendor/plugins/file_column/test/file_column_helper_test.rb",
|
343
|
+
"test_rails_app/vendor/plugins/file_column/test/file_column_test.rb",
|
344
|
+
"test_rails_app/vendor/plugins/file_column/test/fixtures/entry.rb",
|
345
|
+
"test_rails_app/vendor/plugins/file_column/test/fixtures/invalid-image.jpg",
|
346
|
+
"test_rails_app/vendor/plugins/file_column/test/fixtures/kerb.jpg",
|
347
|
+
"test_rails_app/vendor/plugins/file_column/test/fixtures/mysql.sql",
|
348
|
+
"test_rails_app/vendor/plugins/file_column/test/fixtures/schema.rb",
|
349
|
+
"test_rails_app/vendor/plugins/file_column/test/fixtures/skanthak.png",
|
350
|
+
"test_rails_app/vendor/plugins/file_column/test/magick_test.rb",
|
351
|
+
"test_rails_app/vendor/plugins/file_column/test/magick_view_only_test.rb",
|
352
|
+
"uninstall.rb",
|
353
|
+
"vendor/ar_query/MIT-LICENSE",
|
354
|
+
"vendor/ar_query/README",
|
355
|
+
"vendor/ar_query/ar_query.gemspec",
|
356
|
+
"vendor/ar_query/init.rb",
|
357
|
+
"vendor/ar_query/install.rb",
|
358
|
+
"vendor/ar_query/lib/ar_query.rb",
|
359
|
+
"vendor/ar_query/spec/ar_query_spec.rb",
|
360
|
+
"vendor/ar_query/tasks/ar_query_tasks.rake",
|
361
|
+
"vendor/ar_query/uninstall.rb",
|
362
|
+
"website/_layouts/api.html",
|
363
|
+
"website/_layouts/default.html",
|
364
|
+
"website/api/core.markdown",
|
365
|
+
"website/api/destroy.markdown",
|
366
|
+
"website/api/form.markdown",
|
367
|
+
"website/api/idx.markdown",
|
368
|
+
"website/api/index.markdown",
|
369
|
+
"website/api/search.markdown",
|
370
|
+
"website/api/show.markdown",
|
371
|
+
"website/community.markdown",
|
372
|
+
"website/css/lightbox.css",
|
373
|
+
"website/css/main.css",
|
374
|
+
"website/design_principles.markdown",
|
375
|
+
"website/getting_started.markdown",
|
376
|
+
"website/img/blog_posts-index.png",
|
377
|
+
"website/img/blog_posts-search.png",
|
378
|
+
"website/img/lightbox/bullet.gif",
|
379
|
+
"website/img/lightbox/close.gif",
|
380
|
+
"website/img/lightbox/closelabel.gif",
|
381
|
+
"website/img/lightbox/donate-button.gif",
|
382
|
+
"website/img/lightbox/download-icon.gif",
|
383
|
+
"website/img/lightbox/image-1.jpg",
|
384
|
+
"website/img/lightbox/loading.gif",
|
385
|
+
"website/img/lightbox/nextlabel.gif",
|
386
|
+
"website/img/lightbox/prevlabel.gif",
|
387
|
+
"website/img/lightbox/thumb-1.jpg",
|
388
|
+
"website/img/screen1-thumb.png",
|
389
|
+
"website/img/screen1.png",
|
390
|
+
"website/img/screen10-thumb.png",
|
391
|
+
"website/img/screen10.png",
|
392
|
+
"website/img/screen11-thumb.png",
|
393
|
+
"website/img/screen11.png",
|
394
|
+
"website/img/screen2-thumb.png",
|
395
|
+
"website/img/screen2.png",
|
396
|
+
"website/img/screen3-thumb.png",
|
397
|
+
"website/img/screen3.png",
|
398
|
+
"website/img/screen4-thumb.png",
|
399
|
+
"website/img/screen4.png",
|
400
|
+
"website/img/screen5-thumb.png",
|
401
|
+
"website/img/screen5.png",
|
402
|
+
"website/img/screen6-thumb.png",
|
403
|
+
"website/img/screen6.png",
|
404
|
+
"website/img/screen7-thumb.png",
|
405
|
+
"website/img/screen7.png",
|
406
|
+
"website/img/screen8-thumb.png",
|
407
|
+
"website/img/screen8.png",
|
408
|
+
"website/img/screen9-thumb.png",
|
409
|
+
"website/img/screen9.png",
|
410
|
+
"website/img/user-form.png",
|
411
|
+
"website/index.markdown",
|
412
|
+
"website/js/builder.js",
|
413
|
+
"website/js/effects.js",
|
414
|
+
"website/js/lightbox.js",
|
415
|
+
"website/js/prototype.js",
|
416
|
+
"website/js/scriptaculous.js",
|
417
|
+
"website/quick_start.markdown",
|
418
|
+
"website/screenshots.markdown",
|
419
|
+
"website/tutorial.markdown"
|
420
|
+
]
|
421
|
+
s.homepage = %q{http://github.com/fhwang/admin_assistant}
|
422
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
423
|
+
s.require_paths = ["lib"]
|
424
|
+
s.rubygems_version = %q{1.3.7}
|
425
|
+
s.summary = %q{admin_assistant is a Rails plugin that automates a lot of features typically needed in admin interfaces.}
|
426
|
+
|
427
|
+
if s.respond_to? :specification_version then
|
428
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
429
|
+
s.specification_version = 3
|
430
|
+
|
431
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
432
|
+
s.add_runtime_dependency(%q<will_paginate>, [">= 0"])
|
433
|
+
else
|
434
|
+
s.add_dependency(%q<will_paginate>, [">= 0"])
|
435
|
+
end
|
436
|
+
else
|
437
|
+
s.add_dependency(%q<will_paginate>, [">= 0"])
|
438
|
+
end
|
439
|
+
end
|
440
|
+
|
Binary file
|
data/install.rb
CHANGED
@@ -1,5 +1,26 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
require 'fileutils'
|
2
|
+
require 'pathname'
|
3
|
+
|
4
|
+
outer = File.dirname(__FILE__)
|
5
|
+
|
6
|
+
# Delete test_rails_app and various doc directories, unless you're actually
|
7
|
+
# developing admin_assistant itself
|
8
|
+
test_rails_app = Pathname.new("#{outer}/test_rails_app").realpath.to_s
|
9
|
+
unless RAILS_ROOT == test_rails_app
|
10
|
+
%w(doc test_rails_app website).each do |dir|
|
11
|
+
FileUtils.rm_rf "#{outer}/#{dir}"
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
# Copy over static assets
|
16
|
+
css_dir = "#{RAILS_ROOT}/public/stylesheets/admin_assistant"
|
17
|
+
FileUtils.mkdir(css_dir) unless File.exist?(css_dir)
|
18
|
+
FileUtils.cp_r(Dir.glob("#{outer}/lib/stylesheets/*"), css_dir)
|
19
|
+
FileUtils.copy(
|
20
|
+
"#{outer}/lib/javascripts/admin_assistant.js",
|
21
|
+
"#{RAILS_ROOT}/public/javascripts/admin_assistant.js"
|
22
|
+
)
|
23
|
+
images_dir = "#{RAILS_ROOT}/public/images/admin_assistant"
|
24
|
+
FileUtils.mkdir(images_dir) unless File.exist?(images_dir)
|
25
|
+
FileUtils.cp_r(Dir.glob("#{outer}/lib/images/*"), images_dir)
|
5
26
|
|