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
@@ -0,0 +1,46 @@
1
+ pt-BR:
2
+
3
+ resources:
4
+ board_messages: 'mural-de-recados'
5
+
6
+ will_paginate:
7
+ previous_label: "<< anterior"
8
+ next_label: "próximo >>"
9
+
10
+ activerecord:
11
+ models:
12
+ board_message: 'Mensagem'
13
+ board_reply: 'Resposta'
14
+
15
+ simple_form:
16
+ labels:
17
+ board_message:
18
+ replies_count: 'Respostas (Qtde)'
19
+
20
+ message_board:
21
+ confirms:
22
+ approve: 'Tem certeza que deseja aprovar?'
23
+ disapprove: 'Tem certeza que deseja reprovar?'
24
+ message_board: 'Mural de Recados'
25
+ message: 'Mensagem'
26
+ messages: 'Mensagens'
27
+ flashes:
28
+ success_wait_moderation: 'Seu recado foi enviado. Por favor aguardar moderação.'
29
+ mailers:
30
+ message_replied:
31
+ subject: 'Sua mensagem foi respondida.'
32
+
33
+ boardmessages:
34
+ boardmessages: 'Mensagens'
35
+ boardmessage: 'Mensagem'
36
+ flashes:
37
+ approved: 'A mensagem foi aprovada.'
38
+ disapproved: 'A mensagem foi reprovada.'
39
+
40
+ boardreplies:
41
+ boardreplies: 'Respostas'
42
+ boardreply: 'Resposta'
43
+ flashes:
44
+ approved: 'A mensagem foi aprovada.'
45
+ disapproved: 'A mensagem foi reprovada.'
46
+
@@ -0,0 +1,20 @@
1
+ Rails.application.routes.draw do
2
+
3
+ localized do
4
+ resources :board_messages
5
+ end
6
+
7
+ namespace :admix do
8
+ resources :board_messages do
9
+
10
+ resources :board_replies
11
+
12
+ member do
13
+ put "approve"
14
+ put "disapprove"
15
+ end
16
+
17
+ end
18
+ end
19
+
20
+ end
@@ -0,0 +1,4 @@
1
+ require "message-board/engine"
2
+
3
+ module MessageBoard
4
+ end
@@ -0,0 +1,19 @@
1
+ module MessageBoard
2
+ class Engine < ::Rails::Engine
3
+
4
+ def navigation
5
+ if defined? Admix
6
+ Admix::Navigation::NavBar.post_menu do
7
+ Admix::Navigation::NavBar.find(:content) do |menu|
8
+ menu.submenu do |submenu|
9
+ submenu.key = :message_board
10
+ submenu.title = I18n.t 'message_board.message_board'
11
+ submenu.url = 'admix_board_messages_url'
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
17
+
18
+ end
19
+ end
@@ -0,0 +1 @@
1
+ require 'message-board'
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :message-board do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,20 @@
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-message-board"
9
+ s.version = version
10
+ s.authors = ["Sadjow Leão"]
11
+ s.email = ["sadjow@gmail.com"]
12
+ s.homepage = "https://github.com:mixinternet/mix-rails"
13
+ s.summary = "MessageBoard is a module from mix-rails"
14
+ s.description = "MessageBoard is a module from mix-rails"
15
+
16
+ s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
17
+
18
+ s.add_dependency "rails", "~> 3.2.11"
19
+ # s.add_dependency "jquery-rails"
20
+ end
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
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/message-board/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.
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,15 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end