sunrise-questions 0.1.0
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/Gemfile +34 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +21 -0
- data/Rakefile +27 -0
- data/app/controllers/manage/questions_controller.rb +36 -0
- data/app/views/manage/questions/_form.html.erb +17 -0
- data/app/views/manage/questions/_model_filter.html.erb +34 -0
- data/app/views/manage/questions/_question.html.erb +27 -0
- data/app/views/manage/questions/edit.html.erb +6 -0
- data/app/views/manage/questions/index.html.erb +32 -0
- data/app/views/manage/questions/new.html.erb +6 -0
- data/app/views/manage/questions/show.html.erb +29 -0
- data/config/locales/ru.yml +16 -0
- data/config/locales/uk.yml +16 -0
- data/config/routes.rb +7 -0
- data/lib/generators/sunrise/questions/USAGE +12 -0
- data/lib/generators/sunrise/questions/install_generator.rb +34 -0
- data/lib/generators/sunrise/questions/templates/create_questions.rb +20 -0
- data/lib/generators/sunrise/questions/templates/question.rb +5 -0
- data/lib/sunrise-questions.rb +1 -0
- data/lib/sunrise/models/question.rb +34 -0
- data/lib/sunrise/questions.rb +12 -0
- data/lib/sunrise/questions/engine.rb +18 -0
- data/lib/sunrise/questions/version.rb +5 -0
- data/spec/controllers/manage/questions_controller_spec.rb +96 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/assets_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/base_helper.rb +81 -0
- data/spec/dummy/app/helpers/manage/pages_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/settings_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/structures_helper.rb +12 -0
- data/spec/dummy/app/helpers/manage/users_helper.rb +6 -0
- data/spec/dummy/app/models/defaults/ability.rb +39 -0
- data/spec/dummy/app/models/defaults/asset.rb +7 -0
- data/spec/dummy/app/models/defaults/attachment_file.rb +33 -0
- data/spec/dummy/app/models/defaults/avatar.rb +37 -0
- data/spec/dummy/app/models/defaults/header.rb +5 -0
- data/spec/dummy/app/models/defaults/page.rb +5 -0
- data/spec/dummy/app/models/defaults/picture.rb +35 -0
- data/spec/dummy/app/models/defaults/position_type.rb +7 -0
- data/spec/dummy/app/models/defaults/role.rb +20 -0
- data/spec/dummy/app/models/defaults/role_type.rb +8 -0
- data/spec/dummy/app/models/defaults/structure.rb +16 -0
- data/spec/dummy/app/models/defaults/structure_type.rb +9 -0
- data/spec/dummy/app/models/defaults/user.rb +47 -0
- data/spec/dummy/app/models/question.rb +5 -0
- data/spec/dummy/app/views/layouts/application.html.erb +37 -0
- data/spec/dummy/app/views/pages/show.html.erb +2 -0
- data/spec/dummy/app/views/shared/_notice.html.erb +17 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +46 -0
- data/spec/dummy/config/application.yml.sample +4 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +22 -0
- data/spec/dummy/config/database.yml.sample +34 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +26 -0
- data/spec/dummy/config/environments/production.rb +49 -0
- data/spec/dummy/config/environments/test.rb +35 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/devise.rb +204 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/simple_form.rb +93 -0
- data/spec/dummy/config/initializers/sunrise.rb +7 -0
- data/spec/dummy/config/locales/devise.en.yml +53 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/locales/simple_form.en.yml +24 -0
- data/spec/dummy/config/logrotate-config.sample +9 -0
- data/spec/dummy/config/nginx-config-passenger.sample +51 -0
- data/spec/dummy/config/routes.rb +64 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20110801124809_sunrise_create_users.rb +29 -0
- data/spec/dummy/db/migrate/20110801124909_sunrise_create_roles.rb +16 -0
- data/spec/dummy/db/migrate/20110801125009_sunrise_create_structures.rb +27 -0
- data/spec/dummy/db/migrate/20110801125109_sunrise_create_pages.rb +17 -0
- data/spec/dummy/db/migrate/20110801125209_sunrise_create_assets.rb +28 -0
- data/spec/dummy/db/migrate/20110801125309_sunrise_create_headers.rb +20 -0
- data/spec/dummy/db/migrate/20110801161138_sunrise_create_questions.rb +20 -0
- data/spec/dummy/db/seeds.rb +25 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
- data/spec/dummy/log/development.log +5 -0
- data/spec/dummy/log/production.log +0 -0
- data/spec/dummy/log/server.log +0 -0
- data/spec/dummy/log/test.log +1830 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/images/manage/add_post_bot.gif +0 -0
- data/spec/dummy/public/images/manage/add_post_top.gif +0 -0
- data/spec/dummy/public/images/manage/add_white_bot.gif +0 -0
- data/spec/dummy/public/images/manage/add_white_top.gif +0 -0
- data/spec/dummy/public/images/manage/arrow.png +0 -0
- data/spec/dummy/public/images/manage/back_but_lc.gif +0 -0
- data/spec/dummy/public/images/manage/back_but_rc.gif +0 -0
- data/spec/dummy/public/images/manage/bot_corn.gif +0 -0
- data/spec/dummy/public/images/manage/bot_duo_corn.gif +0 -0
- data/spec/dummy/public/images/manage/but_bg.png +0 -0
- data/spec/dummy/public/images/manage/but_block_lc.gif +0 -0
- data/spec/dummy/public/images/manage/but_block_rc.gif +0 -0
- data/spec/dummy/public/images/manage/but_freze_lc.gif +0 -0
- data/spec/dummy/public/images/manage/but_freze_rc.gif +0 -0
- data/spec/dummy/public/images/manage/but_gr.gif +0 -0
- data/spec/dummy/public/images/manage/but_gr_l.gif +0 -0
- data/spec/dummy/public/images/manage/but_gr_r.gif +0 -0
- data/spec/dummy/public/images/manage/but_search.gif +0 -0
- data/spec/dummy/public/images/manage/but_unfreze_lc.gif +0 -0
- data/spec/dummy/public/images/manage/but_unfreze_rc.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto_ru.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto_ua.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto_uk.gif +0 -0
- data/spec/dummy/public/images/manage/cancelbutton.gif +0 -0
- data/spec/dummy/public/images/manage/dark_arr.gif +0 -0
- data/spec/dummy/public/images/manage/dark_arr_left.gif +0 -0
- data/spec/dummy/public/images/manage/dark_cross_ico.gif +0 -0
- data/spec/dummy/public/images/manage/dot.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small_blocked.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small_frozed.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small_notact.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small_blocked.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small_frozed.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small_notact.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small_blocked.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small_frozed.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small_notact.gif +0 -0
- data/spec/dummy/public/images/manage/edit_white_top.gif +0 -0
- data/spec/dummy/public/images/manage/empty.gif +0 -0
- data/spec/dummy/public/images/manage/filter_bot_bg.gif +0 -0
- data/spec/dummy/public/images/manage/filter_top_bg.gif +0 -0
- data/spec/dummy/public/images/manage/flag_en.gif +0 -0
- data/spec/dummy/public/images/manage/flag_en_nonact.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ru.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ru_nonact.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ua.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ua_nonact.gif +0 -0
- data/spec/dummy/public/images/manage/foto.jpg +0 -0
- data/spec/dummy/public/images/manage/ico_add.gif +0 -0
- data/spec/dummy/public/images/manage/ico_del.gif +0 -0
- data/spec/dummy/public/images/manage/ico_down.gif +0 -0
- data/spec/dummy/public/images/manage/ico_edit.gif +0 -0
- data/spec/dummy/public/images/manage/ico_settings.gif +0 -0
- data/spec/dummy/public/images/manage/ico_up.gif +0 -0
- data/spec/dummy/public/images/manage/input_bg.gif +0 -0
- data/spec/dummy/public/images/manage/l_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/minimise_but.gif +0 -0
- data/spec/dummy/public/images/manage/mp3.png +0 -0
- data/spec/dummy/public/images/manage/page_arr_hover.png +0 -0
- data/spec/dummy/public/images/manage/page_next_arr.gif +0 -0
- data/spec/dummy/public/images/manage/page_num_hover.gif +0 -0
- data/spec/dummy/public/images/manage/page_prev_arr.gif +0 -0
- data/spec/dummy/public/images/manage/panel/l_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/panel/maximise_but.gif +0 -0
- data/spec/dummy/public/images/manage/panel/r_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/panel/top_menu_arr.gif +0 -0
- data/spec/dummy/public/images/manage/panel/user_pic.gif +0 -0
- data/spec/dummy/public/images/manage/preloader.gif +0 -0
- data/spec/dummy/public/images/manage/r_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/select_bg.gif +0 -0
- data/spec/dummy/public/images/manage/select_corn.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_lg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_llg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_lw.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_rg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_rlg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_rw.gif +0 -0
- data/spec/dummy/public/images/manage/tab_gl.gif +0 -0
- data/spec/dummy/public/images/manage/tab_gr.gif +0 -0
- data/spec/dummy/public/images/manage/tab_wl.gif +0 -0
- data/spec/dummy/public/images/manage/tab_wr.gif +0 -0
- data/spec/dummy/public/images/manage/top_corn.gif +0 -0
- data/spec/dummy/public/images/manage/top_duo_corn.gif +0 -0
- data/spec/dummy/public/images/manage/top_menu_arr.gif +0 -0
- data/spec/dummy/public/images/manage/transp_cross.png +0 -0
- data/spec/dummy/public/images/manage/upload_progress.gif +0 -0
- data/spec/dummy/public/images/manage/user_act_lc.gif +0 -0
- data/spec/dummy/public/images/manage/user_act_rc.gif +0 -0
- data/spec/dummy/public/images/manage/user_ico.gif +0 -0
- data/spec/dummy/public/images/manage/user_pic.gif +0 -0
- data/spec/dummy/public/images/manage/user_pic_small.gif +0 -0
- data/spec/dummy/public/images/manage/user_pic_thumb.gif +0 -0
- data/spec/dummy/public/javascripts/application.js +2 -0
- data/spec/dummy/public/javascripts/controls.js +965 -0
- data/spec/dummy/public/javascripts/datepicker/jquery-ui-i18n.js +1176 -0
- data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-ru.js +37 -0
- data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-uk.js +37 -0
- data/spec/dummy/public/javascripts/dragdrop.js +974 -0
- data/spec/dummy/public/javascripts/effects.js +1123 -0
- data/spec/dummy/public/javascripts/fileupload/fileuploader-input.js +217 -0
- data/spec/dummy/public/javascripts/fileupload/fileuploader.css +31 -0
- data/spec/dummy/public/javascripts/fileupload/fileuploader.js +1288 -0
- data/spec/dummy/public/javascripts/jquery-ui-timepicker-addon.js +911 -0
- data/spec/dummy/public/javascripts/jquery.cookie.js +97 -0
- data/spec/dummy/public/javascripts/jquery.fancybox-1.3.4.pack.js +46 -0
- data/spec/dummy/public/javascripts/jquery.tmpl.min.js +10 -0
- data/spec/dummy/public/javascripts/manage-fileuploader.js +182 -0
- data/spec/dummy/public/javascripts/manage.js +294 -0
- data/spec/dummy/public/javascripts/preloader.js +47 -0
- data/spec/dummy/public/javascripts/prototype.js +6001 -0
- data/spec/dummy/public/javascripts/rails.js +331 -0
- data/spec/dummy/public/stylesheets/application.css +1 -0
- data/spec/dummy/public/stylesheets/fancybox/images/blank.gif +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_close.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_loading.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_left.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_right.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_e.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_n.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_ne.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_nw.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_s.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_se.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_sw.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_w.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_left.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_main.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_over.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_right.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancybox-x.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancybox-y.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancybox.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/jquery.fancybox-1.3.4.css +359 -0
- data/spec/dummy/public/stylesheets/manage/buttons.css +42 -0
- data/spec/dummy/public/stylesheets/manage/ie.css +16 -0
- data/spec/dummy/public/stylesheets/manage/main.css +1108 -0
- data/spec/dummy/public/stylesheets/manage/panel.css +126 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/jquery-ui-1.8.13.custom.css +578 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/factories/question_factory.rb +10 -0
- data/spec/factories/structure_factory.rb +22 -0
- data/spec/factories/user_factory.rb +48 -0
- data/spec/generators/install_generator_spec.rb +24 -0
- data/spec/integration/navigation_spec.rb +9 -0
- data/spec/models/question_spec.rb +30 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +57 -0
- data/spec/sunrise_questions_spec.rb +7 -0
- data/spec/support/helpers/controller_macros.rb +40 -0
- data/spec/tmp/app/models/question.rb +5 -0
- data/spec/tmp/db/migrate/20110801173811_sunrise_create_questions.rb +20 -0
- metadata +582 -0
@@ -0,0 +1,10 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = '8cc0e14ed7abe67bd9154ae3c89bb212b44cd1433a41e9a9af9f82d9ba2e703f2da2bbe0627e65a856f4cb58c387c826bf7086e3e7c780ce516d6c6116ff456a'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,93 @@
|
|
1
|
+
# Use this setup block to configure all options available in SimpleForm.
|
2
|
+
SimpleForm.setup do |config|
|
3
|
+
# Components used by the form builder to generate a complete input. You can remove
|
4
|
+
# any of them, change the order, or even add your own components to the stack.
|
5
|
+
# config.components = [ :placeholder, :label_input, :hint, :error ]
|
6
|
+
|
7
|
+
# Default tag used on hints.
|
8
|
+
# config.hint_tag = :span
|
9
|
+
|
10
|
+
# CSS class to add to all hint tags.
|
11
|
+
# config.hint_class = :hint
|
12
|
+
|
13
|
+
# CSS class used on errors.
|
14
|
+
# config.error_class = :error
|
15
|
+
|
16
|
+
# Default tag used on errors.
|
17
|
+
# config.error_tag = :span
|
18
|
+
|
19
|
+
# Method used to tidy up errors.
|
20
|
+
# config.error_method = :first
|
21
|
+
|
22
|
+
# Default tag used for error notification helper.
|
23
|
+
# config.error_notification_tag = :p
|
24
|
+
|
25
|
+
# CSS class to add for error notification helper.
|
26
|
+
# config.error_notification_class = :error_notification
|
27
|
+
|
28
|
+
# ID to add for error notification helper.
|
29
|
+
# config.error_notification_id = nil
|
30
|
+
|
31
|
+
# You can wrap all inputs in a pre-defined tag.
|
32
|
+
# config.wrapper_tag = :div
|
33
|
+
|
34
|
+
# CSS class to add to all wrapper tags.
|
35
|
+
# config.wrapper_class = :input
|
36
|
+
|
37
|
+
# CSS class to add to the wrapper if the field has errors.
|
38
|
+
# config.wrapper_error_class = :field_with_errors
|
39
|
+
|
40
|
+
# You can wrap a collection of radio/check boxes in a pre-defined tag, defaulting to none.
|
41
|
+
# config.collection_wrapper_tag = nil
|
42
|
+
|
43
|
+
# You can wrap each item in a collection of radio/check boxes with a tag, defaulting to span.
|
44
|
+
# config.item_wrapper_tag = :span
|
45
|
+
|
46
|
+
# Series of attempts to detect a default label method for collection.
|
47
|
+
# config.collection_label_methods = [ :to_label, :name, :title, :to_s ]
|
48
|
+
|
49
|
+
# Series of attempts to detect a default value method for collection.
|
50
|
+
# config.collection_value_methods = [ :id, :to_s ]
|
51
|
+
|
52
|
+
# How the label text should be generated altogether with the required text.
|
53
|
+
# config.label_text = lambda { |label, required| "#{required} #{label}" }
|
54
|
+
|
55
|
+
# You can define the class to use on all labels. Default is nil.
|
56
|
+
# config.label_class = nil
|
57
|
+
|
58
|
+
# You can define the class to use on all forms. Default is simple_form.
|
59
|
+
# config.form_class = :simple_form
|
60
|
+
|
61
|
+
# Whether attributes are required by default (or not). Default is true.
|
62
|
+
# config.required_by_default = true
|
63
|
+
|
64
|
+
# Tell browsers whether to use default HTML5 validations (novalidate option).
|
65
|
+
# Default is enabled.
|
66
|
+
# config.browser_validations = true
|
67
|
+
|
68
|
+
# Determines whether HTML5 types (:email, :url, :search, :tel) and attributes
|
69
|
+
# (e.g. required) are used or not. True by default.
|
70
|
+
# Having this on in non-HTML5 compliant sites can cause odd behavior in
|
71
|
+
# HTML5-aware browsers such as Chrome.
|
72
|
+
# config.html5 = true
|
73
|
+
|
74
|
+
# Custom mappings for input types. This should be a hash containing a regexp
|
75
|
+
# to match as key, and the input type that will be used when the field name
|
76
|
+
# matches the regexp as value.
|
77
|
+
# config.input_mappings = { /count/ => :integer }
|
78
|
+
|
79
|
+
# Collection of methods to detect if a file type was given.
|
80
|
+
# config.file_methods = [ :mounted_as, :file?, :public_filename ]
|
81
|
+
|
82
|
+
# Default priority for time_zone inputs.
|
83
|
+
# config.time_zone_priority = nil
|
84
|
+
|
85
|
+
# Default priority for country inputs.
|
86
|
+
# config.country_priority = nil
|
87
|
+
|
88
|
+
# Default size for text inputs.
|
89
|
+
# config.default_input_size = 50
|
90
|
+
|
91
|
+
# When false, do not use translations for labels, hints or placeholders.
|
92
|
+
# config.translate = true
|
93
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# Additional translations at http://github.com/plataformatec/devise/wiki/I18n
|
2
|
+
|
3
|
+
en:
|
4
|
+
errors:
|
5
|
+
messages:
|
6
|
+
expired: "has expired, please request a new one"
|
7
|
+
not_found: "not found"
|
8
|
+
already_confirmed: "was already confirmed, please try signing in"
|
9
|
+
not_locked: "was not locked"
|
10
|
+
not_saved:
|
11
|
+
one: "1 error prohibited this %{resource} from being saved:"
|
12
|
+
other: "%{count} errors prohibited this %{resource} from being saved:"
|
13
|
+
|
14
|
+
devise:
|
15
|
+
failure:
|
16
|
+
already_authenticated: 'You are already signed in.'
|
17
|
+
unauthenticated: 'You need to sign in or sign up before continuing.'
|
18
|
+
unconfirmed: 'You have to confirm your account before continuing.'
|
19
|
+
locked: 'Your account is locked.'
|
20
|
+
invalid: 'Invalid email or password.'
|
21
|
+
invalid_token: 'Invalid authentication token.'
|
22
|
+
timeout: 'Your session expired, please sign in again to continue.'
|
23
|
+
inactive: 'Your account was not activated yet.'
|
24
|
+
sessions:
|
25
|
+
signed_in: 'Signed in successfully.'
|
26
|
+
signed_out: 'Signed out successfully.'
|
27
|
+
passwords:
|
28
|
+
send_instructions: 'You will receive an email with instructions about how to reset your password in a few minutes.'
|
29
|
+
updated: 'Your password was changed successfully. You are now signed in.'
|
30
|
+
send_paranoid_instructions: "If your e-mail exists on our database, you will receive a password recovery link on your e-mail"
|
31
|
+
confirmations:
|
32
|
+
send_instructions: 'You will receive an email with instructions about how to confirm your account in a few minutes.'
|
33
|
+
send_paranoid_instructions: 'If your e-mail exists on our database, you will receive an email with instructions about how to confirm your account in a few minutes.'
|
34
|
+
confirmed: 'Your account was successfully confirmed. You are now signed in.'
|
35
|
+
registrations:
|
36
|
+
signed_up: 'Welcome! You have signed up successfully.'
|
37
|
+
inactive_signed_up: 'You have signed up successfully. However, we could not sign you in because your account is %{reason}.'
|
38
|
+
updated: 'You updated your account successfully.'
|
39
|
+
destroyed: 'Bye! Your account was successfully cancelled. We hope to see you again soon.'
|
40
|
+
unlocks:
|
41
|
+
send_instructions: 'You will receive an email with instructions about how to unlock your account in a few minutes.'
|
42
|
+
unlocked: 'Your account was successfully unlocked. You are now signed in.'
|
43
|
+
send_paranoid_instructions: 'If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.'
|
44
|
+
omniauth_callbacks:
|
45
|
+
success: 'Successfully authorized from %{kind} account.'
|
46
|
+
failure: 'Could not authorize you from %{kind} because "%{reason}".'
|
47
|
+
mailer:
|
48
|
+
confirmation_instructions:
|
49
|
+
subject: 'Confirmation instructions'
|
50
|
+
reset_password_instructions:
|
51
|
+
subject: 'Reset password instructions'
|
52
|
+
unlock_instructions:
|
53
|
+
subject: 'Unlock Instructions'
|
@@ -0,0 +1,24 @@
|
|
1
|
+
en:
|
2
|
+
simple_form:
|
3
|
+
"yes": 'Yes'
|
4
|
+
"no": 'No'
|
5
|
+
required:
|
6
|
+
text: 'required'
|
7
|
+
mark: '*'
|
8
|
+
# You can uncomment the line below if you need to overwrite the whole required html.
|
9
|
+
# When using html, text and mark won't be used.
|
10
|
+
# html: '<abbr title="required">*</abbr>'
|
11
|
+
error_notification:
|
12
|
+
default_message: "Some errors were found, please take a look:"
|
13
|
+
# Labels and hints examples
|
14
|
+
# labels:
|
15
|
+
# password: 'Password'
|
16
|
+
# user:
|
17
|
+
# new:
|
18
|
+
# email: 'E-mail para efetuar o sign in.'
|
19
|
+
# edit:
|
20
|
+
# email: 'E-mail.'
|
21
|
+
# hints:
|
22
|
+
# username: 'User name to sign in.'
|
23
|
+
# password: 'No special characters, please.'
|
24
|
+
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# You may add here your
|
2
|
+
# server {
|
3
|
+
# ...
|
4
|
+
# }
|
5
|
+
# statements for each of your virtual hosts
|
6
|
+
|
7
|
+
|
8
|
+
server {
|
9
|
+
listen 80;
|
10
|
+
server_name .dummy.brainberry.com.ua;
|
11
|
+
|
12
|
+
server_tokens off;
|
13
|
+
|
14
|
+
gzip on;
|
15
|
+
gzip_proxied any;
|
16
|
+
gzip_min_length 1100;
|
17
|
+
gzip_buffers 12 4k;
|
18
|
+
gzip_types text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
|
19
|
+
|
20
|
+
client_max_body_size 200M;
|
21
|
+
client_body_buffer_size 128k;
|
22
|
+
client_header_timeout 60;
|
23
|
+
client_body_timeout 260;
|
24
|
+
send_timeout 260;
|
25
|
+
keepalive_timeout 60;
|
26
|
+
|
27
|
+
large_client_header_buffers 4 4k;
|
28
|
+
client_header_buffer_size 1k;
|
29
|
+
|
30
|
+
connection_pool_size 256;
|
31
|
+
ignore_invalid_headers on;
|
32
|
+
postpone_output 1460;
|
33
|
+
output_buffers 4 32k;
|
34
|
+
request_pool_size 4k;
|
35
|
+
|
36
|
+
passenger_enabled on;
|
37
|
+
rails_env production;
|
38
|
+
# rack_env production;
|
39
|
+
|
40
|
+
root /var/www/gems/sunrise-questions/spec/dummy/public;
|
41
|
+
|
42
|
+
location ~ /\.[^\/]+ {
|
43
|
+
return 404;
|
44
|
+
}
|
45
|
+
|
46
|
+
location ~* ^.+\.(jpg|jpeg|gif|png|css|js|swf|ico|mov|flv|fla|pdf|zip|rar|doc|xls)$
|
47
|
+
{
|
48
|
+
expires 12h;
|
49
|
+
add_header Cache-Control private;
|
50
|
+
}
|
51
|
+
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
root :to => "welcome#index"
|
3
|
+
|
4
|
+
resources :pages, :only => [:show]
|
5
|
+
|
6
|
+
devise_for :users
|
7
|
+
|
8
|
+
# The priority is based upon order of creation:
|
9
|
+
# first created -> highest priority.
|
10
|
+
|
11
|
+
# Sample of regular route:
|
12
|
+
# match 'products/:id' => 'catalog#view'
|
13
|
+
# Keep in mind you can assign values other than :controller and :action
|
14
|
+
|
15
|
+
# Sample of named route:
|
16
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
17
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
18
|
+
|
19
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
20
|
+
# resources :products
|
21
|
+
|
22
|
+
# Sample resource route with options:
|
23
|
+
# resources :products do
|
24
|
+
# member do
|
25
|
+
# get 'short'
|
26
|
+
# post 'toggle'
|
27
|
+
# end
|
28
|
+
#
|
29
|
+
# collection do
|
30
|
+
# get 'sold'
|
31
|
+
# end
|
32
|
+
# end
|
33
|
+
|
34
|
+
# Sample resource route with sub-resources:
|
35
|
+
# resources :products do
|
36
|
+
# resources :comments, :sales
|
37
|
+
# resource :seller
|
38
|
+
# end
|
39
|
+
|
40
|
+
# Sample resource route with more complex sub-resources
|
41
|
+
# resources :products do
|
42
|
+
# resources :comments
|
43
|
+
# resources :sales do
|
44
|
+
# get 'recent', :on => :collection
|
45
|
+
# end
|
46
|
+
# end
|
47
|
+
|
48
|
+
# Sample resource route within a namespace:
|
49
|
+
# namespace :admin do
|
50
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
51
|
+
# # (app/controllers/admin/products_controller.rb)
|
52
|
+
# resources :products
|
53
|
+
# end
|
54
|
+
|
55
|
+
# You can have the root of your site routed with "root"
|
56
|
+
# just remember to delete public/index.html.
|
57
|
+
# root :to => "welcome#index"
|
58
|
+
|
59
|
+
# See how all your routes lay out with "rake routes"
|
60
|
+
|
61
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
62
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
63
|
+
# match ':controller(/:action(/:id(.:format)))'
|
64
|
+
end
|
File without changes
|
@@ -0,0 +1,29 @@
|
|
1
|
+
class SunriseCreateUsers < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table(:users) do |t|
|
4
|
+
t.string :name, :limit => 150
|
5
|
+
# t.string :login, :limit => 20, :null => false
|
6
|
+
|
7
|
+
t.database_authenticatable :null => false
|
8
|
+
t.recoverable
|
9
|
+
t.rememberable
|
10
|
+
t.trackable
|
11
|
+
t.confirmable
|
12
|
+
t.lockable :lock_strategy => :failed_attempts, :unlock_strategy => :time
|
13
|
+
t.encryptable
|
14
|
+
# t.token_authenticatable
|
15
|
+
|
16
|
+
t.timestamps
|
17
|
+
end
|
18
|
+
|
19
|
+
add_index :users, :email, :unique => true
|
20
|
+
add_index :users, :reset_password_token, :unique => true
|
21
|
+
add_index :users, :confirmation_token, :unique => true
|
22
|
+
# add_index :users, :login, :unique => true
|
23
|
+
# add_index :users, :unlock_token, :unique => true
|
24
|
+
end
|
25
|
+
|
26
|
+
def self.down
|
27
|
+
drop_table :users
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
class SunriseCreateRoles < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :roles do |t|
|
4
|
+
t.integer :role_type, :limit => 1, :default => 0
|
5
|
+
t.integer :user_id, :null => false
|
6
|
+
|
7
|
+
t.timestamps
|
8
|
+
end
|
9
|
+
|
10
|
+
add_index :roles, :user_id, :name => "fk_user"
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.down
|
14
|
+
drop_table :roles
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
class SunriseCreateStructures < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :structures do |t|
|
4
|
+
t.string :title, :null => false
|
5
|
+
t.string :slug, :null => false, :limit => 25
|
6
|
+
t.integer :kind, :limit => 1, :default => 0
|
7
|
+
t.integer :position, :limit => 2, :default => 0
|
8
|
+
t.boolean :is_visible, :default => true
|
9
|
+
t.string :redirect_url
|
10
|
+
|
11
|
+
t.integer "parent_id"
|
12
|
+
t.integer "lft", :default => 0
|
13
|
+
t.integer "rgt", :default => 0
|
14
|
+
t.integer "depth", :default => 0
|
15
|
+
|
16
|
+
t.timestamps
|
17
|
+
end
|
18
|
+
|
19
|
+
add_index :structures, [:kind, :slug], :uniq => true
|
20
|
+
add_index :structures, :parent_id
|
21
|
+
add_index :structures, [:lft, :rgt]
|
22
|
+
end
|
23
|
+
|
24
|
+
def self.down
|
25
|
+
drop_table :structures
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
class SunriseCreatePages < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :pages do |t|
|
4
|
+
t.string :title, :null => false
|
5
|
+
t.text :content
|
6
|
+
t.integer :structure_id, :null => false
|
7
|
+
|
8
|
+
t.timestamps
|
9
|
+
end
|
10
|
+
|
11
|
+
add_index :pages, :structure_id, :name => "fk_pages"
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.down
|
15
|
+
drop_table :pages
|
16
|
+
end
|
17
|
+
end
|