red_base 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +339 -0
- data/README.rdoc +40 -0
- data/Rakefile +42 -0
- data/app/assets/fonts/DroidNaskh-Bold.ttf +0 -0
- data/app/assets/fonts/DroidNaskh-Regular.ttf +0 -0
- data/app/assets/fonts/OpenSans-Bold.ttf +0 -0
- data/app/assets/fonts/OpenSans-BoldItalic.ttf +0 -0
- data/app/assets/fonts/OpenSans-ExtraBold.ttf +0 -0
- data/app/assets/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
- data/app/assets/fonts/OpenSans-Italic.ttf +0 -0
- data/app/assets/fonts/OpenSans-Light.ttf +0 -0
- data/app/assets/fonts/OpenSans-LightItalic.ttf +0 -0
- data/app/assets/fonts/OpenSans-Regular.ttf +0 -0
- data/app/assets/fonts/OpenSans-Semibold.ttf +0 -0
- data/app/assets/fonts/OpenSans-SemiboldItalic.ttf +0 -0
- data/app/assets/javascripts/red_base/application.js +20 -0
- data/app/assets/javascripts/red_base/dashboard/angular.js +9 -0
- data/app/assets/javascripts/red_base/dashboard/app.js +65 -0
- data/app/assets/javascripts/red_base/dashboard/application.js.erb +24 -0
- data/app/assets/javascripts/red_base/dashboard/functions.js.erb +91 -0
- data/app/assets/javascripts/red_base/dashboard/init.js +38 -0
- data/app/assets/javascripts/red_base/dashboard/init.js~ +0 -0
- data/app/assets/javascripts/red_base/dashboard/lib/angular-animate.js +1226 -0
- data/app/assets/javascripts/red_base/dashboard/lib/angular-gettext.js +202 -0
- data/app/assets/javascripts/red_base/dashboard/lib/angular-resource.js +578 -0
- data/app/assets/javascripts/red_base/dashboard/lib/angular-route.js +880 -0
- data/app/assets/javascripts/red_base/dashboard/lib/angular.js +20031 -0
- data/app/assets/javascripts/red_base/dashboard/lib/lodash.underscore.js +4893 -0
- data/app/assets/javascripts/red_base/dashboard/lib/restangular.js +1066 -0
- data/app/assets/javascripts/red_base/dashboard/locale/translations.js +5 -0
- data/app/assets/javascripts/red_base/dashboard/modules/anim.js +32 -0
- data/app/assets/javascripts/red_base/dashboard/modules/api.js +32 -0
- data/app/assets/javascripts/red_base/dashboard/modules/auth/auth.js +34 -0
- data/app/assets/javascripts/red_base/dashboard/modules/auth/group.js +174 -0
- data/app/assets/javascripts/red_base/dashboard/modules/auth/user.js +122 -0
- data/app/assets/javascripts/red_base/dashboard/modules/list-view.js +293 -0
- data/app/assets/javascripts/red_base/dashboard/modules/logs.js +41 -0
- data/app/assets/javascripts/red_base/dashboard/modules/modules.js +50 -0
- data/app/assets/javascripts/red_base/dashboard/modules/nav.js.erb +92 -0
- data/app/assets/javascripts/red_base/dashboard/templates/application.handlebars.erb +42 -0
- data/app/assets/javascripts/red_base/dashboard/templates/auth/groups/details.handlebars.erb +15 -0
- data/app/assets/javascripts/red_base/dashboard/templates/auth/groups/index.handlebars.erb +7 -0
- data/app/assets/javascripts/red_base/dashboard/templates/auth/groups/new.handlebars.erb +39 -0
- data/app/assets/javascripts/red_base/dashboard/templates/auth/index.handlebars.erb +31 -0
- data/app/assets/javascripts/red_base/dashboard/templates/auth/users/details.handlebars.erb +15 -0
- data/app/assets/javascripts/red_base/dashboard/templates/auth/users/index.handlebars.erb +11 -0
- data/app/assets/javascripts/red_base/dashboard/templates/auth/users/new.handlebars.erb +33 -0
- data/app/assets/javascripts/red_base/dashboard/templates/components/list-view.handlebars.erb +59 -0
- data/app/assets/javascripts/red_base/dashboard/templates/components/model-form.handlebars.erb +3 -0
- data/app/assets/javascripts/red_base/dashboard/templates/modules.handlebars.erb +15 -0
- data/app/assets/javascripts/red_base/dashboard/templates/navigation.handlebars.erb +43 -0
- data/app/assets/javascripts/red_base/dashboard/templates/widgets.handlebars +23 -0
- data/app/assets/javascripts/red_base/dashboard/variables.js.erb +17 -0
- data/app/assets/javascripts/red_base/groups.js +2 -0
- data/app/assets/javascripts/red_base/home.js +2 -0
- data/app/assets/javascripts/red_base/i18n.js +13 -0
- data/app/assets/javascripts/red_base/locale/en.json +27 -0
- data/app/assets/javascripts/red_base/locale/fa.json +27 -0
- data/app/assets/javascripts/red_base/users.js +2 -0
- data/app/assets/stylesheets/red_base/base.css.scss +402 -0
- data/app/assets/stylesheets/red_base/dashboard/dashboard.css.scss +169 -0
- data/app/assets/stylesheets/red_base/dashboard/ltr/application.css +21 -0
- data/app/assets/stylesheets/red_base/dashboard/ltr/base.css.scss.erb +28 -0
- data/app/assets/stylesheets/red_base/dashboard/ltr/base.css.scss~ +15 -0
- data/app/assets/stylesheets/red_base/dashboard/ltr/buttons.css.scss.erb +48 -0
- data/app/assets/stylesheets/red_base/dashboard/ltr/direction.css.scss +38 -0
- data/app/assets/stylesheets/red_base/dashboard/ltr/foundation_and_overrides.css.scss +1014 -0
- data/app/assets/stylesheets/red_base/dashboard/rtl/application.css +21 -0
- data/app/assets/stylesheets/red_base/dashboard/rtl/base.css.scss.erb +31 -0
- data/app/assets/stylesheets/red_base/dashboard/rtl/base.css.scss~ +1 -0
- data/app/assets/stylesheets/red_base/dashboard/rtl/base.css_flymake.scss +25 -0
- data/app/assets/stylesheets/red_base/dashboard/rtl/buttons.css.scss.erb +45 -0
- data/app/assets/stylesheets/red_base/dashboard/rtl/direction.css.scss +37 -0
- data/app/assets/stylesheets/red_base/dashboard/rtl/foundation_and_overrides.css.scss +1014 -0
- data/app/assets/stylesheets/red_base/dashboard/sidebar.css.scss +93 -0
- data/app/assets/stylesheets/red_base/devise.css.scss +34 -0
- data/app/assets/stylesheets/red_base/groups.css +4 -0
- data/app/assets/stylesheets/red_base/home.css.scss +14 -0
- data/app/assets/stylesheets/red_base/ltr/application.css +20 -0
- data/app/assets/stylesheets/red_base/ltr/buttons.css.scss.erb +48 -0
- data/app/assets/stylesheets/red_base/ltr/foundation_and_overrides.scss.erb +1012 -0
- data/app/assets/stylesheets/red_base/mixins.css.scss +15 -0
- data/app/assets/stylesheets/red_base/mixins.css.scss~ +7 -0
- data/app/assets/stylesheets/red_base/rtl/application.css +20 -0
- data/app/assets/stylesheets/red_base/rtl/buttons.css.scss.erb +48 -0
- data/app/assets/stylesheets/red_base/rtl/foundation_and_overrides.scss.erb +1012 -0
- data/app/assets/stylesheets/red_base/users.css +4 -0
- data/app/assets/stylesheets/red_base/variables.css.scss +100 -0
- data/app/controllers/red_base/api/v1/groups_controller.rb +65 -0
- data/app/controllers/red_base/api/v1/logs_controller.rb +12 -0
- data/app/controllers/red_base/api/v1/permissions_controller.rb +17 -0
- data/app/controllers/red_base/api/v1/users_controller.rb +54 -0
- data/app/controllers/red_base/api_controller.rb +51 -0
- data/app/controllers/red_base/application_controller.rb +34 -0
- data/app/controllers/red_base/dashboard_controller.rb +40 -0
- data/app/controllers/red_base/home_controller.rb +19 -0
- data/app/controllers/red_base/omniauth/callbacks_controller.rb +43 -0
- data/app/controllers/red_base/users/omniauth_callbacks_controller.rb~ +2 -0
- data/app/helpers/red_base/application_helper.rb +4 -0
- data/app/helpers/red_base/dashboard_helper.rb +5 -0
- data/app/helpers/red_base/groups_helper.rb +4 -0
- data/app/helpers/red_base/home_helper.rb +4 -0
- data/app/helpers/red_base/users_helper.rb +4 -0
- data/app/models/ability.rb +39 -0
- data/app/models/red_base/group.rb +27 -0
- data/app/models/red_base/permission.rb +15 -0
- data/app/models/red_base/user.rb +77 -0
- data/app/views/angularjs_templates/auth/groups/details.html +21 -0
- data/app/views/angularjs_templates/auth/groups/index.html +5 -0
- data/app/views/angularjs_templates/auth/groups/new.html +40 -0
- data/app/views/angularjs_templates/auth/index.html +30 -0
- data/app/views/angularjs_templates/auth/users/details.html +28 -0
- data/app/views/angularjs_templates/auth/users/index.html +6 -0
- data/app/views/angularjs_templates/auth/users/new.html +45 -0
- data/app/views/angularjs_templates/index.html +8 -0
- data/app/views/angularjs_templates/list-view/index.html +66 -0
- data/app/views/angularjs_templates/locale/fa.po +25 -0
- data/app/views/angularjs_templates/locale/templates.pot +24 -0
- data/app/views/angularjs_templates/logs/index.html +6 -0
- data/app/views/angularjs_templates/modules.html +17 -0
- data/app/views/angularjs_templates/nav.html.erb +38 -0
- data/app/views/angularjs_templates/nav.html.erb~ +43 -0
- data/app/views/devise/confirmations/new.html.erb +34 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +44 -0
- data/app/views/devise/passwords/new.html.erb +32 -0
- data/app/views/devise/registrations/edit.html.erb +29 -0
- data/app/views/devise/registrations/new.html.erb +91 -0
- data/app/views/devise/sessions/new.html.erb +98 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +30 -0
- data/app/views/layouts/red_base/application.html.erb +90 -0
- data/app/views/layouts/red_base/dashboard.html.erb +21 -0
- data/app/views/red_base/api/v1/groups/create.json.jbuilder +4 -0
- data/app/views/red_base/api/v1/groups/destroy.html.erb +2 -0
- data/app/views/red_base/api/v1/groups/destroy.json.jbuilder +1 -0
- data/app/views/red_base/api/v1/groups/edit.html.erb +2 -0
- data/app/views/red_base/api/v1/groups/index.html.erb +2 -0
- data/app/views/red_base/api/v1/groups/index.json.jbuilder +6 -0
- data/app/views/red_base/api/v1/groups/new.html.erb +2 -0
- data/app/views/red_base/api/v1/groups/show.html.erb +2 -0
- data/app/views/red_base/api/v1/groups/show.json.jbuilder +5 -0
- data/app/views/red_base/api/v1/groups/update.json.jbuilder +4 -0
- data/app/views/red_base/api/v1/logs/index.json.jbuilder +1 -0
- data/app/views/red_base/api/v1/permissions/index.json.jbuilder +1 -0
- data/app/views/red_base/api/v1/users/create.html.erb +2 -0
- data/app/views/red_base/api/v1/users/create.json.jbuilder +1 -0
- data/app/views/red_base/api/v1/users/destroy.json.jbuilder +1 -0
- data/app/views/red_base/api/v1/users/distroy.html.erb +2 -0
- data/app/views/red_base/api/v1/users/edit.html.erb +2 -0
- data/app/views/red_base/api/v1/users/index.html.erb +2 -0
- data/app/views/red_base/api/v1/users/index.json.jbuilder +4 -0
- data/app/views/red_base/api/v1/users/show.html.erb +2 -0
- data/app/views/red_base/api/v1/users/show.json.jbuilder +2 -0
- data/app/views/red_base/api/v1/users/update.json.jbuilder +1 -0
- data/app/views/red_base/dashboard/index.html.erb +37 -0
- data/app/views/red_base/home/index.html.erb +119 -0
- data/config/initializers/devise.rb +28 -0
- data/config/locales/devise.en.yml +59 -0
- data/config/locales/devise.fa.yml +56 -0
- data/config/locales/fa/LC_MESSAGES/red_base.mo +0 -0
- data/config/locales/fa/messages.mo +0 -0
- data/config/locales/fa/red_base.po +181 -0
- data/config/locales/red_base.pot +181 -0
- data/config/routes.rb +33 -0
- data/db/migrate/20131013091000_devise_create_red_base_users.rb +64 -0
- data/db/migrate/20131020124701_create_red_base_groups.rb +9 -0
- data/db/migrate/20131021170923_create_red_base_permissions.rb +10 -0
- data/db/migrate/20131123120422_add_permissions_groups_table.rb +8 -0
- data/db/seeds.rb +15 -0
- data/lib/devise_patch.rb~ +5 -0
- data/lib/generators/red_base/USAGE +8 -0
- data/lib/generators/red_base/angularjs_resource_generator.rb +74 -0
- data/lib/generators/red_base/install_all_generator.rb +38 -0
- data/lib/generators/red_base/install_generator.rb +42 -0
- data/lib/generators/red_base/install_specs_generator.rb +48 -0
- data/lib/generators/red_base/js_scaffold_generator.rb +232 -0
- data/lib/generators/red_base/templates/README +41 -0
- data/lib/generators/red_base/templates/README~ +4 -0
- data/lib/generators/red_base/templates/SPECS +13 -0
- data/lib/generators/red_base/templates/angularjs/details.html.erb +20 -0
- data/lib/generators/red_base/templates/angularjs/details.html.erb~ +0 -0
- data/lib/generators/red_base/templates/angularjs/index.html.erb +59 -0
- data/lib/generators/red_base/templates/angularjs/module.js.erb +259 -0
- data/lib/generators/red_base/templates/angularjs/new.html.erb +43 -0
- data/lib/generators/red_base/templates/api/controller.rb.erb +54 -0
- data/lib/generators/red_base/templates/api/controller.rb.erb~ +37 -0
- data/lib/generators/red_base/templates/devise.rb +251 -0
- data/lib/generators/red_base/templates/devise.rb~ +238 -0
- data/lib/generators/red_base/templates/fast_gettext.rb +4 -0
- data/lib/generators/red_base/templates/features/api.feature +92 -0
- data/lib/generators/red_base/templates/features/api.step.rb +7 -0
- data/lib/generators/red_base/templates/features/step_definitions/email_steps.rb +206 -0
- data/lib/generators/red_base/templates/features/support/email_spec.rb +1 -0
- data/lib/generators/red_base/templates/features/support/env.rb +79 -0
- data/lib/generators/red_base/templates/formtastic.rb +76 -0
- data/lib/generators/red_base/templates/js_scaffold.README +25 -0
- data/lib/generators/red_base/templates/red_base.rb +14 -0
- data/lib/generators/red_base/templates/red_base.rb~ +251 -0
- data/lib/generators/red_base/templates/seeds.rb +1 -0
- data/lib/generators/red_base/templates/spec/factories/groups.rb +5 -0
- data/lib/generators/red_base/templates/spec/factories/users.rb +10 -0
- data/lib/generators/red_base/templates/spec/spec_helper.rb +69 -0
- data/lib/generators/red_base/templates/spec/support/devise.rb +3 -0
- data/lib/generators/red_base/templates/views/create.json.jbuilder.erb +2 -0
- data/lib/generators/red_base/templates/views/destroy.json.jbuilder.erb +1 -0
- data/lib/generators/red_base/templates/views/index.json.jbuilder.erb +10 -0
- data/lib/generators/red_base/templates/views/index.json.jbuilder.erb~ +0 -0
- data/lib/generators/red_base/templates/views/show.json.jbuilder.erb +6 -0
- data/lib/generators/red_base/templates/views/update.json.jbuilder.erb +6 -0
- data/lib/generators/red_base/views_generator.rb +41 -0
- data/lib/red_base/active_record.rb +78 -0
- data/lib/red_base/active_record.rb~ +0 -0
- data/lib/red_base/api/groups_api.rb +41 -0
- data/lib/red_base/api/permissions_api.rb +24 -0
- data/lib/red_base/api/root.rb +15 -0
- data/lib/red_base/api/users_api.rb +20 -0
- data/lib/red_base/api.rb +61 -0
- data/lib/red_base/cucumber/auth.rb +45 -0
- data/lib/red_base/cucumber/exceptions.rb +40 -0
- data/lib/red_base/cucumber/interaction.rb +43 -0
- data/lib/red_base/cucumber/query.rb +28 -0
- data/lib/red_base/cucumber/urls.rb +76 -0
- data/lib/red_base/cucumber.rb +25 -0
- data/lib/red_base/dashboard/controller.rb +42 -0
- data/lib/red_base/dashboard/module.rb +45 -0
- data/lib/red_base/dashboard/module.rb~ +25 -0
- data/lib/red_base/dashboard.rb +60 -0
- data/lib/red_base/dashboard.rb~ +18 -0
- data/lib/red_base/engine.rb +132 -0
- data/lib/red_base/exceptions.rb +26 -0
- data/lib/red_base/i18n.rb +35 -0
- data/lib/red_base/initialize.rb +7 -0
- data/lib/red_base/omniauth/callbacks.rb +58 -0
- data/lib/red_base/omniauth/callbakcs.rb~ +7 -0
- data/lib/red_base/omniauth.rb +24 -0
- data/lib/red_base/omniauth.rb~ +1 -0
- data/lib/red_base/plugins.rb +44 -0
- data/lib/red_base/version.rb +22 -0
- data/lib/red_base.rb +30 -0
- data/lib/tasks/grunt/Gruntfile.js +25 -0
- data/lib/tasks/red_base_tasks.rake +23 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config/application.rb +23 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/public/404.html +58 -0
- data/spec/dummy/public/422.html +58 -0
- data/spec/dummy/public/500.html +57 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/spec_helper.rb +52 -0
- metadata +661 -0
@@ -0,0 +1,56 @@
|
|
1
|
+
fa:
|
2
|
+
errors:
|
3
|
+
messages:
|
4
|
+
expired: 'منقضی شده، لطفا درخواست جدید بدهید'
|
5
|
+
not_found: 'یافت نشد'
|
6
|
+
already_confirmed: 'قبلا تایید شده، لطفا وارد شوید'
|
7
|
+
not_locked: 'قفل نشده است'
|
8
|
+
not_saved:
|
9
|
+
one: '۱ خطا جلوی ذخیره %{resource} را گرفت:'
|
10
|
+
other: '%{count} خطا جلوی ذخیره این %{resource} را گرفت:'
|
11
|
+
|
12
|
+
devise:
|
13
|
+
failure:
|
14
|
+
already_authenticated: 'وارد سیستم هستید.'
|
15
|
+
unauthenticated: 'پیش از ادامه باید وارد شوید یا ثبت نام کنید.'
|
16
|
+
unconfirmed: 'باید حسابتان را قبل از ادامه تایید کنید.'
|
17
|
+
locked: 'حسابتان قفل شده است.'
|
18
|
+
invalid: 'ایمیل یا رمز عبور غیر معتبر.'
|
19
|
+
invalid_token: 'کلمه رمز نامعتبر.'
|
20
|
+
timeout: 'نشست شما منقضی شده است. برای ادامه دوباره وارد شوید.'
|
21
|
+
inactive: 'حساب شما هنوز فعال نشده است.'
|
22
|
+
sessions:
|
23
|
+
signed_in: 'ورود موفق.'
|
24
|
+
signed_out: 'خروج موفق.'
|
25
|
+
passwords:
|
26
|
+
send_instructions: 'در چند دقیقه آینده ایمیلی حاوی راهنمای بازگرداندن رمز عبورتان دریافت خواهید کرد.'
|
27
|
+
updated: 'رمز عبورتان با موفقیت عوض شد. اکنون وارد شدید.'
|
28
|
+
updated_not_active: 'رمز عبورتان با موفقیت عوض شد.'
|
29
|
+
send_paranoid_instructions: '.اگر ایمیلتان در پایگاه داده ما باشد، در چند دقیقه ایملی حاوی لینک بازگردانی رمز عبور دریافت خواهید کرد'
|
30
|
+
no_token: '.بدون ایمیل برگرداندن رمز عبورتان به این صفحه دسترسی ندارید. اگر از ایمیل بازگردانی رمز عبور میآیید، لطفا مطمئن شوید آدرس کامل را وارد کردهاید'
|
31
|
+
confirmations:
|
32
|
+
send_instructions: 'در چند دقیقه آینده ایمیلی حاوی راهنمای تایید حسابتان دریافت خواهید کرد.'
|
33
|
+
send_paranoid_instructions: '.اگر ایمیلتان در پایگاه داده ما باشد، در چند دقیقه ایملی حاوی لینک تایید حسابتان دریافت خواهید کرد'
|
34
|
+
confirmed: 'حسابتان با موفقیت تایید شد. هم اکنون وارد شدید.'
|
35
|
+
registrations:
|
36
|
+
signed_up: 'خوش آمدید! با موفقیت ثبت نام کردید.'
|
37
|
+
signed_up_but_unconfirmed: '.پیغامی حاوی لینک تایید به ایملتان فرستاده شد. لطفا لینک را باز کنید تا حسابتان را فعال کنید'
|
38
|
+
signed_up_but_inactive: 'با موفقیت ثبت نام کردید. اما نمیتوانید وارد شوید چون هنوز حسابتان تایید نشده است.'
|
39
|
+
signed_up_but_locked: '.با موفقیت ثبت نام کردید، اما نمیتوانید وارد شوید چون حسابتان قفل شده است'
|
40
|
+
updated: 'به روز رسانی حسابتان با موفقیت انجام شد.'
|
41
|
+
update_needs_confirmation: '.حسابتان را با موفقیت به روز کردید، اما باید ایملیل جدیدتان را تایید کنید. لطفا ایمیلتان را چک کنید و بر روی لینک تایید کلیک کنید تا تایید ایمیل جدیدتان نهایی شود'
|
42
|
+
destroyed: 'بدرود! حسابتان لغو شد. به امید دیدار دوباره.'
|
43
|
+
unlocks:
|
44
|
+
send_instructions: 'ایمیلی حاوی راهنمای باز کردن حسابتان در چند دقیقه آینده به شما ارسال خواهد شد.'
|
45
|
+
unlocked: 'حسابتان با موفقیت باز شد. اکنون وارد شدید.'
|
46
|
+
send_paranoid_instructions: 'اگر حسابتان وجود داشته باشد، در چند دقیقه ایمیلی حاوی راهنمای باز کردن قفل آن دریافت خواهید کرد.'
|
47
|
+
omniauth_callbacks:
|
48
|
+
success: 'با موفقیت مجوز استفاده از %{kind} دریافت شد.'
|
49
|
+
failure: 'امکان استفاده از مجوز %{kind} نبود زیرا "%{reason}".'
|
50
|
+
mailer:
|
51
|
+
confirmation_instructions:
|
52
|
+
subject: 'راهنمای تایید'
|
53
|
+
reset_password_instructions:
|
54
|
+
subject: 'راهنمای بازنشانی رمز عبور'
|
55
|
+
unlock_instructions:
|
56
|
+
subject: 'راهنمای باز کردن'
|
Binary file
|
Binary file
|
@@ -0,0 +1,181 @@
|
|
1
|
+
# Persian translations for red_base package.
|
2
|
+
# Copyright (C) 2013 THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
+
# This file is distributed under the same license as the red_base package.
|
4
|
+
# lxsameer <lxsameer@gnu.org>, 2013.
|
5
|
+
#
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: red_base 1.0.0\n"
|
9
|
+
"Report-Msgid-Bugs-To: \n"
|
10
|
+
"POT-Creation-Date: 2013-11-09 17:12+0330\n"
|
11
|
+
"PO-Revision-Date: 2013-11-09 15:16+0330\n"
|
12
|
+
"Last-Translator: lxsameer <lxsameer@gnu.org>\n"
|
13
|
+
"Language-Team: Persian\n"
|
14
|
+
"Language: fa\n"
|
15
|
+
"MIME-Version: 1.0\n"
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
18
|
+
"Plural-Forms: nplurals=; plural=;\n"
|
19
|
+
"\n"
|
20
|
+
|
21
|
+
msgid " Sign in "
|
22
|
+
msgstr ""
|
23
|
+
|
24
|
+
msgid "Activate"
|
25
|
+
msgstr ""
|
26
|
+
|
27
|
+
msgid "Active"
|
28
|
+
msgstr ""
|
29
|
+
|
30
|
+
msgid "Authentication"
|
31
|
+
msgstr ""
|
32
|
+
|
33
|
+
msgid "Can not connect to remote, please try again"
|
34
|
+
msgstr ""
|
35
|
+
|
36
|
+
msgid "Change your password"
|
37
|
+
msgstr ""
|
38
|
+
|
39
|
+
msgid "Confim Password"
|
40
|
+
msgstr ""
|
41
|
+
|
42
|
+
msgid "Current Page"
|
43
|
+
msgstr ""
|
44
|
+
|
45
|
+
msgid "Dashboard"
|
46
|
+
msgstr "بخش کاریری"
|
47
|
+
|
48
|
+
msgid "Delete"
|
49
|
+
msgstr "حذف"
|
50
|
+
|
51
|
+
msgid "E-mail"
|
52
|
+
msgstr "ایمیل"
|
53
|
+
|
54
|
+
msgid "Edit"
|
55
|
+
msgstr "ویرایش"
|
56
|
+
|
57
|
+
msgid "Email"
|
58
|
+
msgstr "ایمیل"
|
59
|
+
|
60
|
+
msgid "For changing your password fill and submit the form."
|
61
|
+
msgstr ""
|
62
|
+
|
63
|
+
msgid "For registration you can fill the form ."
|
64
|
+
msgstr ""
|
65
|
+
|
66
|
+
msgid "For sign in enter your information !"
|
67
|
+
msgstr ""
|
68
|
+
|
69
|
+
msgid "Forgot your password?"
|
70
|
+
msgstr ""
|
71
|
+
|
72
|
+
msgid "Given page does not exists"
|
73
|
+
msgstr ""
|
74
|
+
|
75
|
+
msgid "Groups"
|
76
|
+
msgstr ""
|
77
|
+
|
78
|
+
msgid "ID"
|
79
|
+
msgstr "ردیف"
|
80
|
+
|
81
|
+
msgid "If you are a registered member you can go to signin page"
|
82
|
+
msgstr ""
|
83
|
+
|
84
|
+
msgid "If you forget your password you can fill this page for reseting password"
|
85
|
+
msgstr ""
|
86
|
+
|
87
|
+
msgid "Item(s)"
|
88
|
+
msgstr ""
|
89
|
+
|
90
|
+
msgid "Its simple to register this site"
|
91
|
+
msgstr ""
|
92
|
+
|
93
|
+
msgid "Languages"
|
94
|
+
msgstr ""
|
95
|
+
|
96
|
+
msgid "Login using"
|
97
|
+
msgstr ""
|
98
|
+
|
99
|
+
msgid "Membership"
|
100
|
+
msgstr ""
|
101
|
+
|
102
|
+
msgid "Name"
|
103
|
+
msgstr ""
|
104
|
+
|
105
|
+
msgid "New"
|
106
|
+
msgstr ""
|
107
|
+
|
108
|
+
msgid "New User"
|
109
|
+
msgstr ""
|
110
|
+
|
111
|
+
msgid "Password"
|
112
|
+
msgstr ""
|
113
|
+
|
114
|
+
msgid "Red Base"
|
115
|
+
msgstr ""
|
116
|
+
|
117
|
+
msgid "Register"
|
118
|
+
msgstr "ثبت نام"
|
119
|
+
|
120
|
+
msgid "Resend condirmation"
|
121
|
+
msgstr ""
|
122
|
+
|
123
|
+
msgid "Resend confirmation instructions"
|
124
|
+
msgstr ""
|
125
|
+
|
126
|
+
msgid "Search"
|
127
|
+
msgstr "جسنتو جو"
|
128
|
+
|
129
|
+
msgid "Select All"
|
130
|
+
msgstr ""
|
131
|
+
|
132
|
+
msgid "Selected"
|
133
|
+
msgstr ""
|
134
|
+
|
135
|
+
msgid "Selected record(s) removed successfully."
|
136
|
+
msgstr ""
|
137
|
+
|
138
|
+
msgid "Send me reset password instructions"
|
139
|
+
msgstr ""
|
140
|
+
|
141
|
+
msgid "Show"
|
142
|
+
msgstr ""
|
143
|
+
|
144
|
+
msgid "Sign In"
|
145
|
+
msgstr ""
|
146
|
+
|
147
|
+
msgid "Sign UP"
|
148
|
+
msgstr ""
|
149
|
+
|
150
|
+
msgid "Sign Up"
|
151
|
+
msgstr ""
|
152
|
+
|
153
|
+
msgid "Sign in"
|
154
|
+
msgstr ""
|
155
|
+
|
156
|
+
msgid "Some slug"
|
157
|
+
msgstr ""
|
158
|
+
|
159
|
+
msgid "There is not record"
|
160
|
+
msgstr ""
|
161
|
+
|
162
|
+
msgid "Toggle Select"
|
163
|
+
msgstr ""
|
164
|
+
|
165
|
+
msgid "Total Pages"
|
166
|
+
msgstr ""
|
167
|
+
|
168
|
+
msgid "Users"
|
169
|
+
msgstr "کاربران"
|
170
|
+
|
171
|
+
msgid "You can access the member information by registration on this site."
|
172
|
+
msgstr ""
|
173
|
+
|
174
|
+
msgid "remember me"
|
175
|
+
msgstr ""
|
176
|
+
|
177
|
+
msgid "some text."
|
178
|
+
msgstr ""
|
179
|
+
|
180
|
+
msgid "you can use members area with registratio"
|
181
|
+
msgstr ""
|
@@ -0,0 +1,181 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
+
# This file is distributed under the same license as the red_base package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
|
+
#
|
6
|
+
#, fuzzy
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: red_base 1.0.0\n"
|
10
|
+
"Report-Msgid-Bugs-To: \n"
|
11
|
+
"POT-Creation-Date: 2013-11-09 17:12+0330\n"
|
12
|
+
"PO-Revision-Date: 2013-11-09 17:12+0330\n"
|
13
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
|
+
"Language: \n"
|
16
|
+
"MIME-Version: 1.0\n"
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
19
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
20
|
+
|
21
|
+
msgid " Sign in "
|
22
|
+
msgstr ""
|
23
|
+
|
24
|
+
msgid "Activate"
|
25
|
+
msgstr ""
|
26
|
+
|
27
|
+
msgid "Active"
|
28
|
+
msgstr ""
|
29
|
+
|
30
|
+
msgid "Authentication"
|
31
|
+
msgstr ""
|
32
|
+
|
33
|
+
msgid "Can not connect to remote, please try again"
|
34
|
+
msgstr ""
|
35
|
+
|
36
|
+
msgid "Change your password"
|
37
|
+
msgstr ""
|
38
|
+
|
39
|
+
msgid "Confim Password"
|
40
|
+
msgstr ""
|
41
|
+
|
42
|
+
msgid "Current Page"
|
43
|
+
msgstr ""
|
44
|
+
|
45
|
+
msgid "Dashboard"
|
46
|
+
msgstr ""
|
47
|
+
|
48
|
+
msgid "Delete"
|
49
|
+
msgstr ""
|
50
|
+
|
51
|
+
msgid "E-mail"
|
52
|
+
msgstr ""
|
53
|
+
|
54
|
+
msgid "Edit"
|
55
|
+
msgstr ""
|
56
|
+
|
57
|
+
msgid "Email"
|
58
|
+
msgstr ""
|
59
|
+
|
60
|
+
msgid "For changing your password fill and submit the form."
|
61
|
+
msgstr ""
|
62
|
+
|
63
|
+
msgid "For registration you can fill the form ."
|
64
|
+
msgstr ""
|
65
|
+
|
66
|
+
msgid "For sign in enter your information !"
|
67
|
+
msgstr ""
|
68
|
+
|
69
|
+
msgid "Forgot your password?"
|
70
|
+
msgstr ""
|
71
|
+
|
72
|
+
msgid "Given page does not exists"
|
73
|
+
msgstr ""
|
74
|
+
|
75
|
+
msgid "Groups"
|
76
|
+
msgstr ""
|
77
|
+
|
78
|
+
msgid "ID"
|
79
|
+
msgstr ""
|
80
|
+
|
81
|
+
msgid "If you are a registered member you can go to signin page"
|
82
|
+
msgstr ""
|
83
|
+
|
84
|
+
msgid "If you forget your password you can fill this page for reseting password"
|
85
|
+
msgstr ""
|
86
|
+
|
87
|
+
msgid "Item(s)"
|
88
|
+
msgstr ""
|
89
|
+
|
90
|
+
msgid "Its simple to register this site"
|
91
|
+
msgstr ""
|
92
|
+
|
93
|
+
msgid "Languages"
|
94
|
+
msgstr ""
|
95
|
+
|
96
|
+
msgid "Login using"
|
97
|
+
msgstr ""
|
98
|
+
|
99
|
+
msgid "Membership"
|
100
|
+
msgstr ""
|
101
|
+
|
102
|
+
msgid "Name"
|
103
|
+
msgstr ""
|
104
|
+
|
105
|
+
msgid "New"
|
106
|
+
msgstr ""
|
107
|
+
|
108
|
+
msgid "New User"
|
109
|
+
msgstr ""
|
110
|
+
|
111
|
+
msgid "Password"
|
112
|
+
msgstr ""
|
113
|
+
|
114
|
+
msgid "Red Base"
|
115
|
+
msgstr ""
|
116
|
+
|
117
|
+
msgid "Register"
|
118
|
+
msgstr ""
|
119
|
+
|
120
|
+
msgid "Resend condirmation"
|
121
|
+
msgstr ""
|
122
|
+
|
123
|
+
msgid "Resend confirmation instructions"
|
124
|
+
msgstr ""
|
125
|
+
|
126
|
+
msgid "Search"
|
127
|
+
msgstr ""
|
128
|
+
|
129
|
+
msgid "Select All"
|
130
|
+
msgstr ""
|
131
|
+
|
132
|
+
msgid "Selected"
|
133
|
+
msgstr ""
|
134
|
+
|
135
|
+
msgid "Selected record(s) removed successfully."
|
136
|
+
msgstr ""
|
137
|
+
|
138
|
+
msgid "Send me reset password instructions"
|
139
|
+
msgstr ""
|
140
|
+
|
141
|
+
msgid "Show"
|
142
|
+
msgstr ""
|
143
|
+
|
144
|
+
msgid "Sign In"
|
145
|
+
msgstr ""
|
146
|
+
|
147
|
+
msgid "Sign UP"
|
148
|
+
msgstr ""
|
149
|
+
|
150
|
+
msgid "Sign Up"
|
151
|
+
msgstr ""
|
152
|
+
|
153
|
+
msgid "Sign in"
|
154
|
+
msgstr ""
|
155
|
+
|
156
|
+
msgid "Some slug"
|
157
|
+
msgstr ""
|
158
|
+
|
159
|
+
msgid "There is not record"
|
160
|
+
msgstr ""
|
161
|
+
|
162
|
+
msgid "Toggle Select"
|
163
|
+
msgstr ""
|
164
|
+
|
165
|
+
msgid "Total Pages"
|
166
|
+
msgstr ""
|
167
|
+
|
168
|
+
msgid "Users"
|
169
|
+
msgstr ""
|
170
|
+
|
171
|
+
msgid "You can access the member information by registration on this site."
|
172
|
+
msgstr ""
|
173
|
+
|
174
|
+
msgid "remember me"
|
175
|
+
msgstr ""
|
176
|
+
|
177
|
+
msgid "some text."
|
178
|
+
msgstr ""
|
179
|
+
|
180
|
+
msgid "you can use members area with registratio"
|
181
|
+
msgstr ""
|
data/config/routes.rb
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
RedBase::Engine.routes.draw do
|
2
|
+
get "templates/*path" => "dashboard#jstemplate"
|
3
|
+
|
4
|
+
# Authentications
|
5
|
+
devise_for :users, {
|
6
|
+
:class_name => "RedBase::User",
|
7
|
+
:controllers => { :omniauth_callbacks => "red_base/omniauth/callbacks" },
|
8
|
+
:module => :devise
|
9
|
+
}
|
10
|
+
|
11
|
+
scope "(:locale)", :locale => Regexp.new(::I18n.available_locales.join("|")) do
|
12
|
+
scope RedBase::Engine.dashboard_namespace.to_sym do
|
13
|
+
get "" => "dashboard#index", :as => "dashboard"
|
14
|
+
get "modules" => "dashboard#modules"
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
# Root URL
|
19
|
+
root :to => "home#index"
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
namespace :api, :defaults => {:format => :json} do
|
24
|
+
namespace :v1 do
|
25
|
+
get "permissions", :to => "permissions#index"
|
26
|
+
resources :groups, :except => [:new]
|
27
|
+
resources :users, :except => [:new]
|
28
|
+
get "logs" => "logs#index"
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
|
33
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
class DeviseCreateRedBaseUsers < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table(:red_base_users) do |t|
|
4
|
+
## Database authenticatable
|
5
|
+
t.string :email, :null => false, :default => ""
|
6
|
+
t.string :encrypted_password, :null => false, :default => ""
|
7
|
+
|
8
|
+
## Recoverable
|
9
|
+
t.string :reset_password_token
|
10
|
+
t.datetime :reset_password_sent_at
|
11
|
+
|
12
|
+
## Rememberable
|
13
|
+
t.datetime :remember_created_at
|
14
|
+
|
15
|
+
## Trackable
|
16
|
+
t.integer :sign_in_count, :default => 0
|
17
|
+
t.datetime :current_sign_in_at
|
18
|
+
t.datetime :last_sign_in_at
|
19
|
+
t.string :current_sign_in_ip
|
20
|
+
t.string :last_sign_in_ip
|
21
|
+
|
22
|
+
|
23
|
+
t.string :first_name
|
24
|
+
t.string :last_name
|
25
|
+
|
26
|
+
# Group
|
27
|
+
t.integer :group_id, :default => 2
|
28
|
+
|
29
|
+
if not Devise.omniauth_providers.empty?
|
30
|
+
# Service
|
31
|
+
t.string :provider, :default => ""
|
32
|
+
t.string :uid
|
33
|
+
end
|
34
|
+
|
35
|
+
if Rails.env.production?
|
36
|
+
## Confirmable
|
37
|
+
t.string :confirmation_token
|
38
|
+
t.datetime :confirmed_at
|
39
|
+
t.datetime :confirmation_sent_at
|
40
|
+
t.string :unconfirmed_email # Only if using reconfirmable
|
41
|
+
end
|
42
|
+
|
43
|
+
## Lockable
|
44
|
+
t.integer :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
|
45
|
+
t.string :unlock_token # Only if unlock strategy is :email or :both
|
46
|
+
t.datetime :locked_at
|
47
|
+
|
48
|
+
## Token authenticatable
|
49
|
+
# t.string :authentication_token
|
50
|
+
|
51
|
+
|
52
|
+
t.timestamps
|
53
|
+
end
|
54
|
+
|
55
|
+
add_index :red_base_users, :email, :unique => true
|
56
|
+
add_index :red_base_users, :reset_password_token, :unique => true
|
57
|
+
|
58
|
+
if Rails.env.production?
|
59
|
+
add_index :red_base_users, :confirmation_token, :unique => true
|
60
|
+
end
|
61
|
+
add_index :red_base_users, :unlock_token, :unique => true
|
62
|
+
# add_index :red_base_users, :authentication_token, :unique => true
|
63
|
+
end
|
64
|
+
end
|
data/db/seeds.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# Database initial data
|
2
|
+
|
3
|
+
RedBase::Group.create({:name => "Admin"})
|
4
|
+
RedBase::Group.create({:name => "Guest", :id => 2})
|
5
|
+
|
6
|
+
RedBase::User.create({
|
7
|
+
:email => "admin@example.com",
|
8
|
+
:group_id => 1,
|
9
|
+
:password => "123123123",
|
10
|
+
:password_confirmation => "123123123"})
|
11
|
+
|
12
|
+
RedBase::User.create({:email => "user@example.com",
|
13
|
+
:group_id => 999,
|
14
|
+
:password => "123123123",
|
15
|
+
:password_confirmation => "123123123"})
|
@@ -0,0 +1,74 @@
|
|
1
|
+
# -----------------------------------------------------------------------------
|
2
|
+
# Red Base - Basic website skel engine
|
3
|
+
# Copyright (C) 2012-2013 Yellowen
|
4
|
+
#
|
5
|
+
# This program is free software; you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
7
|
+
# the Free Software Foundation; either version 2 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU General Public License along
|
16
|
+
# with this program; if not, write to the Free Software Foundation, Inc.,
|
17
|
+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
18
|
+
# -----------------------------------------------------------------------------
|
19
|
+
|
20
|
+
module RedBase
|
21
|
+
module Generators
|
22
|
+
class AngularjsResourceGenerator < Rails::Generators::Base
|
23
|
+
source_root File.expand_path('../templates', __FILE__)
|
24
|
+
|
25
|
+
argument :resource_name, :type => :string, :required => true
|
26
|
+
argument :dependencies, type: :array, default: [], banner: "dependencies"
|
27
|
+
|
28
|
+
desc "Create a new resource for angularjs application"
|
29
|
+
def create_module
|
30
|
+
template "angularjs/module.js.erb", "#{angularjs_app_path}modules/#{resource_path}.js"
|
31
|
+
end
|
32
|
+
|
33
|
+
def create_template
|
34
|
+
template "angularjs/index.html.erb", "app/assets/templates/#{resource.underscore}/index.html"
|
35
|
+
end
|
36
|
+
|
37
|
+
private
|
38
|
+
|
39
|
+
def get_dependencies
|
40
|
+
deps = []
|
41
|
+
dependencies.each do |dependency|
|
42
|
+
deps << "'#{dependency.camelize}'"
|
43
|
+
end
|
44
|
+
|
45
|
+
deps.join(", ")
|
46
|
+
end
|
47
|
+
|
48
|
+
def resource_path
|
49
|
+
path_parts = resource_name.split("/")
|
50
|
+
if path_parts.length > 1
|
51
|
+
return "#{path_parts(0..-2).join("/")}/#{path_parts[-1].underscore}"
|
52
|
+
end
|
53
|
+
resource_name.underscore
|
54
|
+
end
|
55
|
+
|
56
|
+
def resource
|
57
|
+
path_parts = resource_name.split("/")
|
58
|
+
if path_parts.length > 1
|
59
|
+
return path_parts[-1].camelize
|
60
|
+
end
|
61
|
+
resource_name.camelize
|
62
|
+
end
|
63
|
+
|
64
|
+
def is_in_engine?
|
65
|
+
false
|
66
|
+
end
|
67
|
+
|
68
|
+
def angularjs_app_path
|
69
|
+
path = RedBase::Engine.dashboard_js_manifest.split("/")[0..-2].join("/")
|
70
|
+
"app/assets/javascripts/#{path}/"
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# -----------------------------------------------------------------------------
|
2
|
+
# Red Base - Basic website skel engine
|
3
|
+
# Copyright (C) 2012-2013 Yellowen
|
4
|
+
#
|
5
|
+
# This program is free software; you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
7
|
+
# the Free Software Foundation; either version 2 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU General Public License along
|
16
|
+
# with this program; if not, write to the Free Software Foundation, Inc.,
|
17
|
+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
18
|
+
# -----------------------------------------------------------------------------
|
19
|
+
|
20
|
+
module RedBase
|
21
|
+
module Generators
|
22
|
+
class InstallAllGenerator < Rails::Generators::Base
|
23
|
+
source_root File.expand_path('../templates', __FILE__)
|
24
|
+
|
25
|
+
desc "Copy all the necessary files to use Red Base (migrations included)"
|
26
|
+
hook_for :install_generator
|
27
|
+
|
28
|
+
def copy_migrations
|
29
|
+
rake("red_base:install:migrations")
|
30
|
+
end
|
31
|
+
|
32
|
+
def copy_install
|
33
|
+
invoke "red_base:install"
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|