faalis 0.7.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.
Files changed (286) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +339 -0
  3. data/README.md +45 -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/images/faalis/select2-spinner.gif +0 -0
  18. data/app/assets/images/faalis/select2.png +0 -0
  19. data/app/assets/images/faalis/select2x2.png +0 -0
  20. data/app/assets/javascripts/faalis/application.js +20 -0
  21. data/app/assets/javascripts/faalis/dashboard/angular.js +9 -0
  22. data/app/assets/javascripts/faalis/dashboard/app.js +75 -0
  23. data/app/assets/javascripts/faalis/dashboard/application.js.erb +21 -0
  24. data/app/assets/javascripts/faalis/dashboard/functions.js.erb +91 -0
  25. data/app/assets/javascripts/faalis/dashboard/init.js +38 -0
  26. data/app/assets/javascripts/faalis/dashboard/lib/angular-animate.js +1226 -0
  27. data/app/assets/javascripts/faalis/dashboard/lib/angular-gettext.js +202 -0
  28. data/app/assets/javascripts/faalis/dashboard/lib/angular-resource.js +578 -0
  29. data/app/assets/javascripts/faalis/dashboard/lib/angular-route.js +880 -0
  30. data/app/assets/javascripts/faalis/dashboard/lib/angular.js +20031 -0
  31. data/app/assets/javascripts/faalis/dashboard/lib/lodash.underscore.js +4893 -0
  32. data/app/assets/javascripts/faalis/dashboard/lib/ng-grid.js +3260 -0
  33. data/app/assets/javascripts/faalis/dashboard/lib/ng-quick-date.js +297 -0
  34. data/app/assets/javascripts/faalis/dashboard/lib/restangular.js +1066 -0
  35. data/app/assets/javascripts/faalis/dashboard/lib/select2.js +3255 -0
  36. data/app/assets/javascripts/faalis/dashboard/lib/ui.select2.js +217 -0
  37. data/app/assets/javascripts/faalis/dashboard/locale/translations.js +5 -0
  38. data/app/assets/javascripts/faalis/dashboard/modules/anim.js +32 -0
  39. data/app/assets/javascripts/faalis/dashboard/modules/api.js +32 -0
  40. data/app/assets/javascripts/faalis/dashboard/modules/auth/auth.js +34 -0
  41. data/app/assets/javascripts/faalis/dashboard/modules/auth/group.js +174 -0
  42. data/app/assets/javascripts/faalis/dashboard/modules/auth/profile.js +59 -0
  43. data/app/assets/javascripts/faalis/dashboard/modules/auth/user.js +123 -0
  44. data/app/assets/javascripts/faalis/dashboard/modules/errors.js +47 -0
  45. data/app/assets/javascripts/faalis/dashboard/modules/filter.js +44 -0
  46. data/app/assets/javascripts/faalis/dashboard/modules/list-view.js +310 -0
  47. data/app/assets/javascripts/faalis/dashboard/modules/logs.js +41 -0
  48. data/app/assets/javascripts/faalis/dashboard/modules/modules.js +50 -0
  49. data/app/assets/javascripts/faalis/dashboard/modules/nav.js.erb +97 -0
  50. data/app/assets/javascripts/faalis/dashboard/templates/application.handlebars.erb +42 -0
  51. data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/details.handlebars.erb +15 -0
  52. data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/index.handlebars.erb +7 -0
  53. data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/new.handlebars.erb +39 -0
  54. data/app/assets/javascripts/faalis/dashboard/templates/auth/index.handlebars.erb +31 -0
  55. data/app/assets/javascripts/faalis/dashboard/templates/auth/users/details.handlebars.erb +15 -0
  56. data/app/assets/javascripts/faalis/dashboard/templates/auth/users/index.handlebars.erb +11 -0
  57. data/app/assets/javascripts/faalis/dashboard/templates/auth/users/new.handlebars.erb +33 -0
  58. data/app/assets/javascripts/faalis/dashboard/templates/components/list-view.handlebars.erb +59 -0
  59. data/app/assets/javascripts/faalis/dashboard/templates/components/model-form.handlebars.erb +3 -0
  60. data/app/assets/javascripts/faalis/dashboard/templates/modules.handlebars.erb +15 -0
  61. data/app/assets/javascripts/faalis/dashboard/templates/navigation.handlebars.erb +43 -0
  62. data/app/assets/javascripts/faalis/dashboard/templates/widgets.handlebars +23 -0
  63. data/app/assets/javascripts/faalis/dashboard/variables.js.erb +17 -0
  64. data/app/assets/javascripts/faalis/groups.js +2 -0
  65. data/app/assets/javascripts/faalis/home.js +2 -0
  66. data/app/assets/javascripts/faalis/i18n.js +13 -0
  67. data/app/assets/javascripts/faalis/locale/en.json +27 -0
  68. data/app/assets/javascripts/faalis/locale/fa.json +27 -0
  69. data/app/assets/javascripts/faalis/users.js +2 -0
  70. data/app/assets/stylesheets/faalis/base.css.scss +264 -0
  71. data/app/assets/stylesheets/faalis/dashboard/dashboard.css.scss +226 -0
  72. data/app/assets/stylesheets/faalis/dashboard/list_view.css.scss +169 -0
  73. data/app/assets/stylesheets/faalis/dashboard/ltr/application.css +26 -0
  74. data/app/assets/stylesheets/faalis/dashboard/ltr/base.css.scss.erb +28 -0
  75. data/app/assets/stylesheets/faalis/dashboard/ltr/buttons.css.scss.erb +48 -0
  76. data/app/assets/stylesheets/faalis/dashboard/ltr/direction.css.scss +38 -0
  77. data/app/assets/stylesheets/faalis/dashboard/ltr/foundation_and_overrides.css.scss +1014 -0
  78. data/app/assets/stylesheets/faalis/dashboard/ng-grid.css.scss +442 -0
  79. data/app/assets/stylesheets/faalis/dashboard/ng-quick-date-default-theme.css.scss +20 -0
  80. data/app/assets/stylesheets/faalis/dashboard/ng-quick-date.css.scss +19 -0
  81. data/app/assets/stylesheets/faalis/dashboard/rtl/application.css +26 -0
  82. data/app/assets/stylesheets/faalis/dashboard/rtl/base.css.scss.erb +31 -0
  83. data/app/assets/stylesheets/faalis/dashboard/rtl/base.css_flymake.scss +25 -0
  84. data/app/assets/stylesheets/faalis/dashboard/rtl/buttons.css.scss.erb +45 -0
  85. data/app/assets/stylesheets/faalis/dashboard/rtl/direction.css.scss +37 -0
  86. data/app/assets/stylesheets/faalis/dashboard/rtl/foundation_and_overrides.css.scss +1014 -0
  87. data/app/assets/stylesheets/faalis/dashboard/select2.css.scss.erb +618 -0
  88. data/app/assets/stylesheets/faalis/dashboard/sidebar.css.scss +93 -0
  89. data/app/assets/stylesheets/faalis/devise.css.scss +34 -0
  90. data/app/assets/stylesheets/faalis/groups.css +4 -0
  91. data/app/assets/stylesheets/faalis/home.css.scss +14 -0
  92. data/app/assets/stylesheets/faalis/ltr/application.css +20 -0
  93. data/app/assets/stylesheets/faalis/ltr/buttons.css.scss.erb +48 -0
  94. data/app/assets/stylesheets/faalis/ltr/foundation_and_overrides.scss.erb +1012 -0
  95. data/app/assets/stylesheets/faalis/mixins.css.scss +15 -0
  96. data/app/assets/stylesheets/faalis/rtl/application.css +20 -0
  97. data/app/assets/stylesheets/faalis/rtl/buttons.css.scss.erb +48 -0
  98. data/app/assets/stylesheets/faalis/rtl/foundation_and_overrides.scss.erb +1012 -0
  99. data/app/assets/stylesheets/faalis/users.css +4 -0
  100. data/app/assets/stylesheets/faalis/variables.css.scss +102 -0
  101. data/app/controllers/faalis/api/v1/groups_controller.rb +75 -0
  102. data/app/controllers/faalis/api/v1/logs_controller.rb +12 -0
  103. data/app/controllers/faalis/api/v1/permissions_controller.rb +17 -0
  104. data/app/controllers/faalis/api/v1/profiles_controller.rb +42 -0
  105. data/app/controllers/faalis/api/v1/users_controller.rb +75 -0
  106. data/app/controllers/faalis/api_controller.rb +51 -0
  107. data/app/controllers/faalis/application_controller.rb +34 -0
  108. data/app/controllers/faalis/dashboard_controller.rb +44 -0
  109. data/app/controllers/faalis/home_controller.rb +19 -0
  110. data/app/controllers/faalis/omniauth/callbacks_controller.rb +43 -0
  111. data/app/helpers/faalis/application_helper.rb +4 -0
  112. data/app/helpers/faalis/dashboard_helper.rb +5 -0
  113. data/app/helpers/faalis/groups_helper.rb +4 -0
  114. data/app/helpers/faalis/home_helper.rb +4 -0
  115. data/app/helpers/faalis/users_helper.rb +4 -0
  116. data/app/models/ability.rb +42 -0
  117. data/app/models/faalis/group.rb +27 -0
  118. data/app/models/faalis/permission.rb +15 -0
  119. data/app/models/faalis/user.rb +81 -0
  120. data/app/views/angularjs_templates/#index.html# +8 -0
  121. data/app/views/angularjs_templates/auth/groups/details.html +21 -0
  122. data/app/views/angularjs_templates/auth/groups/index.html +5 -0
  123. data/app/views/angularjs_templates/auth/groups/new.html +41 -0
  124. data/app/views/angularjs_templates/auth/index.html +30 -0
  125. data/app/views/angularjs_templates/auth/profile/edit.html +54 -0
  126. data/app/views/angularjs_templates/auth/users/details.html +28 -0
  127. data/app/views/angularjs_templates/auth/users/index.html +6 -0
  128. data/app/views/angularjs_templates/auth/users/new.html +56 -0
  129. data/app/views/angularjs_templates/filter/index.html +15 -0
  130. data/app/views/angularjs_templates/index.html +8 -0
  131. data/app/views/angularjs_templates/list-view/index.html +81 -0
  132. data/app/views/angularjs_templates/locale/fa.po +25 -0
  133. data/app/views/angularjs_templates/locale/templates.pot +24 -0
  134. data/app/views/angularjs_templates/logs/index.html +6 -0
  135. data/app/views/angularjs_templates/modules.html +17 -0
  136. data/app/views/angularjs_templates/nav.html.erb +38 -0
  137. data/app/views/devise/confirmations/new.html.erb +34 -0
  138. data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  139. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  140. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  141. data/app/views/devise/passwords/edit.html.erb +44 -0
  142. data/app/views/devise/passwords/new.html.erb +32 -0
  143. data/app/views/devise/registrations/edit.html.erb +29 -0
  144. data/app/views/devise/registrations/new.html.erb +91 -0
  145. data/app/views/devise/sessions/new.html.erb +98 -0
  146. data/app/views/devise/shared/_links.erb +25 -0
  147. data/app/views/devise/unlocks/new.html.erb +30 -0
  148. data/app/views/faalis/api/v1/groups/create.json.jbuilder +4 -0
  149. data/app/views/faalis/api/v1/groups/destroy.html.erb +2 -0
  150. data/app/views/faalis/api/v1/groups/destroy.json.jbuilder +1 -0
  151. data/app/views/faalis/api/v1/groups/edit.html.erb +2 -0
  152. data/app/views/faalis/api/v1/groups/index.html.erb +2 -0
  153. data/app/views/faalis/api/v1/groups/index.json.jbuilder +6 -0
  154. data/app/views/faalis/api/v1/groups/new.html.erb +2 -0
  155. data/app/views/faalis/api/v1/groups/show.html.erb +2 -0
  156. data/app/views/faalis/api/v1/groups/show.json.jbuilder +5 -0
  157. data/app/views/faalis/api/v1/groups/update.json.jbuilder +4 -0
  158. data/app/views/faalis/api/v1/logs/index.json.jbuilder +1 -0
  159. data/app/views/faalis/api/v1/permissions/index.json.jbuilder +1 -0
  160. data/app/views/faalis/api/v1/users/create.html.erb +2 -0
  161. data/app/views/faalis/api/v1/users/create.json.jbuilder +1 -0
  162. data/app/views/faalis/api/v1/users/destroy.json.jbuilder +1 -0
  163. data/app/views/faalis/api/v1/users/distroy.html.erb +2 -0
  164. data/app/views/faalis/api/v1/users/edit.html.erb +2 -0
  165. data/app/views/faalis/api/v1/users/index.html.erb +2 -0
  166. data/app/views/faalis/api/v1/users/index.json.jbuilder +4 -0
  167. data/app/views/faalis/api/v1/users/show.html.erb +2 -0
  168. data/app/views/faalis/api/v1/users/show.json.jbuilder +2 -0
  169. data/app/views/faalis/api/v1/users/update.json.jbuilder +1 -0
  170. data/app/views/faalis/dashboard/index.html.erb +37 -0
  171. data/app/views/faalis/dashboard/login_required_page.html.erb +5 -0
  172. data/app/views/faalis/home/index.html.erb +119 -0
  173. data/app/views/layouts/faalis/application.html.erb +90 -0
  174. data/app/views/layouts/faalis/dashboard.html.erb +21 -0
  175. data/config/initializers/devise.rb +28 -0
  176. data/config/locales/devise.en.yml +59 -0
  177. data/config/locales/devise.fa.yml +56 -0
  178. data/config/locales/fa/LC_MESSAGES/faalis.mo +0 -0
  179. data/config/locales/fa/faalis.po +181 -0
  180. data/config/locales/fa/messages.mo +0 -0
  181. data/config/locales/faalis.pot +181 -0
  182. data/config/routes.rb +36 -0
  183. data/db/migrate/20131013091000_devise_create_red_base_users.rb +64 -0
  184. data/db/migrate/20131020124701_create_red_base_groups.rb +9 -0
  185. data/db/migrate/20131021170923_create_red_base_permissions.rb +10 -0
  186. data/db/migrate/20131123120422_add_permissions_groups_table.rb +8 -0
  187. data/db/seeds.rb +15 -0
  188. data/lib/faalis.rb +30 -0
  189. data/lib/faalis/active_record.rb +64 -0
  190. data/lib/faalis/api.rb +61 -0
  191. data/lib/faalis/api/groups_api.rb +41 -0
  192. data/lib/faalis/api/permissions_api.rb +24 -0
  193. data/lib/faalis/api/root.rb +15 -0
  194. data/lib/faalis/api/users_api.rb +20 -0
  195. data/lib/faalis/cucumber.rb +25 -0
  196. data/lib/faalis/cucumber/auth.rb +45 -0
  197. data/lib/faalis/cucumber/exceptions.rb +40 -0
  198. data/lib/faalis/cucumber/interaction.rb +43 -0
  199. data/lib/faalis/cucumber/query.rb +28 -0
  200. data/lib/faalis/cucumber/urls.rb +76 -0
  201. data/lib/faalis/dashboard.rb +60 -0
  202. data/lib/faalis/dashboard/controller.rb +42 -0
  203. data/lib/faalis/dashboard/module.rb +45 -0
  204. data/lib/faalis/engine.rb +128 -0
  205. data/lib/faalis/exceptions.rb +26 -0
  206. data/lib/faalis/i18n.rb +35 -0
  207. data/lib/faalis/initialize.rb +7 -0
  208. data/lib/faalis/omniauth.rb +24 -0
  209. data/lib/faalis/omniauth/callbacks.rb +58 -0
  210. data/lib/faalis/plugins.rb +44 -0
  211. data/lib/faalis/version.rb +22 -0
  212. data/lib/faalis_plugin.rb +476 -0
  213. data/lib/generators/faalis/USAGE +8 -0
  214. data/lib/generators/faalis/angularjs_resource_generator.rb +74 -0
  215. data/lib/generators/faalis/install_all_generator.rb +38 -0
  216. data/lib/generators/faalis/install_generator.rb +42 -0
  217. data/lib/generators/faalis/install_specs_generator.rb +48 -0
  218. data/lib/generators/faalis/js_scaffold_generator.rb +273 -0
  219. data/lib/generators/faalis/templates/README +41 -0
  220. data/lib/generators/faalis/templates/SPECS +13 -0
  221. data/lib/generators/faalis/templates/angularjs/details.html.erb +20 -0
  222. data/lib/generators/faalis/templates/angularjs/index.html.erb +62 -0
  223. data/lib/generators/faalis/templates/angularjs/module.js.erb +309 -0
  224. data/lib/generators/faalis/templates/angularjs/new.html.erb +105 -0
  225. data/lib/generators/faalis/templates/api/controller.rb.erb +56 -0
  226. data/lib/generators/faalis/templates/devise.rb +251 -0
  227. data/lib/generators/faalis/templates/faalis.rb +14 -0
  228. data/lib/generators/faalis/templates/fast_gettext.rb +4 -0
  229. data/lib/generators/faalis/templates/features/api.feature +92 -0
  230. data/lib/generators/faalis/templates/features/api.step.rb +7 -0
  231. data/lib/generators/faalis/templates/features/step_definitions/email_steps.rb +206 -0
  232. data/lib/generators/faalis/templates/features/support/email_spec.rb +1 -0
  233. data/lib/generators/faalis/templates/features/support/env.rb +79 -0
  234. data/lib/generators/faalis/templates/formtastic.rb +76 -0
  235. data/lib/generators/faalis/templates/js_scaffold.README +25 -0
  236. data/lib/generators/faalis/templates/seeds.rb +1 -0
  237. data/lib/generators/faalis/templates/spec/factories/groups.rb +5 -0
  238. data/lib/generators/faalis/templates/spec/factories/users.rb +10 -0
  239. data/lib/generators/faalis/templates/spec/spec_helper.rb +69 -0
  240. data/lib/generators/faalis/templates/spec/support/devise.rb +3 -0
  241. data/lib/generators/faalis/templates/views/create.json.jbuilder.erb +2 -0
  242. data/lib/generators/faalis/templates/views/destroy.json.jbuilder.erb +1 -0
  243. data/lib/generators/faalis/templates/views/index.json.jbuilder.erb +10 -0
  244. data/lib/generators/faalis/templates/views/show.json.jbuilder.erb +7 -0
  245. data/lib/generators/faalis/templates/views/update.json.jbuilder.erb +6 -0
  246. data/lib/generators/faalis/views_generator.rb +41 -0
  247. data/lib/tasks/faalis_tasks.rake +23 -0
  248. data/lib/tasks/grunt/Gruntfile.js +25 -0
  249. data/spec/dummy/README.rdoc +28 -0
  250. data/spec/dummy/Rakefile +6 -0
  251. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  252. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  253. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  254. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  255. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  256. data/spec/dummy/bin/bundle +3 -0
  257. data/spec/dummy/bin/rails +4 -0
  258. data/spec/dummy/bin/rake +4 -0
  259. data/spec/dummy/config.ru +4 -0
  260. data/spec/dummy/config/application.rb +23 -0
  261. data/spec/dummy/config/boot.rb +5 -0
  262. data/spec/dummy/config/database.yml +25 -0
  263. data/spec/dummy/config/environment.rb +5 -0
  264. data/spec/dummy/config/environments/development.rb +29 -0
  265. data/spec/dummy/config/environments/production.rb +80 -0
  266. data/spec/dummy/config/environments/test.rb +36 -0
  267. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  268. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  269. data/spec/dummy/config/initializers/inflections.rb +16 -0
  270. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  271. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  272. data/spec/dummy/config/initializers/session_store.rb +3 -0
  273. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  274. data/spec/dummy/config/locales/en.yml +23 -0
  275. data/spec/dummy/config/routes.rb +4 -0
  276. data/spec/dummy/db/test.sqlite3 +0 -0
  277. data/spec/dummy/log/development.log +0 -0
  278. data/spec/dummy/log/test.log +15 -0
  279. data/spec/dummy/public/404.html +58 -0
  280. data/spec/dummy/public/422.html +58 -0
  281. data/spec/dummy/public/500.html +57 -0
  282. data/spec/dummy/public/favicon.ico +0 -0
  283. data/spec/dummy/tmp/ember-rails/ember-data.js +10204 -0
  284. data/spec/dummy/tmp/ember-rails/ember.js +36991 -0
  285. data/spec/spec_helper.rb +52 -0
  286. metadata +678 -0
