red_base 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (278) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +339 -0
  3. data/README.rdoc +40 -0
  4. data/Rakefile +42 -0
  5. data/app/assets/fonts/DroidNaskh-Bold.ttf +0 -0
  6. data/app/assets/fonts/DroidNaskh-Regular.ttf +0 -0
  7. data/app/assets/fonts/OpenSans-Bold.ttf +0 -0
  8. data/app/assets/fonts/OpenSans-BoldItalic.ttf +0 -0
  9. data/app/assets/fonts/OpenSans-ExtraBold.ttf +0 -0
  10. data/app/assets/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  11. data/app/assets/fonts/OpenSans-Italic.ttf +0 -0
  12. data/app/assets/fonts/OpenSans-Light.ttf +0 -0
  13. data/app/assets/fonts/OpenSans-LightItalic.ttf +0 -0
  14. data/app/assets/fonts/OpenSans-Regular.ttf +0 -0
  15. data/app/assets/fonts/OpenSans-Semibold.ttf +0 -0
  16. data/app/assets/fonts/OpenSans-SemiboldItalic.ttf +0 -0
  17. data/app/assets/javascripts/red_base/application.js +20 -0
  18. data/app/assets/javascripts/red_base/dashboard/angular.js +9 -0
  19. data/app/assets/javascripts/red_base/dashboard/app.js +65 -0
  20. data/app/assets/javascripts/red_base/dashboard/application.js.erb +24 -0
  21. data/app/assets/javascripts/red_base/dashboard/functions.js.erb +91 -0
  22. data/app/assets/javascripts/red_base/dashboard/init.js +38 -0
  23. data/app/assets/javascripts/red_base/dashboard/init.js~ +0 -0
  24. data/app/assets/javascripts/red_base/dashboard/lib/angular-animate.js +1226 -0
  25. data/app/assets/javascripts/red_base/dashboard/lib/angular-gettext.js +202 -0
  26. data/app/assets/javascripts/red_base/dashboard/lib/angular-resource.js +578 -0
  27. data/app/assets/javascripts/red_base/dashboard/lib/angular-route.js +880 -0
  28. data/app/assets/javascripts/red_base/dashboard/lib/angular.js +20031 -0
  29. data/app/assets/javascripts/red_base/dashboard/lib/lodash.underscore.js +4893 -0
  30. data/app/assets/javascripts/red_base/dashboard/lib/restangular.js +1066 -0
  31. data/app/assets/javascripts/red_base/dashboard/locale/translations.js +5 -0
  32. data/app/assets/javascripts/red_base/dashboard/modules/anim.js +32 -0
  33. data/app/assets/javascripts/red_base/dashboard/modules/api.js +32 -0
  34. data/app/assets/javascripts/red_base/dashboard/modules/auth/auth.js +34 -0
  35. data/app/assets/javascripts/red_base/dashboard/modules/auth/group.js +174 -0
  36. data/app/assets/javascripts/red_base/dashboard/modules/auth/user.js +122 -0
  37. data/app/assets/javascripts/red_base/dashboard/modules/list-view.js +293 -0
  38. data/app/assets/javascripts/red_base/dashboard/modules/logs.js +41 -0
  39. data/app/assets/javascripts/red_base/dashboard/modules/modules.js +50 -0
  40. data/app/assets/javascripts/red_base/dashboard/modules/nav.js.erb +92 -0
  41. data/app/assets/javascripts/red_base/dashboard/templates/application.handlebars.erb +42 -0
  42. data/app/assets/javascripts/red_base/dashboard/templates/auth/groups/details.handlebars.erb +15 -0
  43. data/app/assets/javascripts/red_base/dashboard/templates/auth/groups/index.handlebars.erb +7 -0
  44. data/app/assets/javascripts/red_base/dashboard/templates/auth/groups/new.handlebars.erb +39 -0
  45. data/app/assets/javascripts/red_base/dashboard/templates/auth/index.handlebars.erb +31 -0
  46. data/app/assets/javascripts/red_base/dashboard/templates/auth/users/details.handlebars.erb +15 -0
  47. data/app/assets/javascripts/red_base/dashboard/templates/auth/users/index.handlebars.erb +11 -0
  48. data/app/assets/javascripts/red_base/dashboard/templates/auth/users/new.handlebars.erb +33 -0
  49. data/app/assets/javascripts/red_base/dashboard/templates/components/list-view.handlebars.erb +59 -0
  50. data/app/assets/javascripts/red_base/dashboard/templates/components/model-form.handlebars.erb +3 -0
  51. data/app/assets/javascripts/red_base/dashboard/templates/modules.handlebars.erb +15 -0
  52. data/app/assets/javascripts/red_base/dashboard/templates/navigation.handlebars.erb +43 -0
  53. data/app/assets/javascripts/red_base/dashboard/templates/widgets.handlebars +23 -0
  54. data/app/assets/javascripts/red_base/dashboard/variables.js.erb +17 -0
  55. data/app/assets/javascripts/red_base/groups.js +2 -0
  56. data/app/assets/javascripts/red_base/home.js +2 -0
  57. data/app/assets/javascripts/red_base/i18n.js +13 -0
  58. data/app/assets/javascripts/red_base/locale/en.json +27 -0
  59. data/app/assets/javascripts/red_base/locale/fa.json +27 -0
  60. data/app/assets/javascripts/red_base/users.js +2 -0
  61. data/app/assets/stylesheets/red_base/base.css.scss +402 -0
  62. data/app/assets/stylesheets/red_base/dashboard/dashboard.css.scss +169 -0
  63. data/app/assets/stylesheets/red_base/dashboard/ltr/application.css +21 -0
  64. data/app/assets/stylesheets/red_base/dashboard/ltr/base.css.scss.erb +28 -0
  65. data/app/assets/stylesheets/red_base/dashboard/ltr/base.css.scss~ +15 -0
  66. data/app/assets/stylesheets/red_base/dashboard/ltr/buttons.css.scss.erb +48 -0
  67. data/app/assets/stylesheets/red_base/dashboard/ltr/direction.css.scss +38 -0
  68. data/app/assets/stylesheets/red_base/dashboard/ltr/foundation_and_overrides.css.scss +1014 -0
  69. data/app/assets/stylesheets/red_base/dashboard/rtl/application.css +21 -0
  70. data/app/assets/stylesheets/red_base/dashboard/rtl/base.css.scss.erb +31 -0
  71. data/app/assets/stylesheets/red_base/dashboard/rtl/base.css.scss~ +1 -0
  72. data/app/assets/stylesheets/red_base/dashboard/rtl/base.css_flymake.scss +25 -0
  73. data/app/assets/stylesheets/red_base/dashboard/rtl/buttons.css.scss.erb +45 -0
  74. data/app/assets/stylesheets/red_base/dashboard/rtl/direction.css.scss +37 -0
  75. data/app/assets/stylesheets/red_base/dashboard/rtl/foundation_and_overrides.css.scss +1014 -0
  76. data/app/assets/stylesheets/red_base/dashboard/sidebar.css.scss +93 -0
  77. data/app/assets/stylesheets/red_base/devise.css.scss +34 -0
  78. data/app/assets/stylesheets/red_base/groups.css +4 -0
  79. data/app/assets/stylesheets/red_base/home.css.scss +14 -0
  80. data/app/assets/stylesheets/red_base/ltr/application.css +20 -0
  81. data/app/assets/stylesheets/red_base/ltr/buttons.css.scss.erb +48 -0
  82. data/app/assets/stylesheets/red_base/ltr/foundation_and_overrides.scss.erb +1012 -0
  83. data/app/assets/stylesheets/red_base/mixins.css.scss +15 -0
  84. data/app/assets/stylesheets/red_base/mixins.css.scss~ +7 -0
  85. data/app/assets/stylesheets/red_base/rtl/application.css +20 -0
  86. data/app/assets/stylesheets/red_base/rtl/buttons.css.scss.erb +48 -0
  87. data/app/assets/stylesheets/red_base/rtl/foundation_and_overrides.scss.erb +1012 -0
  88. data/app/assets/stylesheets/red_base/users.css +4 -0
  89. data/app/assets/stylesheets/red_base/variables.css.scss +100 -0
  90. data/app/controllers/red_base/api/v1/groups_controller.rb +65 -0
  91. data/app/controllers/red_base/api/v1/logs_controller.rb +12 -0
  92. data/app/controllers/red_base/api/v1/permissions_controller.rb +17 -0
  93. data/app/controllers/red_base/api/v1/users_controller.rb +54 -0
  94. data/app/controllers/red_base/api_controller.rb +51 -0
  95. data/app/controllers/red_base/application_controller.rb +34 -0
  96. data/app/controllers/red_base/dashboard_controller.rb +40 -0
  97. data/app/controllers/red_base/home_controller.rb +19 -0
  98. data/app/controllers/red_base/omniauth/callbacks_controller.rb +43 -0
  99. data/app/controllers/red_base/users/omniauth_callbacks_controller.rb~ +2 -0
  100. data/app/helpers/red_base/application_helper.rb +4 -0
  101. data/app/helpers/red_base/dashboard_helper.rb +5 -0
  102. data/app/helpers/red_base/groups_helper.rb +4 -0
  103. data/app/helpers/red_base/home_helper.rb +4 -0
  104. data/app/helpers/red_base/users_helper.rb +4 -0
  105. data/app/models/ability.rb +39 -0
  106. data/app/models/red_base/group.rb +27 -0
  107. data/app/models/red_base/permission.rb +15 -0
  108. data/app/models/red_base/user.rb +77 -0
  109. data/app/views/angularjs_templates/auth/groups/details.html +21 -0
  110. data/app/views/angularjs_templates/auth/groups/index.html +5 -0
  111. data/app/views/angularjs_templates/auth/groups/new.html +40 -0
  112. data/app/views/angularjs_templates/auth/index.html +30 -0
  113. data/app/views/angularjs_templates/auth/users/details.html +28 -0
  114. data/app/views/angularjs_templates/auth/users/index.html +6 -0
  115. data/app/views/angularjs_templates/auth/users/new.html +45 -0
  116. data/app/views/angularjs_templates/index.html +8 -0
  117. data/app/views/angularjs_templates/list-view/index.html +66 -0
  118. data/app/views/angularjs_templates/locale/fa.po +25 -0
  119. data/app/views/angularjs_templates/locale/templates.pot +24 -0
  120. data/app/views/angularjs_templates/logs/index.html +6 -0
  121. data/app/views/angularjs_templates/modules.html +17 -0
  122. data/app/views/angularjs_templates/nav.html.erb +38 -0
  123. data/app/views/angularjs_templates/nav.html.erb~ +43 -0
  124. data/app/views/devise/confirmations/new.html.erb +34 -0
  125. data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  126. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  127. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  128. data/app/views/devise/passwords/edit.html.erb +44 -0
  129. data/app/views/devise/passwords/new.html.erb +32 -0
  130. data/app/views/devise/registrations/edit.html.erb +29 -0
  131. data/app/views/devise/registrations/new.html.erb +91 -0
  132. data/app/views/devise/sessions/new.html.erb +98 -0
  133. data/app/views/devise/shared/_links.erb +25 -0
  134. data/app/views/devise/unlocks/new.html.erb +30 -0
  135. data/app/views/layouts/red_base/application.html.erb +90 -0
  136. data/app/views/layouts/red_base/dashboard.html.erb +21 -0
  137. data/app/views/red_base/api/v1/groups/create.json.jbuilder +4 -0
  138. data/app/views/red_base/api/v1/groups/destroy.html.erb +2 -0
  139. data/app/views/red_base/api/v1/groups/destroy.json.jbuilder +1 -0
  140. data/app/views/red_base/api/v1/groups/edit.html.erb +2 -0
  141. data/app/views/red_base/api/v1/groups/index.html.erb +2 -0
  142. data/app/views/red_base/api/v1/groups/index.json.jbuilder +6 -0
  143. data/app/views/red_base/api/v1/groups/new.html.erb +2 -0
  144. data/app/views/red_base/api/v1/groups/show.html.erb +2 -0
  145. data/app/views/red_base/api/v1/groups/show.json.jbuilder +5 -0
  146. data/app/views/red_base/api/v1/groups/update.json.jbuilder +4 -0
  147. data/app/views/red_base/api/v1/logs/index.json.jbuilder +1 -0
  148. data/app/views/red_base/api/v1/permissions/index.json.jbuilder +1 -0
  149. data/app/views/red_base/api/v1/users/create.html.erb +2 -0
  150. data/app/views/red_base/api/v1/users/create.json.jbuilder +1 -0
  151. data/app/views/red_base/api/v1/users/destroy.json.jbuilder +1 -0
  152. data/app/views/red_base/api/v1/users/distroy.html.erb +2 -0
  153. data/app/views/red_base/api/v1/users/edit.html.erb +2 -0
  154. data/app/views/red_base/api/v1/users/index.html.erb +2 -0
  155. data/app/views/red_base/api/v1/users/index.json.jbuilder +4 -0
  156. data/app/views/red_base/api/v1/users/show.html.erb +2 -0
  157. data/app/views/red_base/api/v1/users/show.json.jbuilder +2 -0
  158. data/app/views/red_base/api/v1/users/update.json.jbuilder +1 -0
  159. data/app/views/red_base/dashboard/index.html.erb +37 -0
  160. data/app/views/red_base/home/index.html.erb +119 -0
  161. data/config/initializers/devise.rb +28 -0
  162. data/config/locales/devise.en.yml +59 -0
  163. data/config/locales/devise.fa.yml +56 -0
  164. data/config/locales/fa/LC_MESSAGES/red_base.mo +0 -0
  165. data/config/locales/fa/messages.mo +0 -0
  166. data/config/locales/fa/red_base.po +181 -0
  167. data/config/locales/red_base.pot +181 -0
  168. data/config/routes.rb +33 -0
  169. data/db/migrate/20131013091000_devise_create_red_base_users.rb +64 -0
  170. data/db/migrate/20131020124701_create_red_base_groups.rb +9 -0
  171. data/db/migrate/20131021170923_create_red_base_permissions.rb +10 -0
  172. data/db/migrate/20131123120422_add_permissions_groups_table.rb +8 -0
  173. data/db/seeds.rb +15 -0
  174. data/lib/devise_patch.rb~ +5 -0
  175. data/lib/generators/red_base/USAGE +8 -0
  176. data/lib/generators/red_base/angularjs_resource_generator.rb +74 -0
  177. data/lib/generators/red_base/install_all_generator.rb +38 -0
  178. data/lib/generators/red_base/install_generator.rb +42 -0
  179. data/lib/generators/red_base/install_specs_generator.rb +48 -0
  180. data/lib/generators/red_base/js_scaffold_generator.rb +232 -0
  181. data/lib/generators/red_base/templates/README +41 -0
  182. data/lib/generators/red_base/templates/README~ +4 -0
  183. data/lib/generators/red_base/templates/SPECS +13 -0
  184. data/lib/generators/red_base/templates/angularjs/details.html.erb +20 -0
  185. data/lib/generators/red_base/templates/angularjs/details.html.erb~ +0 -0
  186. data/lib/generators/red_base/templates/angularjs/index.html.erb +59 -0
  187. data/lib/generators/red_base/templates/angularjs/module.js.erb +259 -0
  188. data/lib/generators/red_base/templates/angularjs/new.html.erb +43 -0
  189. data/lib/generators/red_base/templates/api/controller.rb.erb +54 -0
  190. data/lib/generators/red_base/templates/api/controller.rb.erb~ +37 -0
  191. data/lib/generators/red_base/templates/devise.rb +251 -0
  192. data/lib/generators/red_base/templates/devise.rb~ +238 -0
  193. data/lib/generators/red_base/templates/fast_gettext.rb +4 -0
  194. data/lib/generators/red_base/templates/features/api.feature +92 -0
  195. data/lib/generators/red_base/templates/features/api.step.rb +7 -0
  196. data/lib/generators/red_base/templates/features/step_definitions/email_steps.rb +206 -0
  197. data/lib/generators/red_base/templates/features/support/email_spec.rb +1 -0
  198. data/lib/generators/red_base/templates/features/support/env.rb +79 -0
  199. data/lib/generators/red_base/templates/formtastic.rb +76 -0
  200. data/lib/generators/red_base/templates/js_scaffold.README +25 -0
  201. data/lib/generators/red_base/templates/red_base.rb +14 -0
  202. data/lib/generators/red_base/templates/red_base.rb~ +251 -0
  203. data/lib/generators/red_base/templates/seeds.rb +1 -0
  204. data/lib/generators/red_base/templates/spec/factories/groups.rb +5 -0
  205. data/lib/generators/red_base/templates/spec/factories/users.rb +10 -0
  206. data/lib/generators/red_base/templates/spec/spec_helper.rb +69 -0
  207. data/lib/generators/red_base/templates/spec/support/devise.rb +3 -0
  208. data/lib/generators/red_base/templates/views/create.json.jbuilder.erb +2 -0
  209. data/lib/generators/red_base/templates/views/destroy.json.jbuilder.erb +1 -0
  210. data/lib/generators/red_base/templates/views/index.json.jbuilder.erb +10 -0
  211. data/lib/generators/red_base/templates/views/index.json.jbuilder.erb~ +0 -0
  212. data/lib/generators/red_base/templates/views/show.json.jbuilder.erb +6 -0
  213. data/lib/generators/red_base/templates/views/update.json.jbuilder.erb +6 -0
  214. data/lib/generators/red_base/views_generator.rb +41 -0
  215. data/lib/red_base/active_record.rb +78 -0
  216. data/lib/red_base/active_record.rb~ +0 -0
  217. data/lib/red_base/api/groups_api.rb +41 -0
  218. data/lib/red_base/api/permissions_api.rb +24 -0
  219. data/lib/red_base/api/root.rb +15 -0
  220. data/lib/red_base/api/users_api.rb +20 -0
  221. data/lib/red_base/api.rb +61 -0
  222. data/lib/red_base/cucumber/auth.rb +45 -0
  223. data/lib/red_base/cucumber/exceptions.rb +40 -0
  224. data/lib/red_base/cucumber/interaction.rb +43 -0
  225. data/lib/red_base/cucumber/query.rb +28 -0
  226. data/lib/red_base/cucumber/urls.rb +76 -0
  227. data/lib/red_base/cucumber.rb +25 -0
  228. data/lib/red_base/dashboard/controller.rb +42 -0
  229. data/lib/red_base/dashboard/module.rb +45 -0
  230. data/lib/red_base/dashboard/module.rb~ +25 -0
  231. data/lib/red_base/dashboard.rb +60 -0
  232. data/lib/red_base/dashboard.rb~ +18 -0
  233. data/lib/red_base/engine.rb +132 -0
  234. data/lib/red_base/exceptions.rb +26 -0
  235. data/lib/red_base/i18n.rb +35 -0
  236. data/lib/red_base/initialize.rb +7 -0
  237. data/lib/red_base/omniauth/callbacks.rb +58 -0
  238. data/lib/red_base/omniauth/callbakcs.rb~ +7 -0
  239. data/lib/red_base/omniauth.rb +24 -0
  240. data/lib/red_base/omniauth.rb~ +1 -0
  241. data/lib/red_base/plugins.rb +44 -0
  242. data/lib/red_base/version.rb +22 -0
  243. data/lib/red_base.rb +30 -0
  244. data/lib/tasks/grunt/Gruntfile.js +25 -0
  245. data/lib/tasks/red_base_tasks.rake +23 -0
  246. data/spec/dummy/README.rdoc +28 -0
  247. data/spec/dummy/Rakefile +6 -0
  248. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  249. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  250. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  251. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  252. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  253. data/spec/dummy/bin/bundle +3 -0
  254. data/spec/dummy/bin/rails +4 -0
  255. data/spec/dummy/bin/rake +4 -0
  256. data/spec/dummy/config/application.rb +23 -0
  257. data/spec/dummy/config/boot.rb +5 -0
  258. data/spec/dummy/config/database.yml +25 -0
  259. data/spec/dummy/config/environment.rb +5 -0
  260. data/spec/dummy/config/environments/development.rb +29 -0
  261. data/spec/dummy/config/environments/production.rb +80 -0
  262. data/spec/dummy/config/environments/test.rb +36 -0
  263. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  264. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  265. data/spec/dummy/config/initializers/inflections.rb +16 -0
  266. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  267. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  268. data/spec/dummy/config/initializers/session_store.rb +3 -0
  269. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  270. data/spec/dummy/config/locales/en.yml +23 -0
  271. data/spec/dummy/config/routes.rb +4 -0
  272. data/spec/dummy/config.ru +4 -0
  273. data/spec/dummy/public/404.html +58 -0
  274. data/spec/dummy/public/422.html +58 -0
  275. data/spec/dummy/public/500.html +57 -0
  276. data/spec/dummy/public/favicon.ico +0 -0
  277. data/spec/spec_helper.rb +52 -0
  278. 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
@@ -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
@@ -0,0 +1,9 @@
1
+ class CreateRedBaseGroups < ActiveRecord::Migration
2
+ def change
3
+ create_table :red_base_groups do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,10 @@
1
+ class CreateRedBasePermissions < ActiveRecord::Migration
2
+ def change
3
+ create_table :red_base_permissions do |t|
4
+ t.string :model
5
+ t.string :permission_type
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,8 @@
1
+ class AddPermissionsGroupsTable < ActiveRecord::Migration
2
+ def change
3
+ create_table :red_base_groups_permissions do |t|
4
+ t.belongs_to :permission
5
+ t.belongs_to :group
6
+ end
7
+ end
8
+ 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,5 @@
1
+ module Devise
2
+ def omniauth_services(*args)
3
+
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ Description:
2
+ Explain the generator
3
+
4
+ Example:
5
+ rails generate install_red_base Thing
6
+
7
+ This will create:
8
+ what/will/it/create
@@ -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