mix-rails 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. data/lib/mix-rails/all.rb +1 -1
  2. data/lib/mix-rails/version.rb +1 -1
  3. data/message-board/.gitignore +7 -0
  4. data/message-board/Gemfile +17 -0
  5. data/message-board/MIT-LICENSE +20 -0
  6. data/message-board/README.rdoc +3 -0
  7. data/message-board/Rakefile +27 -0
  8. data/message-board/app/assets/images/message-board/.gitkeep +0 -0
  9. data/message-board/app/assets/javascripts/message-board/.gitkeep +0 -0
  10. data/message-board/app/assets/stylesheets/message-board/.gitkeep +0 -0
  11. data/message-board/app/controllers/.gitkeep +0 -0
  12. data/message-board/app/controllers/admix/board_messages_controller.rb +17 -0
  13. data/message-board/app/controllers/admix/board_replies_controller.rb +21 -0
  14. data/message-board/app/controllers/admix/dashboard_controller.rb +7 -0
  15. data/message-board/app/controllers/board_messages_controller.rb +23 -0
  16. data/message-board/app/helpers/.gitkeep +0 -0
  17. data/message-board/app/mailers/.gitkeep +0 -0
  18. data/message-board/app/mailers/message_board_mailer.rb +10 -0
  19. data/message-board/app/models/.gitkeep +0 -0
  20. data/message-board/app/models/admix/board_messages_datagrid.rb +31 -0
  21. data/message-board/app/models/admix/board_replies_datagrid.rb +29 -0
  22. data/message-board/app/models/board_message.rb +29 -0
  23. data/message-board/app/models/board_reply.rb +28 -0
  24. data/message-board/app/views/.gitkeep +0 -0
  25. data/message-board/app/views/admix/board_messages/_form_fields.html.haml +5 -0
  26. data/message-board/app/views/admix/board_messages/_show.html.haml +11 -0
  27. data/message-board/app/views/admix/board_messages/_table_actions.html.haml +10 -0
  28. data/message-board/app/views/admix/board_replies/_form_fields.html.haml +5 -0
  29. data/message-board/app/views/admix/board_replies/_show.html.haml +11 -0
  30. data/message-board/app/views/admix/board_replies/_table_actions.html.haml +8 -0
  31. data/message-board/app/views/admix/dashboard/index.html.haml +4 -0
  32. data/message-board/app/views/board_messages/_board_message.html.haml +21 -0
  33. data/message-board/app/views/board_messages/index.html.haml +16 -0
  34. data/message-board/app/views/board_messages/show.html.haml +9 -0
  35. data/message-board/app/views/message_board_mailer/message_replied.text.erb +7 -0
  36. data/message-board/config/locales/message-board.pt-BR.yml +46 -0
  37. data/message-board/config/routes.rb +20 -0
  38. data/message-board/lib/message-board.rb +4 -0
  39. data/message-board/lib/message-board/engine.rb +19 -0
  40. data/message-board/lib/mix-rails-message-board.rb +1 -0
  41. data/message-board/lib/tasks/message-board_tasks.rake +4 -0
  42. data/message-board/mix-rails-message-board.gemspec +20 -0
  43. data/message-board/script/rails +8 -0
  44. data/message-board/spec/dummy/README.rdoc +261 -0
  45. data/message-board/spec/dummy/Rakefile +7 -0
  46. data/message-board/spec/dummy/app/assets/javascripts/application.js +15 -0
  47. data/message-board/spec/dummy/app/assets/stylesheets/application.css +13 -0
  48. data/message-board/spec/dummy/app/controllers/application_controller.rb +3 -0
  49. data/message-board/spec/dummy/app/helpers/application_helper.rb +2 -0
  50. data/message-board/spec/dummy/app/mailers/.gitkeep +0 -0
  51. data/message-board/spec/dummy/app/models/.gitkeep +0 -0
  52. data/message-board/spec/dummy/app/views/layouts/application.html.erb +14 -0
  53. data/message-board/spec/dummy/config.ru +4 -0
  54. data/message-board/spec/dummy/config/application.rb +65 -0
  55. data/message-board/spec/dummy/config/boot.rb +10 -0
  56. data/message-board/spec/dummy/config/environment.rb +5 -0
  57. data/message-board/spec/dummy/config/environments/development.rb +31 -0
  58. data/message-board/spec/dummy/config/environments/production.rb +64 -0
  59. data/message-board/spec/dummy/config/environments/test.rb +35 -0
  60. data/message-board/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/message-board/spec/dummy/config/initializers/inflections.rb +15 -0
  62. data/message-board/spec/dummy/config/initializers/mime_types.rb +5 -0
  63. data/message-board/spec/dummy/config/initializers/secret_token.rb +7 -0
  64. data/message-board/spec/dummy/config/initializers/session_store.rb +8 -0
  65. data/message-board/spec/dummy/config/initializers/wrap_parameters.rb +10 -0
  66. data/message-board/spec/dummy/config/locales/en.yml +5 -0
  67. data/message-board/spec/dummy/config/routes.rb +58 -0
  68. data/message-board/spec/dummy/lib/assets/.gitkeep +0 -0
  69. data/message-board/spec/dummy/log/.gitkeep +0 -0
  70. data/message-board/spec/dummy/public/404.html +26 -0
  71. data/message-board/spec/dummy/public/422.html +26 -0
  72. data/message-board/spec/dummy/public/500.html +25 -0
  73. data/message-board/spec/dummy/public/favicon.ico +0 -0
  74. data/message-board/spec/dummy/script/rails +6 -0
  75. data/mix-rails.gemspec +5 -2
  76. data/videos/.gitignore +7 -0
  77. data/videos/Gemfile +19 -0
  78. data/videos/MIT-LICENSE +20 -0
  79. data/videos/README.rdoc +3 -0
  80. data/videos/Rakefile +27 -0
  81. data/videos/app/assets/images/videos/.gitkeep +0 -0
  82. data/videos/app/assets/javascripts/videos/.gitkeep +0 -0
  83. data/videos/app/assets/stylesheets/videos/.gitkeep +0 -0
  84. data/videos/app/controllers/admix/videos_controller.rb +5 -0
  85. data/videos/app/controllers/videos_controller.rb +11 -0
  86. data/videos/app/helpers/.gitkeep +0 -0
  87. data/videos/app/mailers/.gitkeep +0 -0
  88. data/videos/app/models/admix/videos_datagrid.rb +21 -0
  89. data/videos/app/models/video.rb +83 -0
  90. data/videos/app/views/.gitkeep +0 -0
  91. data/videos/app/views/admix/videos/_form_fields.html.haml +1 -0
  92. data/videos/app/views/admix/videos/_show.html.haml +20 -0
  93. data/videos/app/views/videos/_video.html.haml +12 -0
  94. data/videos/app/views/videos/_video_show.html.haml +14 -0
  95. data/videos/app/views/videos/index.html.haml +9 -0
  96. data/videos/app/views/videos/show.html.haml +3 -0
  97. data/videos/config/locales/videos.pt-BR.yml +8 -0
  98. data/videos/config/routes.rb +7 -0
  99. data/videos/lib/mix-rails-videos.rb +1 -0
  100. data/videos/lib/tasks/videos_tasks.rake +4 -0
  101. data/videos/lib/videos.rb +5 -0
  102. data/videos/lib/videos/engine.rb +19 -0
  103. data/videos/mix-rails-videos.gemspec +21 -0
  104. data/videos/script/rails +8 -0
  105. data/videos/spec/dummy/README.rdoc +261 -0
  106. data/videos/spec/dummy/Rakefile +7 -0
  107. data/videos/spec/dummy/app/assets/javascripts/application.js +15 -0
  108. data/videos/spec/dummy/app/assets/stylesheets/application.css +13 -0
  109. data/videos/spec/dummy/app/controllers/application_controller.rb +3 -0
  110. data/videos/spec/dummy/app/helpers/application_helper.rb +2 -0
  111. data/videos/spec/dummy/app/mailers/.gitkeep +0 -0
  112. data/videos/spec/dummy/app/models/.gitkeep +0 -0
  113. data/videos/spec/dummy/app/views/layouts/application.html.erb +14 -0
  114. data/videos/spec/dummy/config.ru +4 -0
  115. data/videos/spec/dummy/config/application.rb +65 -0
  116. data/videos/spec/dummy/config/boot.rb +10 -0
  117. data/videos/spec/dummy/config/environment.rb +5 -0
  118. data/videos/spec/dummy/config/environments/development.rb +31 -0
  119. data/videos/spec/dummy/config/environments/production.rb +64 -0
  120. data/videos/spec/dummy/config/environments/test.rb +35 -0
  121. data/videos/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  122. data/videos/spec/dummy/config/initializers/inflections.rb +15 -0
  123. data/videos/spec/dummy/config/initializers/mime_types.rb +5 -0
  124. data/videos/spec/dummy/config/initializers/secret_token.rb +7 -0
  125. data/videos/spec/dummy/config/initializers/session_store.rb +8 -0
  126. data/videos/spec/dummy/config/initializers/wrap_parameters.rb +10 -0
  127. data/videos/spec/dummy/config/locales/en.yml +5 -0
  128. data/videos/spec/dummy/config/routes.rb +58 -0
  129. data/videos/spec/dummy/lib/assets/.gitkeep +0 -0
  130. data/videos/spec/dummy/log/.gitkeep +0 -0
  131. data/videos/spec/dummy/public/404.html +26 -0
  132. data/videos/spec/dummy/public/422.html +26 -0
  133. data/videos/spec/dummy/public/500.html +25 -0
  134. data/videos/spec/dummy/public/favicon.ico +0 -0
  135. data/videos/spec/dummy/script/rails +6 -0
  136. data/vouchers/.gitignore +7 -0
  137. data/vouchers/Gemfile +19 -0
  138. data/vouchers/MIT-LICENSE +20 -0
  139. data/vouchers/README.rdoc +3 -0
  140. data/vouchers/Rakefile +27 -0
  141. data/vouchers/app/assets/images/mix-vouchers/.gitkeep +0 -0
  142. data/vouchers/app/assets/javascripts/mix-vouchers/.gitkeep +0 -0
  143. data/vouchers/app/assets/stylesheets/mix-vouchers/.gitkeep +0 -0
  144. data/vouchers/app/controllers/admix/vouchers_controller.rb +24 -0
  145. data/vouchers/app/controllers/vouchers_controller.rb +68 -0
  146. data/vouchers/app/helpers/.gitkeep +0 -0
  147. data/vouchers/app/mailers/.gitkeep +0 -0
  148. data/vouchers/app/mailers/voucher_mailer.rb +10 -0
  149. data/vouchers/app/models/admix/vouchers_datagrid.rb +18 -0
  150. data/vouchers/app/models/email_validator.rb +9 -0
  151. data/vouchers/app/models/voucher.rb +22 -0
  152. data/vouchers/app/models/voucher_user.rb +48 -0
  153. data/vouchers/app/models/vouchers/contact.rb +17 -0
  154. data/vouchers/app/uploaders/vouchers/photo_uploader.rb +65 -0
  155. data/vouchers/app/views/.gitkeep +0 -0
  156. data/vouchers/app/views/admix/vouchers/_form_fields.html.haml +6 -0
  157. data/vouchers/app/views/admix/vouchers/_show.html.haml +9 -0
  158. data/vouchers/app/views/admix/vouchers/_table_actions.html.haml +9 -0
  159. data/vouchers/app/views/admix/vouchers/print.html.haml +27 -0
  160. data/vouchers/app/views/admix/vouchers/users.html.haml +31 -0
  161. data/vouchers/app/views/voucher_mailer/send_confirmation_link.text.erb +7 -0
  162. data/vouchers/app/views/vouchers/_voucher.html.haml +12 -0
  163. data/vouchers/app/views/vouchers/_voucher_show.html.haml +30 -0
  164. data/vouchers/app/views/vouchers/confirmation.html.haml +0 -0
  165. data/vouchers/app/views/vouchers/confirmation_error.html.haml +5 -0
  166. data/vouchers/app/views/vouchers/email_sent.html.haml +4 -0
  167. data/vouchers/app/views/vouchers/index.html.haml +9 -0
  168. data/vouchers/app/views/vouchers/print.html.haml +56 -0
  169. data/vouchers/app/views/vouchers/show.html.haml +3 -0
  170. data/vouchers/config/initializers/carrier_wave.rb +0 -0
  171. data/vouchers/config/locales/vouchers.pt-BR.yml +15 -0
  172. data/vouchers/config/routes.rb +15 -0
  173. data/vouchers/lib/mix-rails-vouchers.rb +5 -0
  174. data/vouchers/lib/mix-vouchers/engine.rb +21 -0
  175. data/vouchers/lib/tasks/mix-vouchers_tasks.rake +4 -0
  176. data/vouchers/mix-rails-vouchers.gemspec +21 -0
  177. data/vouchers/script/rails +8 -0
  178. data/vouchers/spec/dummy/README.rdoc +261 -0
  179. data/vouchers/spec/dummy/Rakefile +7 -0
  180. data/vouchers/spec/dummy/app/assets/javascripts/application.js +15 -0
  181. data/vouchers/spec/dummy/app/assets/stylesheets/application.css +13 -0
  182. data/vouchers/spec/dummy/app/controllers/application_controller.rb +3 -0
  183. data/vouchers/spec/dummy/app/helpers/application_helper.rb +2 -0
  184. data/vouchers/spec/dummy/app/mailers/.gitkeep +0 -0
  185. data/vouchers/spec/dummy/app/models/.gitkeep +0 -0
  186. data/vouchers/spec/dummy/app/views/layouts/application.html.erb +14 -0
  187. data/vouchers/spec/dummy/config.ru +4 -0
  188. data/vouchers/spec/dummy/config/application.rb +65 -0
  189. data/vouchers/spec/dummy/config/boot.rb +10 -0
  190. data/vouchers/spec/dummy/config/environment.rb +5 -0
  191. data/vouchers/spec/dummy/config/environments/development.rb +31 -0
  192. data/vouchers/spec/dummy/config/environments/production.rb +64 -0
  193. data/vouchers/spec/dummy/config/environments/test.rb +35 -0
  194. data/vouchers/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  195. data/vouchers/spec/dummy/config/initializers/inflections.rb +15 -0
  196. data/vouchers/spec/dummy/config/initializers/mime_types.rb +5 -0
  197. data/vouchers/spec/dummy/config/initializers/secret_token.rb +7 -0
  198. data/vouchers/spec/dummy/config/initializers/session_store.rb +8 -0
  199. data/vouchers/spec/dummy/config/initializers/wrap_parameters.rb +10 -0
  200. data/vouchers/spec/dummy/config/locales/en.yml +5 -0
  201. data/vouchers/spec/dummy/config/routes.rb +58 -0
  202. data/vouchers/spec/dummy/lib/assets/.gitkeep +0 -0
  203. data/vouchers/spec/dummy/log/.gitkeep +0 -0
  204. data/vouchers/spec/dummy/public/404.html +26 -0
  205. data/vouchers/spec/dummy/public/422.html +26 -0
  206. data/vouchers/spec/dummy/public/500.html +25 -0
  207. data/vouchers/spec/dummy/public/favicon.ico +0 -0
  208. data/vouchers/spec/dummy/script/rails +6 -0
  209. data/vouchers/test/functional/voucher_mailer_test.rb +7 -0
  210. metadata +269 -15