@@ -0,0 +1,45 @@
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 Faalis
21
+ class Dashboard
22
+ module Module
23
+
24
+ @@priority = 50
25
+ @@name = "default_name"
26
+ # Register the module on given section with given priority
27
+ def self.show_me_on(section, priority = nil)
28
+ Faalis::Dashboard.instance.register_module(section, self)
29
+ if not priority.nil?
30
+ @@priority = priority
31
+ end
32
+ end
33
+
34
+ def self.priority(priority_)
35
+ @@priority = priority_.to_i
36
+ end
37
+
38
+ def self.name(name_)
39
+ @@name = name_.to_s
40
+ end
41
+
42
+
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,128 @@
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
+ require 'fast_gettext'
20
+ require 'modernizr-rails'
21
+ require "compass-rails"
22
+ require 'zurb-foundation'
23
+ require "font-awesome-rails"
24
+ require "devise"
25
+ require "warden"
26
+ require "cancan"
27
+
28
+
29
+ module Faalis
30
+ class Engine < ::Rails::Engine
31
+
32
+ isolate_namespace Faalis
33
+ engine_name "faalis"
34
+
35
+ ActiveSupport::Inflector.inflections(:en) do |inflect|
36
+ inflect.acronym 'API'
37
+ end
38
+
39
+ config.generators do |g|
40
+ g.test_framework :rspec, :fixture => false
41
+ g.fixture_replacement :factory_girl, :dir => 'spec/factories'
42
+ g.assets false
43
+ g.helper false
44
+ end
45
+
46
+ # Configure logger
47
+ mattr_accessor :logger
48
+ @@logger = Logger.new(STDOUT)
49
+
50
+ # Permissions configuration
51
+ mattr_accessor :models_with_permission
52
+
53
+ # TODO: create a basic setup for this option
54
+ @@models_with_permission = ["Faalis::User",
55
+ "Faalis::Group",
56
+ ]
57
+
58
+ def self.models_with_permission=(value)
59
+ @@models_with_permission.concat(value).uniq!
60
+ end
61
+
62
+ # Dashboard url prefix
63
+ mattr_accessor :dashboard_namespace
64
+ @@dashboard_namespace = :dashboard
65
+
66
+
67
+ # locales
68
+ mattr_accessor :locales
69
+ @@locales = ['en', 'fa']
70
+
71
+ def self.setup
72
+ yield self
73
+ end
74
+
75
+ I18n.locale = :fa
76
+ # Fast Gettext Configuration
77
+ Object.send(:include, FastGettext::Translation)
78
+
79
+ # TODO: Check for possible error in this configurations
80
+ @@locale_path = "#{root}/config/locales"
81
+ FastGettext.add_text_domain 'faalis', :path => @@locale_path, :type => :po
82
+ # All languages you want to allow
83
+ FastGettext.default_available_locales = @@locales
84
+
85
+ FastGettext.default_text_domain = 'faalis'
86
+ FastGettext.locale = :fa
87
+
88
+ # Site Title
89
+ mattr_accessor :site_title
90
+ @@site_title = _("Red Base")
91
+
92
+ # Override devise layout
93
+ config.to_prepare do
94
+ Devise::SessionsController.layout "faalis/application"
95
+ Devise::RegistrationsController.layout "faalis/application"
96
+ Devise::ConfirmationsController.layout "faalis/application"
97
+ Devise::UnlocksController.layout "faalis/application"
98
+ Devise::PasswordsController.layout "faalis/application"
99
+ end
100
+ #Devise.omniauth_path_prefix = ["/en", "/fa"]
101
+
102
+
103
+ # Dashboard configurations
104
+ mattr_accessor :dashboard_modules
105
+
106
+ # This class variable should be a hash
107
+ # that each key is a resource name and its value
108
+ # is some of these:
109
+ # resource: provide resource name explicitly
110
+ # title: resource title (will show in dashboard)
111
+ # icon: icon class checkout font-awesome
112
+ @@dashboard_modules = {
113
+ :auth => {
114
+ :title => _("Authentication"),
115
+ }
116
+ }
117
+
118
+
119
+ def self.dashboard_modules=(value)
120
+ @@dashboard_modules.merge!(value)
121
+ end
122
+
123
+ # Dashboard default javascript manifest
124
+ mattr_accessor :dashboard_js_manifest
125
+ @@dashboard_js_manifest = "controlpanel/application.js"
126
+
127
+ end
128
+ end
@@ -0,0 +1,26 @@
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 Faalis
21
+ module Exceptions
22
+ class AuthorizationError < Exception
23
+
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,35 @@
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 Faalis
21
+ class I18n
22
+
23
+ RTL = [
24
+ :fa,
25
+ :ar
26
+ ]
27
+ def self.direction(locale)
28
+ if RTL.include? locale.to_sym
29
+ "rtl"
30
+ else
31
+ "ltr"
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,7 @@
1
+ require 'fast_gettext'
2
+ require 'gettext_i18n_rails'
3
+ # TODO: Check for possible error in this configurations
4
+ FastGettext.add_text_domain 'app', :path => 'config/locales', :type => :po
5
+ # All languages you want to allow
6
+ #FastGettext.default_available_locales = ['en', 'fa']
7
+ FastGettext.default_text_domain = 'app'
@@ -0,0 +1,24 @@
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 Faalis
21
+ module Omniauth
22
+ autoload :Callbacks, "faalis/omniauth/callbacks"
23
+ end
24
+ end
@@ -0,0 +1,58 @@
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 Faalis
21
+ module Omniauth
22
+
23
+ module Callbacks
24
+
25
+
26
+ def default_service_callback
27
+
28
+ create_or_find_user
29
+
30
+ if @user.persisted?
31
+ # This will throw if @user is not activated
32
+ sign_in_and_redirect @user, :event => :authentication
33
+ set_flash_message(:notice, :success, :kind => __callee__.to_s) if is_navigational_format?
34
+ else
35
+ session["devise.omni_data"] = request.env["omniauth.auth"]
36
+ redirect_to new_user_registration_url
37
+ end
38
+ end
39
+
40
+
41
+ if Devise.omniauth_configs.any?
42
+ Devise.omniauth_configs.keys.each do |provider|
43
+ unless method_defined? provider
44
+ send(:define_method, provider.to_sym) {default_service_callback}
45
+ end
46
+ end
47
+ end
48
+
49
+ private
50
+
51
+ def create_or_find_user
52
+ # This method is implemented in User model
53
+ @user = User.find_from_oauth(request.env["omniauth.auth"], current_user)
54
+ end
55
+
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,44 @@
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
+
21
+ module Faalis
22
+ class Plugins
23
+
24
+ @@plugins = {}
25
+
26
+ def self.register(plugin_name, plugin_class)
27
+ # TODO: Re-think this approach. Do we need to keep plugin classes too?
28
+ if not @@plugins.include? plugin_name
29
+ @@plugins[plugin_name] = plugin_class
30
+ end
31
+ end
32
+
33
+ # Return name of all registered plugins
34
+ def self.names
35
+ @@plugins.keys
36
+ end
37
+
38
+ # Return the actual plugins hash
39
+ def self.plugins
40
+ @@plugins
41
+ end
42
+
43
+ end
44
+ end
@@ -0,0 +1,22 @@
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 Faalis
21
+ VERSION = "0.7.0"
22
+ end
@@ -0,0 +1,476 @@
1
+ say
2
+
3
+ app_name = ask("What's your app name: ").downcase.underscore
4
+
5
+ gem_group :development do
6
+ gem "pry"
7
+ gem 'rspec-rails', '~> 3.0.0.beta'
8
+ gem "capybara"
9
+ gem "factory_girl_rails", "~> 4.0", :require => false
10
+ gem "database_cleaner"
11
+ gem "email_spec"
12
+ gem "cucumber-rails", :require => false
13
+ gem "json_spec", :git => "git://github.com/Yellowen/json_spec.git"
14
+ gem "capybara-webkit"
15
+ end
16
+
17
+
18
+ insert_into_file "Gemfile", :after => "group :development do\n" do
19
+ "\n gem 'faalis', :path => File.expand_path('../../Faalis/', __FILE__)\n"
20
+ end
21
+
22
+ gsub_file "#{app_name}.gemspec", /test\/\*\*\/\*/, "spec/**/*"
23
+
24
+ insert_into_file "#{app_name}.gemspec", :after => 's.add_development_dependency "sqlite3"' do
25
+ "\n s.add_dependency 'globalize', '>= 4.0.0.alpha.2'\n"
26
+ end
27
+
28
+ insert_into_file "#{app_name}.gemspec", :after => 's.add_development_dependency "sqlite3"' do
29
+ "\n s.add_dependency 'jbuilder', '~> 1.2'\n"
30
+ end
31
+ insert_into_file "#{app_name}.gemspec", :after => 's.add_development_dependency "sqlite3"' do
32
+ "\n s.add_dependency 'sass-rails', '~> 4.0.0'\n"
33
+ end
34
+ insert_into_file "#{app_name}.gemspec", :after => 's.add_development_dependency "sqlite3"' do
35
+ "\n s.add_dependency 'uglifier', '>= 1.3.0'\n"
36
+ end
37
+ insert_into_file "#{app_name}.gemspec", :after => 's.add_development_dependency "sqlite3"' do
38
+ "\n s.add_dependency 'jquery-rails'\n"
39
+ end
40
+ insert_into_file "#{app_name}.gemspec", :after => 's.add_development_dependency "sqlite3"' do
41
+ "\n s.add_dependency 'faalis'\n"
42
+ end
43
+
44
+ inside "app/assets/javascripts/" do
45
+ run "touch #{app_name.underscore.downcase}/application.js"
46
+ end
47
+ append_file "app/assets/javascripts/#{app_name.underscore.downcase}/application.js" do <<-'FILE'
48
+ //= require_tree ./modules
49
+ FILE
50
+ end
51
+
52
+ gsub_file "lib/#{app_name}.rb", /require '#{app_name}\/engine'/, ""
53
+ append_file "lib/#{app_name}.rb", "\nrequire '#{app_name}/engine'"
54
+ gsub_file "Gemfile", /https/, "http"
55
+
56
+ gsub_file "lib/#{app_name}/engine.rb", /module #{app_name.camelize}\n/, %Q{if File.exists?([File.expand_path("../../../", __FILE__),
57
+ ".development"].join("/"))
58
+ $LOAD_PATH << File.expand_path('../../../../Faalis/lib', __FILE__)
59
+ end
60
+
61
+ require "faalis"
62
+
63
+
64
+ module #{app_name.camelize}
65
+ }
66
+
67
+ insert_into_file "lib/#{app_name}/engine.rb", :after => " class Engine < ::Rails::Engine\n" do
68
+ %Q{ engine_name "#{app_name}"
69
+
70
+ ::Faalis::Engine.setup do |config|
71
+ config.models_with_permission = []
72
+ end
73
+
74
+ ::Faalis::Plugins.register "#{app_name}", self
75
+ ::Faalis::Engine.dashboard_js_manifest = "#{app_name}/application.js"
76
+ }
77
+ end
78
+
79
+ gsub_file "#{app_name}.gemspec", /MIT-LICENSE/, "LICENSE"
80
+ remove_file "MIT-LICENSE"
81
+ insert_into_file "#{app_name}.gemspec", :after => "Gem::Specification.new do |s|\n" do
82
+ "\n s.licenses = ['GPL-2']\n"
83
+ end
84
+
85
+ git :init
86
+
87
+ create_file "LICENSE" do
88
+ <<-'CODE'
89
+ GNU GENERAL PUBLIC LICENSE
90
+ Version 2, June 1991
91
+
92
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
93
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
94
+ Everyone is permitted to copy and distribute verbatim copies
95
+ of this license document, but changing it is not allowed.
96
+
97
+ Preamble
98
+
99
+ The licenses for most software are designed to take away your
100
+ freedom to share and change it. By contrast, the GNU General Public
101
+ License is intended to guarantee your freedom to share and change free
102
+ software--to make sure the software is free for all its users. This
103
+ General Public License applies to most of the Free Software
104
+ Foundation's software and to any other program whose authors commit to
105
+ using it. (Some other Free Software Foundation software is covered by
106
+ the GNU Lesser General Public License instead.) You can apply it to
107
+ your programs, too.
108
+
109
+ When we speak of free software, we are referring to freedom, not
110
+ price. Our General Public Licenses are designed to make sure that you
111
+ have the freedom to distribute copies of free software (and charge for
112
+ this service if you wish), that you receive source code or can get it
113
+ if you want it, that you can change the software or use pieces of it
114
+ in new free programs; and that you know you can do these things.
115
+
116
+ To protect your rights, we need to make restrictions that forbid
117
+ anyone to deny you these rights or to ask you to surrender the rights.
118
+ These restrictions translate to certain responsibilities for you if you
119
+ distribute copies of the software, or if you modify it.
120
+
121
+ For example, if you distribute copies of such a program, whether
122
+ gratis or for a fee, you must give the recipients all the rights that
123
+ you have. You must make sure that they, too, receive or can get the
124
+ source code. And you must show them these terms so they know their
125
+ rights.
126
+
127
+ We protect your rights with two steps: (1) copyright the software, and
128
+ (2) offer you this license which gives you legal permission to copy,
129
+ distribute and/or modify the software.
130
+
131
+ Also, for each author's protection and ours, we want to make certain
132
+ that everyone understands that there is no warranty for this free
133
+ software. If the software is modified by someone else and passed on, we
134
+ want its recipients to know that what they have is not the original, so
135
+ that any problems introduced by others will not reflect on the original
136
+ authors' reputations.
137
+
138
+ Finally, any free program is threatened constantly by software
139
+ patents. We wish to avoid the danger that redistributors of a free
140
+ program will individually obtain patent licenses, in effect making the
141
+ program proprietary. To prevent this, we have made it clear that any
142
+ patent must be licensed for everyone's free use or not licensed at all.
143
+
144
+ The precise terms and conditions for copying, distribution and
145
+ modification follow.
146
+
147
+ GNU GENERAL PUBLIC LICENSE
148
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
149
+
150
+ 0. This License applies to any program or other work which contains
151
+ a notice placed by the copyright holder saying it may be distributed
152
+ under the terms of this General Public License. The "Program", below,
153
+ refers to any such program or work, and a "work based on the Program"
154
+ means either the Program or any derivative work under copyright law:
155
+ that is to say, a work containing the Program or a portion of it,
156
+ either verbatim or with modifications and/or translated into another
157
+ language. (Hereinafter, translation is included without limitation in
158
+ the term "modification".) Each licensee is addressed as "you".
159
+
160
+ Activities other than copying, distribution and modification are not
161
+ covered by this License; they are outside its scope. The act of
162
+ running the Program is not restricted, and the output from the Program
163
+ is covered only if its contents constitute a work based on the
164
+ Program (independent of having been made by running the Program).
165
+ Whether that is true depends on what the Program does.
166
+
167
+ 1. You may copy and distribute verbatim copies of the Program's
168
+ source code as you receive it, in any medium, provided that you
169
+ conspicuously and appropriately publish on each copy an appropriate
170
+ copyright notice and disclaimer of warranty; keep intact all the
171
+ notices that refer to this License and to the absence of any warranty;
172
+ and give any other recipients of the Program a copy of this License
173
+ along with the Program.
174
+
175
+ You may charge a fee for the physical act of transferring a copy, and
176
+ you may at your option offer warranty protection in exchange for a fee.
177
+
178
+ 2. You may modify your copy or copies of the Program or any portion
179
+ of it, thus forming a work based on the Program, and copy and
180
+ distribute such modifications or work under the terms of Section 1
181
+ above, provided that you also meet all of these conditions:
182
+
183
+ a) You must cause the modified files to carry prominent notices
184
+ stating that you changed the files and the date of any change.
185
+
186
+ b) You must cause any work that you distribute or publish, that in
187
+ whole or in part contains or is derived from the Program or any
188
+ part thereof, to be licensed as a whole at no charge to all third
189
+ parties under the terms of this License.
190
+
191
+ c) If the modified program normally reads commands interactively
192
+ when run, you must cause it, when started running for such
193
+ interactive use in the most ordinary way, to print or display an
194
+ announcement including an appropriate copyright notice and a
195
+ notice that there is no warranty (or else, saying that you provide
196
+ a warranty) and that users may redistribute the program under
197
+ these conditions, and telling the user how to view a copy of this
198
+ License. (Exception: if the Program itself is interactive but
199
+ does not normally print such an announcement, your work based on
200
+ the Program is not required to print an announcement.)
201
+
202
+ These requirements apply to the modified work as a whole. If
203
+ identifiable sections of that work are not derived from the Program,
204
+ and can be reasonably considered independent and separate works in
205
+ themselves, then this License, and its terms, do not apply to those
206
+ sections when you distribute them as separate works. But when you
207
+ distribute the same sections as part of a whole which is a work based
208
+ on the Program, the distribution of the whole must be on the terms of
209
+ this License, whose permissions for other licensees extend to the
210
+ entire whole, and thus to each and every part regardless of who wrote it.
211
+
212
+ Thus, it is not the intent of this section to claim rights or contest
213
+ your rights to work written entirely by you; rather, the intent is to
214
+ exercise the right to control the distribution of derivative or
215
+ collective works based on the Program.
216
+
217
+ In addition, mere aggregation of another work not based on the Program
218
+ with the Program (or with a work based on the Program) on a volume of
219
+ a storage or distribution medium does not bring the other work under
220
+ the scope of this License.
221
+
222
+ 3. You may copy and distribute the Program (or a work based on it,
223
+ under Section 2) in object code or executable form under the terms of
224
+ Sections 1 and 2 above provided that you also do one of the following:
225
+
226
+ a) Accompany it with the complete corresponding machine-readable
227
+ source code, which must be distributed under the terms of Sections
228
+ 1 and 2 above on a medium customarily used for software interchange; or,
229
+
230
+ b) Accompany it with a written offer, valid for at least three
231
+ years, to give any third party, for a charge no more than your
232
+ cost of physically performing source distribution, a complete
233
+ machine-readable copy of the corresponding source code, to be
234
+ distributed under the terms of Sections 1 and 2 above on a medium
235
+ customarily used for software interchange; or,
236
+
237
+ c) Accompany it with the information you received as to the offer
238
+ to distribute corresponding source code. (This alternative is
239
+ allowed only for noncommercial distribution and only if you
240
+ received the program in object code or executable form with such
241
+ an offer, in accord with Subsection b above.)
242
+
243
+ The source code for a work means the preferred form of the work for
244
+ making modifications to it. For an executable work, complete source
245
+ code means all the source code for all modules it contains, plus any
246
+ associated interface definition files, plus the scripts used to
247
+ control compilation and installation of the executable. However, as a
248
+ special exception, the source code distributed need not include
249
+ anything that is normally distributed (in either source or binary
250
+ form) with the major components (compiler, kernel, and so on) of the
251
+ operating system on which the executable runs, unless that component
252
+ itself accompanies the executable.
253
+
254
+ If distribution of executable or object code is made by offering
255
+ access to copy from a designated place, then offering equivalent
256
+ access to copy the source code from the same place counts as
257
+ distribution of the source code, even though third parties are not
258
+ compelled to copy the source along with the object code.
259
+
260
+ 4. You may not copy, modify, sublicense, or distribute the Program
261
+ except as expressly provided under this License. Any attempt
262
+ otherwise to copy, modify, sublicense or distribute the Program is
263
+ void, and will automatically terminate your rights under this License.
264
+ However, parties who have received copies, or rights, from you under
265
+ this License will not have their licenses terminated so long as such
266
+ parties remain in full compliance.
267
+
268
+ 5. You are not required to accept this License, since you have not
269
+ signed it. However, nothing else grants you permission to modify or
270
+ distribute the Program or its derivative works. These actions are
271
+ prohibited by law if you do not accept this License. Therefore, by
272
+ modifying or distributing the Program (or any work based on the
273
+ Program), you indicate your acceptance of this License to do so, and
274
+ all its terms and conditions for copying, distributing or modifying
275
+ the Program or works based on it.
276
+
277
+ 6. Each time you redistribute the Program (or any work based on the
278
+ Program), the recipient automatically receives a license from the
279
+ original licensor to copy, distribute or modify the Program subject to
280
+ these terms and conditions. You may not impose any further
281
+ restrictions on the recipients' exercise of the rights granted herein.
282
+ You are not responsible for enforcing compliance by third parties to
283
+ this License.
284
+
285
+ 7. If, as a consequence of a court judgment or allegation of patent
286
+ infringement or for any other reason (not limited to patent issues),
287
+ conditions are imposed on you (whether by court order, agreement or
288
+ otherwise) that contradict the conditions of this License, they do not
289
+ excuse you from the conditions of this License. If you cannot
290
+ distribute so as to satisfy simultaneously your obligations under this
291
+ License and any other pertinent obligations, then as a consequence you
292
+ may not distribute the Program at all. For example, if a patent
293
+ license would not permit royalty-free redistribution of the Program by
294
+ all those who receive copies directly or indirectly through you, then
295
+ the only way you could satisfy both it and this License would be to
296
+ refrain entirely from distribution of the Program.
297
+
298
+ If any portion of this section is held invalid or unenforceable under
299
+ any particular circumstance, the balance of the section is intended to
300
+ apply and the section as a whole is intended to apply in other
301
+ circumstances.
302
+
303
+ It is not the purpose of this section to induce you to infringe any
304
+ patents or other property right claims or to contest validity of any
305
+ such claims; this section has the sole purpose of protecting the
306
+ integrity of the free software distribution system, which is
307
+ implemented by public license practices. Many people have made
308
+ generous contributions to the wide range of software distributed
309
+ through that system in reliance on consistent application of that
310
+ system; it is up to the author/donor to decide if he or she is willing
311
+ to distribute software through any other system and a licensee cannot
312
+ impose that choice.
313
+
314
+ This section is intended to make thoroughly clear what is believed to
315
+ be a consequence of the rest of this License.
316
+
317
+ 8. If the distribution and/or use of the Program is restricted in
318
+ certain countries either by patents or by copyrighted interfaces, the
319
+ original copyright holder who places the Program under this License
320
+ may add an explicit geographical distribution limitation excluding
321
+ those countries, so that distribution is permitted only in or among
322
+ countries not thus excluded. In such case, this License incorporates
323
+ the limitation as if written in the body of this License.
324
+
325
+ 9. The Free Software Foundation may publish revised and/or new versions
326
+ of the General Public License from time to time. Such new versions will
327
+ be similar in spirit to the present version, but may differ in detail to
328
+ address new problems or concerns.
329
+
330
+ Each version is given a distinguishing version number. If the Program
331
+ specifies a version number of this License which applies to it and "any
332
+ later version", you have the option of following the terms and conditions
333
+ either of that version or of any later version published by the Free
334
+ Software Foundation. If the Program does not specify a version number of
335
+ this License, you may choose any version ever published by the Free Software
336
+ Foundation.
337
+
338
+ 10. If you wish to incorporate parts of the Program into other free
339
+ programs whose distribution conditions are different, write to the author
340
+ to ask for permission. For software which is copyrighted by the Free
341
+ Software Foundation, write to the Free Software Foundation; we sometimes
342
+ make exceptions for this. Our decision will be guided by the two goals
343
+ of preserving the free status of all derivatives of our free software and
344
+ of promoting the sharing and reuse of software generally.
345
+
346
+ NO WARRANTY
347
+
348
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
349
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
350
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
351
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
352
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
353
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
354
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
355
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
356
+ REPAIR OR CORRECTION.
357
+
358
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
359
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
360
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
361
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
362
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
363
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
364
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
365
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
366
+ POSSIBILITY OF SUCH DAMAGES.
367
+
368
+ END OF TERMS AND CONDITIONS
369
+
370
+ How to Apply These Terms to Your New Programs
371
+
372
+ If you develop a new program, and you want it to be of the greatest
373
+ possible use to the public, the best way to achieve this is to make it
374
+ free software which everyone can redistribute and change under these terms.
375
+
376
+ To do so, attach the following notices to the program. It is safest
377
+ to attach them to the start of each source file to most effectively
378
+ convey the exclusion of warranty; and each file should have at least
379
+ the "copyright" line and a pointer to where the full notice is found.
380
+
381
+ A ruby on rails engine which provides a very basic web application to use with other ruby on rails applications
382
+ Copyright (C) 2013 Yellowen Inc
383
+
384
+ This program is free software; you can redistribute it and/or modify
385
+ it under the terms of the GNU General Public License as published by
386
+ the Free Software Foundation; either version 2 of the License, or
387
+ (at your option) any later version.
388
+
389
+ This program is distributed in the hope that it will be useful,
390
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
391
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
392
+ GNU General Public License for more details.
393
+
394
+ You should have received a copy of the GNU General Public License along
395
+ with this program; if not, write to the Free Software Foundation, Inc.,
396
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
397
+
398
+ Also add information on how to contact you by electronic and paper mail.
399
+
400
+ If the program is interactive, make it output a short notice like this
401
+ when it starts in an interactive mode:
402
+
403
+ Gnomovision version 69, Copyright (C) year name of author
404
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
405
+ This is free software, and you are welcome to redistribute it
406
+ under certain conditions; type `show c' for details.
407
+
408
+ The hypothetical commands `show w' and `show c' should show the appropriate
409
+ parts of the General Public License. Of course, the commands you use may
410
+ be called something other than `show w' and `show c'; they could even be
411
+ mouse-clicks or menu items--whatever suits your program.
412
+
413
+ You should also get your employer (if you work as a programmer) or your
414
+ school, if any, to sign a "copyright disclaimer" for the program, if
415
+ necessary. Here is a sample; alter the names:
416
+
417
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
418
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
419
+
420
+ {signature of Ty Coon}, 1 April 1989
421
+ Ty Coon, President of Vice
422
+
423
+ This General Public License does not permit incorporating your program into
424
+ proprietary programs. If your program is a subroutine library, you may
425
+ consider it more useful to permit linking proprietary applications with the
426
+ library. If this is what you want to do, use the GNU Lesser General
427
+ Public License instead of this License.
428
+ CODE
429
+ end
430
+ create_file ".gitignore" do
431
+ %Q{
432
+ .bundle/
433
+ log/*.log
434
+ *~
435
+ pkg/
436
+ test/dummy/db/*.sqlite3
437
+ test/dummy/db/*.sqlite3-journal
438
+ test/dummy/log/*.log
439
+ test/dummy/tmp/
440
+ test/dummy/.sass-cache
441
+ spec/dummy/db/*.sqlite3
442
+ spec/dummy/db/*.sqlite3-journal
443
+ spec/dummy/log/*.log
444
+ spec/dummy/tmp/
445
+ spec/dummy/.sass-cache
446
+
447
+ *.rbc
448
+ *.sassc
449
+ .sass-cache
450
+ capybara-*.html
451
+ .rspec
452
+ .rvmrc
453
+ /.bundle
454
+ /vendor/bundle
455
+ /log/*
456
+ /tmp/*
457
+ /db/*.sqlite3
458
+ /public/system/*
459
+ /coverage/
460
+ /spec/tmp/*
461
+ **.orig
462
+ rerun.txt
463
+ pickle-email-*.html
464
+ .project
465
+ config/initializers/secret_token.rb
466
+ .*\#*#
467
+ \#*#
468
+ docs/*
469
+ node_modules/
470
+ .development
471
+ doc/
472
+ }
473
+ end
474
+
475
+ git add: "."
476
+ git commit: %Q{-a -m "Initial commit"}