File without changes
@@ -0,0 +1,6 @@
1
+ = f.input :name, label: t('vouchers.fields.name')
2
+ = f.input :date_from, label: t('vouchers.fields.date_from'), as: 'datepicker'
3
+ = f.input :date_to, label: t('vouchers.fields.date_to'), as: 'datepicker'
4
+ = f.input :photo, label: t('vouchers.fields.photo'), as: :file
5
+ = f.input :rules, label: t('vouchers.fields.rules'), as: :text, input_html: {class: 'niceditor'}
6
+ = f.input :partner_photo, label: t('vouchers.fields.partner_photo'), as: :file
@@ -0,0 +1,9 @@
1
+ %dl
2
+ %dt= t('vouchers.name')
3
+ %dd= resource.name
4
+ %dt= t('vouchers.rules')
5
+ %dd!= resource.rules
6
+ %dt= t('vouchers.photo')
7
+ %dd= image_tag resource.photo
8
+ %dt= t('vouchers.partner_photo')
9
+ %dd= image_tag resource.partner_photo
@@ -0,0 +1,9 @@
1
+ - if resource.users.length > 0
2
+ = link_to image_tag('admix/icons/printer.png'), admix_voucher_print_url(resource), class: 'btn', title: 'Imprimir usuários deste voucher'
3
+ = link_to image_tag('admix/icons/user_go.png'), admix_voucher_users_url(resource), class: 'btn', title: 'Listar usuários deste voucher'
4
+ - else
5
+ %a.btn.disabled{title:'Nenhum usuário'}= image_tag('admix/icons/printer.png')
6
+ %a.btn.disabled{title:'Nenhum usuário'}= image_tag('admix/icons/user_go.png')
7
+ = link_to image_tag('admix/icons/zoom.png'), resource_url(resource), class: 'btn', title:'Visualizar registro'
8
+ = link_to image_tag('admix/icons/page_edit.png'), edit_resource_url(resource), class: 'btn', title:'Editar registro'
9
+ = link_to image_tag('admix/icons/cancel.png'), resource_url(resource), method: :delete, data: { confirm: t('admix.crud.destroy_confirm') }, class: 'btn', title:'Deletar registro'
@@ -0,0 +1,27 @@
1
+ !!!
2
+ %html
3
+ %head
4
+ %meta{:charset => "utf-8"}
5
+ %meta{:content => "noindex, nofollow", :name => "robots"}
6
+ %title Admix
7
+ = stylesheet_link_tag "admix/application", :media => "all"
8
+ = javascript_include_tag "admix/application"
9
+ = csrf_meta_tags
10
+ %body
11
+ %h2 Lista do voucher "#{@voucher.name}"
12
+ - if @users.length > 0
13
+ %table.table
14
+ %thead
15
+ %tr
16
+ %th Nome
17
+ %th Email
18
+ %tbody
19
+ - @users.each do |user|
20
+ %tr
21
+ %td= user.name.titleize
22
+ %td= user.email.downcase
23
+
24
+ %script
25
+ window.print();
26
+ - else
27
+ %p Nenhum cliente imprimiu este voucher
@@ -0,0 +1,31 @@
1
+ %h1 Usuários do voucher "#{@voucher.name}"
2
+
3
+ - if @users.length > 0
4
+ %table.table.table-striped
5
+ %table.table
6
+ %thead
7
+ %tr
8
+ %th Nome
9
+ %th Email
10
+ %th Confirmou por email?
11
+ %th Ações
12
+ %tbody
13
+ - @users.each do |user|
14
+ %tr
15
+ %td= user.name.titleize
16
+ %td= user.email.downcase
17
+ %td= user.confirmed ? 'Sim' : 'Não'
18
+ %td
19
+ = link_to image_tag('admix/icons/delete.png'), admix_voucher_user_delete_url(id: @voucher.id, user_id: user.id), method: :delete, class: 'btn', title: 'Deletar este usuário'
20
+ - if user.confirmed
21
+ = link_to image_tag('admix/icons/printer.png'), vouchers_print_url(id: @voucher.id, user_id: user.id), class: 'btn', title: 'Imprimir voucher do usuário'
22
+ - else
23
+ %a.btn.disabled{title: 'Usuário não confirmado'}= image_tag('admix/icons/printer.png')
24
+
25
+ - else
26
+ %p Nenhum cliente requisitou este voucher
27
+
28
+
29
+ = link_to t('admix.crud.back'), collection_url, class: 'btn'
30
+
31
+
@@ -0,0 +1,7 @@
1
+ Olá <%= @voucher_user.name.titleize %>,
2
+
3
+ segue um link de confirmação para que possa imprimir seu Voucher:
4
+
5
+ <%= @url %>
6
+
7
+ Equipe <%= app_title %>
@@ -0,0 +1,12 @@
1
+ %li
2
+ .row
3
+ .span5
4
+ %a{:href => voucher_path(voucher)}
5
+ = image_tag voucher.photo.url
6
+ .span10.offset1
7
+ %a.fz18.fb.white{:href => voucher_path(voucher)}
8
+ = voucher.name
9
+ - if voucher.rules
10
+ %p.fz14.fb.red Regras:
11
+ != voucher.rules
12
+
@@ -0,0 +1,30 @@
1
+ .row
2
+ .span5
3
+ = image_tag voucher.photo.url
4
+ .span10.offset1
5
+ %p.fz18.fb.white
6
+ = voucher.name
7
+ %p.p.red.fz14.fb Regras de utilização:
8
+ != voucher.rules
9
+ %hr
10
+ %div
11
+ %h3.fb.white.p.mini Imprima seu Voucher
12
+ %p.muted.p
13
+ Para ter acesso ao voucher é necessário preencher apenas essas informações abaixo e imprimir o cupom que será gerado na tela seguinte e apresentá-lo no estabelecimento para obter o benefício.
14
+
15
+ = simple_form_for @user, url: vouchers_send_confirmation_url do |f|
16
+ %form{:action => vouchers_send_confirmation_url}
17
+ .row.p.mini
18
+ .span
19
+ = f.label :name
20
+ = f.input_field :name, class: 'span8'
21
+ %p
22
+ = f.error :name
23
+ .span.offset1
24
+ = f.label :email
25
+ = f.input_field :email, class: 'span7', type: :email
26
+ %p
27
+ = f.error :email
28
+ .ta-r
29
+ %button.no-style{:type => "submit"}
30
+ = image_tag 'btn_seguir.png'
@@ -0,0 +1,5 @@
1
+ - content_for(:vouchers_content) do
2
+ .alert.alert-error Sua requisição de impressão não foi encontrada
3
+ %h4.white.f Requisite a impressão do seu voucher na página do voucher
4
+
5
+ = render template: 'templates/vouchers/index'
@@ -0,0 +1,4 @@
1
+ - content_for(:vouchers_content) do
2
+ .alert.alert-success Confira seu email
3
+ %h4.white.f O link de impressão do Voucher foi enviado para seu email!
4
+ = render template: 'templates/vouchers/index'
@@ -0,0 +1,9 @@
1
+ - content_for(:vouchers_content) do
2
+ - if @vouchers.length > 0
3
+ %ul.list.sequential
4
+ = render @vouchers
5
+ - else
6
+ %p.muted
7
+ Em breve estaremos com descontos exclusivos.
8
+
9
+ = render template: 'templates/vouchers/index'
@@ -0,0 +1,56 @@
1
+ !!!
2
+ %html
3
+ %head
4
+ %meta{:charset => "utf-8"}
5
+ %meta{:content => "IE=edge,chrome=1", "http-equiv" => "X-UA-Compatible"}
6
+ %title Forro com Turista
7
+ %meta{:content => "width=device-width", :name => "viewport"}
8
+ %meta{:content => "", :name => "description"}
9
+ %meta{:content => "", :name => "keywords"}
10
+ = stylesheet_link_tag "application", :media => "all"
11
+ = javascript_include_tag "application"
12
+ = csrf_meta_tags
13
+ %link{:href => "favicon.png", :rel => "shortcut icon", :type => "image/png"}
14
+ %link{:href => "http://fonts.googleapis.com/css?family=Open+Sans:600italic,800italic,700,400", :rel => "stylesheet", :type => "text/css"}
15
+ %body.print
16
+ .row
17
+ .span16
18
+ .row.p
19
+ .span8
20
+ = image_tag 'logo_bw.png'
21
+ .span8.ta-r
22
+ .p.inverse
23
+ %h2.i Voucher de desconto
24
+ %p.i.gray.fz14.b forrocomturista.com.br
25
+ .line.big.p
26
+ %h2.i.p= @voucher.name
27
+ %p.fz14.p.b.i Regras de utilização:
28
+ %p.muted.p!= @voucher.rules
29
+
30
+ .pad-content.p.super
31
+ %table
32
+ %tbody
33
+ %tr
34
+ %td.gray.fz14
35
+ Nome:
36
+ %strong.gray= @user.name
37
+ %tr
38
+ %td.gray.fz14
39
+ Email:
40
+ %strong.gray= @user.email
41
+ %tr
42
+ %td.gray.fz14
43
+ Data de Impressão:
44
+ %strong.gray= @user.confirmation_date.strftime("%d/%m/%Y")
45
+ %tr
46
+ %td.gray.fz14
47
+ Válido até
48
+ %strong.gray= @voucher.date_to.strftime("%d/%m/%Y")
49
+ .line.big.p.super
50
+ %p.ta-c.i.fz14
51
+ Agradecemos seu interesse em nossos produtos/serviços,vamos continuar trabalhando
52
+ para que sua experiência em Natal/RN seja sempre inesquessível!
53
+ %br
54
+ %strong.fz18 www.forrocomturista.com.br
55
+ %script
56
+ window.print();
@@ -0,0 +1,3 @@
1
+ - content_for(:voucher_content) do
2
+ = render partial: 'voucher_show', locals: {voucher: @voucher}
3
+ = render template: 'templates/vouchers/show'
@@ -0,0 +1,15 @@
1
+ pt-BR:
2
+ vouchers:
3
+ vouchers: 'Vouchers'
4
+ mailers:
5
+ send_confirmation_link:
6
+ subject: 'Imprima seu Voucher'
7
+ fields:
8
+ name: 'Nome'
9
+ date_from: 'De'
10
+ date_to: 'Até'
11
+ rules: 'Regras'
12
+ photo: 'Foto'
13
+ partner_photo: 'Foto do parceiro'
14
+ errors:
15
+ invalid_email: 'Email inválido'
@@ -0,0 +1,15 @@
1
+ Rails.application.routes.draw do
2
+ resources :vouchers
3
+
4
+ post 'vouchers/:id' => 'vouchers#send_confirmation', as: :vouchers_send_confirmation
5
+ match 'vouchers/:id/email-enviado' => 'vouchers#email_sent', as: :vouchers_email_sent
6
+ match 'vouchers/:id/confirm/:user_id' => 'vouchers#confirmation', as: :vouchers_confirmation
7
+ match 'vouchers/:id/imprimir/:user_id' => 'vouchers#print', as: :vouchers_print
8
+
9
+ namespace :admix do
10
+ get 'vouchers/:id/users/print' => 'vouchers#print', as: :voucher_print
11
+ get 'vouchers/:id/users' => 'vouchers#users', as: :voucher_users
12
+ delete 'vouchers/:id/users/:user_id/delete' => 'vouchers#delete_user', as: :voucher_user_delete
13
+ resources :vouchers
14
+ end
15
+ end
@@ -0,0 +1,5 @@
1
+ require "mix-vouchers/engine"
2
+ require "carrierwave/mongoid"
3
+
4
+ module MixVouchers
5
+ end
@@ -0,0 +1,21 @@
1
+ module MixVouchers
2
+ class Engine < ::Rails::Engine
3
+
4
+ def navigation
5
+ if defined? Admix
6
+
7
+ Admix::Navigation::NavBar.post_menu do
8
+ Admix::Navigation::NavBar.find(:content) do |menu|
9
+ menu.submenu do |submenu|
10
+ submenu.key = :vouchers
11
+ submenu.title = I18n.t 'vouchers.vouchers'
12
+ submenu.url = 'admix_vouchers_url'
13
+ end
14
+ end
15
+ end
16
+
17
+ end
18
+ end
19
+
20
+ end
21
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :mix-vouchers do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,21 @@
1
+ $:.push File.expand_path("../lib", __FILE__)
2
+
3
+ # Maintain your gem's version:
4
+ version = MixRails::VERSION
5
+
6
+ # Describe your gem and declare its dependencies:
7
+ Gem::Specification.new do |s|
8
+ s.name = "mix-rails-vouchers"
9
+ s.version = version
10
+ s.authors = ["Rafael Garcia", "Sadjow Medeiros Leão"]
11
+ s.email = ["rafbgarcia@gmail.com", "sadjow@gmail.com"]
12
+ s.homepage = "https://github/mixinternet/mix-rails"
13
+ s.summary = "Vouchers module for mix-rails"
14
+ s.description = "Vouchers module for mix-rails"
15
+
16
+ s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
17
+
18
+ s.add_dependency 'mail_form', '~> 1.4.0'
19
+ s.add_dependency "rails", "~> 3.2.9"
20
+ s.add_dependency 'carrierwave-mongoid', '~> 0.3.0'
21
+ end
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby1.9.1
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/mix-vouchers/engine', __FILE__)
6
+
7
+ require 'rails/all'
8
+ require 'rails/engine/commands'
@@ -0,0 +1,261 @@
1
+ == Welcome to Rails
2
+
3
+ Rails is a web-application framework that includes everything needed to create
4
+ database-backed web applications according to the Model-View-Control pattern.
5
+
6
+ This pattern splits the view (also called the presentation) into "dumb"
7
+ templates that are primarily responsible for inserting pre-built data in between
8
+ HTML tags. The model contains the "smart" domain objects (such as Account,
9
+ Product, Person, Post) that holds all the business logic and knows how to
10
+ persist themselves to a database. The controller handles the incoming requests
11
+ (such as Save New Account, Update Product, Show Post) by manipulating the model
12
+ and directing data to the view.
13
+
14
+ In Rails, the model is handled by what's called an object-relational mapping
15
+ layer entitled Active Record. This layer allows you to present the data from
16
+ database rows as objects and embellish these data objects with business logic
17
+ methods. You can read more about Active Record in
18
+ link:files/vendor/rails/activerecord/README.html.
19
+
20
+ The controller and view are handled by the Action Pack, which handles both
21
+ layers by its two parts: Action View and Action Controller. These two layers
22
+ are bundled in a single package due to their heavy interdependence. This is
23
+ unlike the relationship between the Active Record and Action Pack that is much
24
+ more separate. Each of these packages can be used independently outside of
25
+ Rails. You can read more about Action Pack in
26
+ link:files/vendor/rails/actionpack/README.html.
27
+
28
+
29
+ == Getting Started
30
+
31
+ 1. At the command prompt, create a new Rails application:
32
+ <tt>rails new myapp</tt> (where <tt>myapp</tt> is the application name)
33
+
34
+ 2. Change directory to <tt>myapp</tt> and start the web server:
35
+ <tt>cd myapp; rails server</tt> (run with --help for options)
36
+
37
+ 3. Go to http://localhost:3000/ and you'll see:
38
+ "Welcome aboard: You're riding Ruby on Rails!"
39
+
40
+ 4. Follow the guidelines to start developing your application. You can find
41
+ the following resources handy:
42
+
43
+ * The Getting Started Guide: http://guides.rubyonrails.org/getting_started.html
44
+ * Ruby on Rails Tutorial Book: http://www.railstutorial.org/
45
+
46
+
47
+ == Debugging Rails
48
+
49
+ Sometimes your application goes wrong. Fortunately there are a lot of tools that
50
+ will help you debug it and get it back on the rails.
51
+
52
+ First area to check is the application log files. Have "tail -f" commands
53
+ running on the server.log and development.log. Rails will automatically display
54
+ debugging and runtime information to these files. Debugging info will also be
55
+ shown in the browser on requests from 127.0.0.1.
56
+
57
+ You can also log your own messages directly into the log file from your code
58
+ using the Ruby logger class from inside your controllers. Example:
59
+
60
+ class WeblogController < ActionController::Base
61
+ def destroy
62
+ @weblog = Weblog.find(params[:id])
63
+ @weblog.destroy
64
+ logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!")
65
+ end
66
+ end
67
+
68
+ The result will be a message in your log file along the lines of:
69
+
70
+ Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1!
71
+
72
+ More information on how to use the logger is at http://www.ruby-doc.org/core/
73
+
74
+ Also, Ruby documentation can be found at http://www.ruby-lang.org/. There are
75
+ several books available online as well:
76
+
77
+ * Programming Ruby: http://www.ruby-doc.org/docs/ProgrammingRuby/ (Pickaxe)
78
+ * Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)
79
+
80
+ These two books will bring you up to speed on the Ruby language and also on
81
+ programming in general.
82
+
83
+
84
+ == Debugger
85
+
86
+ Debugger support is available through the debugger command when you start your
87
+ Mongrel or WEBrick server with --debugger. This means that you can break out of
88
+ execution at any point in the code, investigate and change the model, and then,
89
+ resume execution! You need to install ruby-debug to run the server in debugging
90
+ mode. With gems, use <tt>sudo gem install ruby-debug</tt>. Example:
91
+
92
+ class WeblogController < ActionController::Base
93
+ def index
94
+ @posts = Post.all
95
+ debugger
96
+ end
97
+ end
98
+
99
+ So the controller will accept the action, run the first line, then present you
100
+ with a IRB prompt in the server window. Here you can do things like:
101
+
102
+ >> @posts.inspect
103
+ => "[#<Post:0x14a6be8
104
+ @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>,
105
+ #<Post:0x14a6620
106
+ @attributes={"title"=>"Rails", "body"=>"Only ten..", "id"=>"2"}>]"
107
+ >> @posts.first.title = "hello from a debugger"
108
+ => "hello from a debugger"
109
+
110
+ ...and even better, you can examine how your runtime objects actually work:
111
+
112
+ >> f = @posts.first
113
+ => #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
114
+ >> f.
115
+ Display all 152 possibilities? (y or n)
116
+
117
+ Finally, when you're ready to resume execution, you can enter "cont".
118
+
119
+
120
+ == Console
121
+
122
+ The console is a Ruby shell, which allows you to interact with your
123
+ application's domain model. Here you'll have all parts of the application
124
+ configured, just like it is when the application is running. You can inspect
125
+ domain models, change values, and save to the database. Starting the script
126
+ without arguments will launch it in the development environment.
127
+
128
+ To start the console, run <tt>rails console</tt> from the application
129
+ directory.
130
+
131
+ Options:
132
+
133
+ * Passing the <tt>-s, --sandbox</tt> argument will rollback any modifications
134
+ made to the database.
135
+ * Passing an environment name as an argument will load the corresponding
136
+ environment. Example: <tt>rails console production</tt>.
137
+
138
+ To reload your controllers and models after launching the console run
139
+ <tt>reload!</tt>
140
+
141
+ More information about irb can be found at:
142
+ link:http://www.rubycentral.org/pickaxe/irb.html
143
+
144
+
145
+ == dbconsole
146
+
147
+ You can go to the command line of your database directly through <tt>rails
148
+ dbconsole</tt>. You would be connected to the database with the credentials
149
+ defined in database.yml. Starting the script without arguments will connect you
150
+ to the development database. Passing an argument will connect you to a different
151
+ database, like <tt>rails dbconsole production</tt>. Currently works for MySQL,
152
+ PostgreSQL and SQLite 3.
153
+
154
+ == Description of Contents
155
+
156
+ The default directory structure of a generated Ruby on Rails application:
157
+
158
+ |-- app
159
+ | |-- assets
160
+ | |-- images
161
+ | |-- javascripts
162
+ | `-- stylesheets
163
+ | |-- controllers
164
+ | |-- helpers
165
+ | |-- mailers
166
+ | |-- models
167
+ | `-- views
168
+ | `-- layouts
169
+ |-- config
170
+ | |-- environments
171
+ | |-- initializers
172
+ | `-- locales
173
+ |-- db
174
+ |-- doc
175
+ |-- lib
176
+ | `-- tasks
177
+ |-- log
178
+ |-- public
179
+ |-- script
180
+ |-- test
181
+ | |-- fixtures
182
+ | |-- functional
183
+ | |-- integration
184
+ | |-- performance
185
+ | `-- unit
186
+ |-- tmp
187
+ | |-- cache
188
+ | |-- pids
189
+ | |-- sessions
190
+ | `-- sockets
191
+ `-- vendor
192
+ |-- assets
193
+ `-- stylesheets
194
+ `-- plugins
195
+
196
+ app
197
+ Holds all the code that's specific to this particular application.
198
+
199
+ app/assets
200
+ Contains subdirectories for images, stylesheets, and JavaScript files.
201
+
202
+ app/controllers
203
+ Holds controllers that should be named like weblogs_controller.rb for
204
+ automated URL mapping. All controllers should descend from
205
+ ApplicationController which itself descends from ActionController::Base.
206
+
207
+ app/models
208
+ Holds models that should be named like post.rb. Models descend from
209
+ ActiveRecord::Base by default.
210
+
211
+ app/views
212
+ Holds the template files for the view that should be named like
213
+ weblogs/index.html.erb for the WeblogsController#index action. All views use
214
+ eRuby syntax by default.
215
+
216
+ app/views/layouts
217
+ Holds the template files for layouts to be used with views. This models the
218
+ common header/footer method of wrapping views. In your views, define a layout
219
+ using the <tt>layout :default</tt> and create a file named default.html.erb.
220
+ Inside default.html.erb, call <% yield %> to render the view using this
221
+ layout.
222
+
223
+ app/helpers
224
+ Holds view helpers that should be named like weblogs_helper.rb. These are
225
+ generated for you automatically when using generators for controllers.
226
+ Helpers can be used to wrap functionality for your views into methods.
227
+
228
+ config
229
+ Configuration files for the Rails environment, the routing map, the database,
230
+ and other dependencies.
231
+
232
+ db
233
+ Contains the database schema in schema.rb. db/migrate contains all the
234
+ sequence of Migrations for your schema.
235
+
236
+ doc
237
+ This directory is where your application documentation will be stored when
238
+ generated using <tt>rake doc:app</tt>
239
+
240
+ lib
241
+ Application specific libraries. Basically, any kind of custom code that
242
+ doesn't belong under controllers, models, or helpers. This directory is in
243
+ the load path.
244
+
245
+ public
246
+ The directory available for the web server. Also contains the dispatchers and the
247
+ default HTML files. This should be set as the DOCUMENT_ROOT of your web
248
+ server.
249
+
250
+ script
251
+ Helper scripts for automation and generation.
252
+
253
+ test
254
+ Unit and functional tests along with fixtures. When using the rails generate
255
+ command, template test files will be generated for you and placed in this
256
+ directory.
257
+
258
+ vendor
259
+ External libraries that the application depends on. Also includes the plugins
260
+ subdirectory. If the app has frozen rails, those gems also go here, under
261
+ vendor/rails/. This directory is in the load path.