rails 2.2.3 → 2.3.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rails might be problematic. Click here for more details.

Files changed (229) hide show
  1. data/CHANGELOG +272 -191
  2. data/MIT-LICENSE +1 -1
  3. data/README +6 -19
  4. data/Rakefile +24 -71
  5. data/bin/rails +1 -0
  6. data/builtin/rails_info/rails/info.rb +12 -8
  7. data/configs/databases/mysql.yml +3 -0
  8. data/configs/initializers/backtrace_silencers.rb +7 -0
  9. data/configs/initializers/new_rails_defaults.rb +2 -0
  10. data/configs/initializers/session_store.rb +15 -0
  11. data/dispatches/config.ru +7 -0
  12. data/doc/README_FOR_APP +2 -5
  13. data/environments/boot.rb +1 -0
  14. data/environments/environment.rb +14 -48
  15. data/environments/production.rb +11 -7
  16. data/environments/test.rb +6 -0
  17. data/helpers/application_controller.rb +10 -0
  18. data/helpers/test_helper.rb +1 -1
  19. data/html/500.html +0 -3
  20. data/html/index.html +1 -0
  21. data/lib/commands/about.rb +1 -1
  22. data/lib/commands/dbconsole.rb +18 -2
  23. data/lib/commands/plugin.rb +4 -3
  24. data/lib/commands/runner.rb +13 -7
  25. data/lib/commands/server.rb +98 -33
  26. data/lib/console_app.rb +4 -4
  27. data/lib/console_with_helpers.rb +2 -23
  28. data/lib/dispatcher.rb +1 -1
  29. data/lib/fcgi_handler.rb +12 -10
  30. data/lib/initializer.rb +108 -41
  31. data/lib/rails/backtrace_cleaner.rb +54 -0
  32. data/lib/rails/gem_dependency.rb +124 -94
  33. data/lib/rails/plugin.rb +49 -6
  34. data/lib/rails/plugin/loader.rb +66 -27
  35. data/lib/rails/plugin/locator.rb +1 -1
  36. data/lib/rails/rack.rb +3 -1
  37. data/lib/rails/rack/debugger.rb +21 -0
  38. data/lib/rails/rack/log_tailer.rb +35 -0
  39. data/lib/rails/rack/metal.rb +51 -0
  40. data/lib/rails/rack/static.rb +15 -4
  41. data/lib/rails/version.rb +2 -2
  42. data/lib/rails_generator/base.rb +3 -0
  43. data/lib/rails_generator/commands.rb +8 -3
  44. data/lib/rails_generator/generators/applications/app/app_generator.rb +210 -136
  45. data/lib/rails_generator/generators/applications/app/scm/git.rb +16 -0
  46. data/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
  47. data/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
  48. data/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
  49. data/lib/rails_generator/generators/components/controller/USAGE +12 -11
  50. data/lib/rails_generator/generators/components/controller/controller_generator.rb +7 -1
  51. data/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
  52. data/lib/rails_generator/generators/components/helper/USAGE +24 -0
  53. data/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
  54. data/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
  55. data/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
  56. data/lib/rails_generator/generators/components/metal/USAGE +8 -0
  57. data/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
  58. data/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
  59. data/lib/rails_generator/generators/components/resource/USAGE +2 -2
  60. data/lib/rails_generator/generators/components/resource/resource_generator.rb +2 -0
  61. data/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
  62. data/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +2 -0
  63. data/lib/rails_generator/generators/components/scaffold/templates/controller.rb +1 -1
  64. data/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +4 -4
  65. data/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
  66. data/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +1 -1
  67. data/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +2 -2
  68. data/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +2 -2
  69. data/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +2 -2
  70. data/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +1 -1
  71. data/lib/rails_generator/secret_key_generator.rb +2 -0
  72. data/lib/tasks/databases.rake +13 -6
  73. data/lib/tasks/documentation.rake +2 -9
  74. data/lib/tasks/framework.rake +26 -1
  75. data/lib/tasks/gems.rake +33 -48
  76. data/lib/tasks/middleware.rake +7 -0
  77. data/lib/tasks/misc.rake +7 -0
  78. data/lib/tasks/statistics.rake +0 -1
  79. data/lib/tasks/testing.rake +5 -5
  80. data/lib/tasks/tmp.rake +2 -2
  81. data/lib/test_help.rb +16 -8
  82. metadata +92 -159
  83. data/bin/performance/request +0 -3
  84. data/bin/process/inspector +0 -3
  85. data/bin/process/reaper +0 -3
  86. data/bin/process/spawner +0 -3
  87. data/config.ru +0 -17
  88. data/configs/apache.conf +0 -40
  89. data/configs/lighttpd.conf +0 -54
  90. data/doc/guides/html/2_2_release_notes.html +0 -1185
  91. data/doc/guides/html/actioncontroller_basics.html +0 -1270
  92. data/doc/guides/html/activerecord_validations_callbacks.html +0 -749
  93. data/doc/guides/html/association_basics.html +0 -2585
  94. data/doc/guides/html/authors.html +0 -240
  95. data/doc/guides/html/benchmarking_and_profiling.html +0 -1018
  96. data/doc/guides/html/caching_with_rails.html +0 -583
  97. data/doc/guides/html/command_line.html +0 -434
  98. data/doc/guides/html/configuring.html +0 -438
  99. data/doc/guides/html/creating_plugins.html +0 -1594
  100. data/doc/guides/html/debugging_rails_applications.html +0 -1175
  101. data/doc/guides/html/finders.html +0 -1090
  102. data/doc/guides/html/form_helpers.html +0 -638
  103. data/doc/guides/html/getting_started_with_rails.html +0 -2066
  104. data/doc/guides/html/index.html +0 -349
  105. data/doc/guides/html/layouts_and_rendering.html +0 -1406
  106. data/doc/guides/html/migrations.html +0 -921
  107. data/doc/guides/html/routing_outside_in.html +0 -2213
  108. data/doc/guides/html/security.html +0 -1346
  109. data/doc/guides/html/testing_rails_applications.html +0 -1859
  110. data/doc/guides/source/2_2_release_notes.txt +0 -435
  111. data/doc/guides/source/actioncontroller_basics/changelog.txt +0 -5
  112. data/doc/guides/source/actioncontroller_basics/cookies.txt +0 -34
  113. data/doc/guides/source/actioncontroller_basics/csrf.txt +0 -32
  114. data/doc/guides/source/actioncontroller_basics/filters.txt +0 -119
  115. data/doc/guides/source/actioncontroller_basics/http_auth.txt +0 -24
  116. data/doc/guides/source/actioncontroller_basics/index.txt +0 -40
  117. data/doc/guides/source/actioncontroller_basics/introduction.txt +0 -9
  118. data/doc/guides/source/actioncontroller_basics/methods.txt +0 -39
  119. data/doc/guides/source/actioncontroller_basics/parameter_filtering.txt +0 -14
  120. data/doc/guides/source/actioncontroller_basics/params.txt +0 -93
  121. data/doc/guides/source/actioncontroller_basics/request_response_objects.txt +0 -43
  122. data/doc/guides/source/actioncontroller_basics/rescue.txt +0 -67
  123. data/doc/guides/source/actioncontroller_basics/session.txt +0 -187
  124. data/doc/guides/source/actioncontroller_basics/streaming.txt +0 -91
  125. data/doc/guides/source/actioncontroller_basics/verification.txt +0 -40
  126. data/doc/guides/source/active_record_basics.txt +0 -181
  127. data/doc/guides/source/activerecord_validations_callbacks.txt +0 -404
  128. data/doc/guides/source/association_basics.txt +0 -1840
  129. data/doc/guides/source/authors.txt +0 -39
  130. data/doc/guides/source/benchmarking_and_profiling/appendix.txt +0 -95
  131. data/doc/guides/source/benchmarking_and_profiling/digging_deeper.txt +0 -105
  132. data/doc/guides/source/benchmarking_and_profiling/edge_rails_features.txt +0 -185
  133. data/doc/guides/source/benchmarking_and_profiling/gameplan.txt +0 -27
  134. data/doc/guides/source/benchmarking_and_profiling/index.txt +0 -242
  135. data/doc/guides/source/benchmarking_and_profiling/rubyprof.txt +0 -179
  136. data/doc/guides/source/benchmarking_and_profiling/statistics.txt +0 -57
  137. data/doc/guides/source/caching_with_rails.txt +0 -367
  138. data/doc/guides/source/command_line.txt +0 -147
  139. data/doc/guides/source/configuring.txt +0 -225
  140. data/doc/guides/source/creating_plugins/acts_as_yaffle.txt +0 -191
  141. data/doc/guides/source/creating_plugins/appendix.txt +0 -46
  142. data/doc/guides/source/creating_plugins/controllers.txt +0 -59
  143. data/doc/guides/source/creating_plugins/core_ext.txt +0 -123
  144. data/doc/guides/source/creating_plugins/custom_route.txt +0 -69
  145. data/doc/guides/source/creating_plugins/gem.txt +0 -1
  146. data/doc/guides/source/creating_plugins/generator_method.txt +0 -89
  147. data/doc/guides/source/creating_plugins/helpers.txt +0 -51
  148. data/doc/guides/source/creating_plugins/index.txt +0 -52
  149. data/doc/guides/source/creating_plugins/migration_generator.txt +0 -156
  150. data/doc/guides/source/creating_plugins/models.txt +0 -76
  151. data/doc/guides/source/creating_plugins/odds_and_ends.txt +0 -69
  152. data/doc/guides/source/creating_plugins/test_setup.txt +0 -230
  153. data/doc/guides/source/debugging_rails_applications.txt +0 -733
  154. data/doc/guides/source/finders.txt +0 -668
  155. data/doc/guides/source/form_helpers.txt +0 -345
  156. data/doc/guides/source/getting_started_with_rails.txt +0 -1256
  157. data/doc/guides/source/images/belongs_to.png +0 -0
  158. data/doc/guides/source/images/bullet.gif +0 -0
  159. data/doc/guides/source/images/csrf.png +0 -0
  160. data/doc/guides/source/images/habtm.png +0 -0
  161. data/doc/guides/source/images/has_many.png +0 -0
  162. data/doc/guides/source/images/has_many_through.png +0 -0
  163. data/doc/guides/source/images/has_one.png +0 -0
  164. data/doc/guides/source/images/has_one_through.png +0 -0
  165. data/doc/guides/source/images/header_backdrop.png +0 -0
  166. data/doc/guides/source/images/icons/README +0 -5
  167. data/doc/guides/source/images/icons/callouts/1.png +0 -0
  168. data/doc/guides/source/images/icons/callouts/10.png +0 -0
  169. data/doc/guides/source/images/icons/callouts/11.png +0 -0
  170. data/doc/guides/source/images/icons/callouts/12.png +0 -0
  171. data/doc/guides/source/images/icons/callouts/13.png +0 -0
  172. data/doc/guides/source/images/icons/callouts/14.png +0 -0
  173. data/doc/guides/source/images/icons/callouts/15.png +0 -0
  174. data/doc/guides/source/images/icons/callouts/2.png +0 -0
  175. data/doc/guides/source/images/icons/callouts/3.png +0 -0
  176. data/doc/guides/source/images/icons/callouts/4.png +0 -0
  177. data/doc/guides/source/images/icons/callouts/5.png +0 -0
  178. data/doc/guides/source/images/icons/callouts/6.png +0 -0
  179. data/doc/guides/source/images/icons/callouts/7.png +0 -0
  180. data/doc/guides/source/images/icons/callouts/8.png +0 -0
  181. data/doc/guides/source/images/icons/callouts/9.png +0 -0
  182. data/doc/guides/source/images/icons/caution.png +0 -0
  183. data/doc/guides/source/images/icons/example.png +0 -0
  184. data/doc/guides/source/images/icons/home.png +0 -0
  185. data/doc/guides/source/images/icons/important.png +0 -0
  186. data/doc/guides/source/images/icons/next.png +0 -0
  187. data/doc/guides/source/images/icons/note.png +0 -0
  188. data/doc/guides/source/images/icons/prev.png +0 -0
  189. data/doc/guides/source/images/icons/tip.png +0 -0
  190. data/doc/guides/source/images/icons/up.png +0 -0
  191. data/doc/guides/source/images/icons/warning.png +0 -0
  192. data/doc/guides/source/images/polymorphic.png +0 -0
  193. data/doc/guides/source/images/rails_logo_remix.gif +0 -0
  194. data/doc/guides/source/images/ruby_on_rails_by_mike_rundle2.gif +0 -0
  195. data/doc/guides/source/images/session_fixation.png +0 -0
  196. data/doc/guides/source/index.txt +0 -118
  197. data/doc/guides/source/layouts_and_rendering.txt +0 -982
  198. data/doc/guides/source/migrations/anatomy_of_a_migration.txt +0 -85
  199. data/doc/guides/source/migrations/changelog.txt +0 -5
  200. data/doc/guides/source/migrations/creating_a_migration.txt +0 -109
  201. data/doc/guides/source/migrations/foreign_keys.txt +0 -8
  202. data/doc/guides/source/migrations/index.txt +0 -22
  203. data/doc/guides/source/migrations/rakeing_around.txt +0 -111
  204. data/doc/guides/source/migrations/scheming.txt +0 -47
  205. data/doc/guides/source/migrations/using_models_in_migrations.txt +0 -46
  206. data/doc/guides/source/migrations/writing_a_migration.txt +0 -159
  207. data/doc/guides/source/routing_outside_in.txt +0 -986
  208. data/doc/guides/source/security.txt +0 -984
  209. data/doc/guides/source/stylesheets/base.css +0 -358
  210. data/doc/guides/source/stylesheets/forms.css +0 -35
  211. data/doc/guides/source/stylesheets/more.css +0 -82
  212. data/doc/guides/source/templates/guides.html.erb +0 -97
  213. data/doc/guides/source/templates/inline.css +0 -165
  214. data/doc/guides/source/testing_rails_applications.txt +0 -995
  215. data/helpers/application.rb +0 -15
  216. data/lib/commands/performance/request.rb +0 -6
  217. data/lib/commands/process/inspector.rb +0 -68
  218. data/lib/commands/process/reaper.rb +0 -149
  219. data/lib/commands/process/spawner.rb +0 -219
  220. data/lib/commands/process/spinner.rb +0 -57
  221. data/lib/commands/servers/base.rb +0 -31
  222. data/lib/commands/servers/lighttpd.rb +0 -94
  223. data/lib/commands/servers/mongrel.rb +0 -69
  224. data/lib/commands/servers/new_mongrel.rb +0 -16
  225. data/lib/commands/servers/thin.rb +0 -25
  226. data/lib/commands/servers/webrick.rb +0 -66
  227. data/lib/rails/mongrel_server/commands.rb +0 -342
  228. data/lib/rails/mongrel_server/handler.rb +0 -55
  229. data/lib/rails/rack/logger.rb +0 -28
@@ -1,156 +0,0 @@
1
- == Create a generator ==
2
-
3
- Many plugins ship with generators. When you created the plugin above, you specified the --with-generator option, so you already have the generator stubs in 'vendor/plugins/yaffle/generators/yaffle'.
4
-
5
- Building generators is a complex topic unto itself and this section will cover one small aspect of generators: creating a generator that adds a time-stamped migration.
6
-
7
- To create a generator you must:
8
-
9
- * Add your instructions to the 'manifest' method of the generator
10
- * Add any necessary template files to the templates directory
11
- * Test the generator manually by running various combinations of `script/generate` and `script/destroy`
12
- * Update the USAGE file to add helpful documentation for your generator
13
-
14
- === Testing generators ===
15
-
16
- Many rails plugin authors do not test their generators, however testing generators is quite simple. A typical generator test does the following:
17
-
18
- * Creates a new fake rails root directory that will serve as destination
19
- * Runs the generator forward and backward, making whatever assertions are necessary
20
- * Removes the fake rails root
21
-
22
- For the generator in this section, the test could look something like this:
23
-
24
- *vendor/plugins/yaffle/test/yaffle_generator_test.rb*
25
-
26
- [source, ruby]
27
- ------------------------------------------------------------------
28
- require File.dirname(__FILE__) + '/test_helper.rb'
29
- require 'rails_generator'
30
- require 'rails_generator/scripts/generate'
31
- require 'rails_generator/scripts/destroy'
32
-
33
- class GeneratorTest < Test::Unit::TestCase
34
-
35
- def fake_rails_root
36
- File.join(File.dirname(__FILE__), 'rails_root')
37
- end
38
-
39
- def file_list
40
- Dir.glob(File.join(fake_rails_root, "db", "migrate", "*"))
41
- end
42
-
43
- def setup
44
- FileUtils.mkdir_p(fake_rails_root)
45
- @original_files = file_list
46
- end
47
-
48
- def teardown
49
- FileUtils.rm_r(fake_rails_root)
50
- end
51
-
52
- def test_generates_correct_file_name
53
- Rails::Generator::Scripts::Generate.new.run(["yaffle", "bird"], :destination => fake_rails_root)
54
- new_file = (file_list - @original_files).first
55
- assert_match /add_yaffle_fields_to_bird/, new_file
56
- end
57
-
58
- end
59
- ------------------------------------------------------------------
60
-
61
- You can run 'rake' from the plugin directory to see this fail. Unless you are doing more advanced generator commands it typically suffices to just test the Generate script, and trust that rails will handle the Destroy and Update commands for you.
62
-
63
- === Adding to the manifest ===
64
-
65
- This example will demonstrate how to use one of the built-in generator methods named 'migration_template' to create a migration file. To start, update your generator file to look like this:
66
-
67
- *vendor/plugins/yaffle/generators/yaffle/yaffle_generator.rb*
68
-
69
- [source, ruby]
70
- ------------------------------------------------------------------
71
- class YaffleGenerator < Rails::Generator::NamedBase
72
- def manifest
73
- record do |m|
74
- m.migration_template 'migration:migration.rb', "db/migrate", {:assigns => yaffle_local_assigns,
75
- :migration_file_name => "add_yaffle_fields_to_#{custom_file_name}"
76
- }
77
- end
78
- end
79
-
80
- private
81
- def custom_file_name
82
- custom_name = class_name.underscore.downcase
83
- custom_name = custom_name.pluralize if ActiveRecord::Base.pluralize_table_names
84
- end
85
-
86
- def yaffle_local_assigns
87
- returning(assigns = {}) do
88
- assigns[:migration_action] = "add"
89
- assigns[:class_name] = "add_yaffle_fields_to_#{custom_file_name}"
90
- assigns[:table_name] = custom_file_name
91
- assigns[:attributes] = [Rails::Generator::GeneratedAttribute.new("last_squawk", "string")]
92
- end
93
- end
94
- end
95
- ------------------------------------------------------------------
96
-
97
- The generator creates a new file in 'db/migrate' with a timestamp and an 'add_column' statement. It reuses the built in rails `migration_template` method, and reuses the built-in rails migration template.
98
-
99
- It's courteous to check to see if table names are being pluralized whenever you create a generator that needs to be aware of table names. This way people using your generator won't have to manually change the generated files if they've turned pluralization off.
100
-
101
- === Manually test the generator ===
102
-
103
- To run the generator, type the following at the command line:
104
-
105
- ------------------------------------------------------------------
106
- ./script/generate yaffle bird
107
- ------------------------------------------------------------------
108
-
109
- and you will see a new file:
110
-
111
- *db/migrate/20080529225649_add_yaffle_fields_to_birds.rb*
112
-
113
- [source, ruby]
114
- ------------------------------------------------------------------
115
- class AddYaffleFieldsToBirds < ActiveRecord::Migration
116
- def self.up
117
- add_column :birds, :last_squawk, :string
118
- end
119
-
120
- def self.down
121
- remove_column :birds, :last_squawk
122
- end
123
- end
124
- ------------------------------------------------------------------
125
-
126
-
127
- === The USAGE file ===
128
-
129
- Rails ships with several built-in generators. You can see all of the generators available to you by typing the following at the command line:
130
-
131
- ------------------------------------------------------------------
132
- script/generate
133
- ------------------------------------------------------------------
134
-
135
- You should see something like this:
136
-
137
- ------------------------------------------------------------------
138
- Installed Generators
139
- Plugins (vendor/plugins): yaffle
140
- Builtin: controller, integration_test, mailer, migration, model, observer, plugin, resource, scaffold, session_migration
141
- ------------------------------------------------------------------
142
-
143
- When you run `script/generate yaffle` you should see the contents of your 'vendor/plugins/yaffle/generators/yaffle/USAGE' file.
144
-
145
- For this plugin, update the USAGE file looks like this:
146
-
147
- ------------------------------------------------------------------
148
- Description:
149
- Creates a migration that adds yaffle squawk fields to the given model
150
-
151
- Example:
152
- ./script/generate yaffle hickwall
153
-
154
- This will create:
155
- db/migrate/TIMESTAMP_add_yaffle_fields_to_hickwall
156
- ------------------------------------------------------------------
@@ -1,76 +0,0 @@
1
- == Add a model ==
2
-
3
- This section describes how to add a model named 'Woodpecker' to your plugin that will behave the same as a model in your main app. When storing models, controllers, views and helpers in your plugin, it's customary to keep them in directories that match the rails directories. For this example, create a file structure like this:
4
-
5
- ---------------------------------------------------------
6
- vendor/plugins/yaffle/
7
- |-- lib
8
- | |-- app
9
- | | |-- controllers
10
- | | |-- helpers
11
- | | |-- models
12
- | | | `-- woodpecker.rb
13
- | | `-- views
14
- | |-- yaffle
15
- | | |-- acts_as_yaffle.rb
16
- | | |-- commands.rb
17
- | | `-- core_ext.rb
18
- | `-- yaffle.rb
19
- ---------------------------------------------------------
20
-
21
- As always, start with a test:
22
-
23
- *vendor/plugins/yaffle/yaffle/woodpecker_test.rb:*
24
-
25
- [source, ruby]
26
- ----------------------------------------------
27
- require File.dirname(__FILE__) + '/test_helper.rb'
28
-
29
- class WoodpeckerTest < Test::Unit::TestCase
30
- load_schema
31
-
32
- def test_woodpecker
33
- assert_kind_of Woodpecker, Woodpecker.new
34
- end
35
- end
36
- ----------------------------------------------
37
-
38
- This is just a simple test to make sure the class is being loaded correctly. After watching it fail with `rake`, you can make it pass like so:
39
-
40
- *vendor/plugins/yaffle/lib/yaffle.rb:*
41
-
42
- [source, ruby]
43
- ----------------------------------------------
44
- %w{ models }.each do |dir|
45
- path = File.join(File.dirname(__FILE__), 'app', dir)
46
- $LOAD_PATH << path
47
- ActiveSupport::Dependencies.load_paths << path
48
- ActiveSupport::Dependencies.load_once_paths.delete(path)
49
- end
50
- ----------------------------------------------
51
-
52
- Adding directories to the load path makes them appear just like files in the the main app directory - except that they are only loaded once, so you have to restart the web server to see the changes in the browser. Removing directories from the 'load_once_paths' allow those changes to picked up as soon as you save the file - without having to restart the web server. This is particularly useful as you develop the plugin.
53
-
54
-
55
- *vendor/plugins/yaffle/lib/app/models/woodpecker.rb:*
56
-
57
- [source, ruby]
58
- ----------------------------------------------
59
- class Woodpecker < ActiveRecord::Base
60
- end
61
- ----------------------------------------------
62
-
63
- Finally, add the following to your plugin's 'schema.rb':
64
-
65
- *vendor/plugins/yaffle/test/schema.rb:*
66
-
67
- [source, ruby]
68
- ----------------------------------------------
69
- ActiveRecord::Schema.define(:version => 0) do
70
- create_table :woodpeckers, :force => true do |t|
71
- t.string :name
72
- end
73
- end
74
- ----------------------------------------------
75
-
76
- Now your test should be passing, and you should be able to use the Woodpecker model from within your rails app, and any changes made to it are reflected immediately when running in development mode.
@@ -1,69 +0,0 @@
1
- == Odds and ends ==
2
-
3
- === Generate RDoc Documentation ===
4
-
5
- Once your plugin is stable, the tests pass on all database and you are ready to deploy do everyone else a favor and document it! Luckily, writing documentation for your plugin is easy.
6
-
7
- The first step is to update the README file with detailed information about how to use your plugin. A few key things to include are:
8
-
9
- * Your name.
10
- * How to install.
11
- * How to add the functionality to the app (several examples of common use cases).
12
- * Warning, gotchas or tips that might help save users time.
13
-
14
- Once your README is solid, go through and add rdoc comments to all of the methods that developers will use.
15
-
16
- Before you generate your documentation, be sure to go through and add nodoc comments to those modules and methods that are not important to your users.
17
-
18
- Once your comments are good to go, navigate to your plugin directory and run:
19
-
20
- rake rdoc
21
-
22
- === Write custom Rake tasks in your plugin ===
23
-
24
- When you created the plugin with the built-in rails generator, it generated a rake file for you in 'vendor/plugins/yaffle/tasks/yaffle.rake'. Any rake task you add here will be available to the app.
25
-
26
- Many plugin authors put all of their rake tasks into a common namespace that is the same as the plugin, like so:
27
-
28
- *vendor/plugins/yaffle/tasks/yaffle.rake*
29
-
30
- [source, ruby]
31
- ---------------------------------------------------------
32
- namespace :yaffle do
33
- desc "Prints out the word 'Yaffle'"
34
- task :squawk => :environment do
35
- puts "squawk!"
36
- end
37
- end
38
- ---------------------------------------------------------
39
-
40
- When you run `rake -T` from your plugin you will see:
41
-
42
- ---------------------------------------------------------
43
- yaffle:squawk # Prints out the word 'Yaffle'
44
- ---------------------------------------------------------
45
-
46
- You can add as many files as you want in the tasks directory, and if they end in .rake Rails will pick them up.
47
-
48
- === Store plugins in alternate locations ===
49
-
50
- You can store plugins wherever you want - you just have to add those plugins to the plugins path in 'environment.rb'.
51
-
52
- Since the plugin is only loaded after the plugin paths are defined, you can't redefine this in your plugins - but it may be good to now.
53
-
54
- You can even store plugins inside of other plugins for complete plugin madness!
55
-
56
- [source, ruby]
57
- ---------------------------------------------------------
58
- config.plugin_paths << File.join(RAILS_ROOT,"vendor","plugins","yaffle","lib","plugins")
59
- ---------------------------------------------------------
60
-
61
- === Create your own Plugin Loaders and Plugin Locators ===
62
-
63
- If the built-in plugin behavior is inadequate, you can change almost every aspect of the location and loading process. You can write your own plugin locators and plugin loaders, but that's beyond the scope of this tutorial.
64
-
65
-
66
- === Use Custom Plugin Generators ===
67
-
68
- If you are an RSpec fan, you can install the `rspec_plugin_generator` gem, which will generate the spec folder and database for you. See http://github.com/pat-maddox/rspec-plugin-generator/tree/master.
69
-
@@ -1,230 +0,0 @@
1
- == Preparation ==
2
-
3
- === Create the basic app ===
4
-
5
- The examples in this guide require that you have a working rails application. To create a simple rails app execute:
6
-
7
- ------------------------------------------------
8
- gem install rails
9
- rails yaffle_guide
10
- cd yaffle_guide
11
- script/generate scaffold bird name:string
12
- rake db:migrate
13
- script/server
14
- ------------------------------------------------
15
-
16
- Then navigate to http://localhost:3000/birds. Make sure you have a functioning rails app before continuing.
17
-
18
- .Editor's note:
19
- NOTE: The aforementioned instructions will work for sqlite3. For more detailed instructions on how to create a rails app for other databases see the API docs.
20
-
21
-
22
- === Generate the plugin skeleton ===
23
-
24
- Rails ships with a plugin generator which creates a basic plugin skeleton. Pass the plugin name, either 'CamelCased' or 'under_scored', as an argument. Pass `\--with-generator` to add an example generator also.
25
-
26
- This creates a plugin in 'vendor/plugins' including an 'init.rb' and 'README' as well as standard 'lib', 'task', and 'test' directories.
27
-
28
- Examples:
29
- ----------------------------------------------
30
- ./script/generate plugin yaffle
31
- ./script/generate plugin yaffle --with-generator
32
- ----------------------------------------------
33
-
34
- To get more detailed help on the plugin generator, type `./script/generate plugin`.
35
-
36
- Later on this guide will describe how to work with generators, so go ahead and generate your plugin with the `\--with-generator` option now:
37
-
38
- ----------------------------------------------
39
- ./script/generate plugin yaffle --with-generator
40
- ----------------------------------------------
41
-
42
- You should see the following output:
43
-
44
- ----------------------------------------------
45
- create vendor/plugins/yaffle/lib
46
- create vendor/plugins/yaffle/tasks
47
- create vendor/plugins/yaffle/test
48
- create vendor/plugins/yaffle/README
49
- create vendor/plugins/yaffle/MIT-LICENSE
50
- create vendor/plugins/yaffle/Rakefile
51
- create vendor/plugins/yaffle/init.rb
52
- create vendor/plugins/yaffle/install.rb
53
- create vendor/plugins/yaffle/uninstall.rb
54
- create vendor/plugins/yaffle/lib/yaffle.rb
55
- create vendor/plugins/yaffle/tasks/yaffle_tasks.rake
56
- create vendor/plugins/yaffle/test/core_ext_test.rb
57
- create vendor/plugins/yaffle/generators
58
- create vendor/plugins/yaffle/generators/yaffle
59
- create vendor/plugins/yaffle/generators/yaffle/templates
60
- create vendor/plugins/yaffle/generators/yaffle/yaffle_generator.rb
61
- create vendor/plugins/yaffle/generators/yaffle/USAGE
62
- ----------------------------------------------
63
-
64
- To begin just change one thing - move 'init.rb' to 'rails/init.rb'.
65
-
66
- === Setup the plugin for testing ===
67
-
68
- If your plugin interacts with a database, you'll need to setup a database connection. In this guide you will learn how to test your plugin against multiple different database adapters using Active Record. This guide will not cover how to use fixtures in plugin tests.
69
-
70
- To setup your plugin to allow for easy testing you'll need to add 3 files:
71
-
72
- * A 'database.yml' file with all of your connection strings
73
- * A 'schema.rb' file with your table definitions
74
- * A test helper method that sets up the database
75
-
76
- *vendor/plugins/yaffle/test/database.yml:*
77
-
78
- ----------------------------------------------
79
- sqlite:
80
- :adapter: sqlite
81
- :dbfile: vendor/plugins/yaffle/test/yaffle_plugin.sqlite.db
82
-
83
- sqlite3:
84
- :adapter: sqlite3
85
- :dbfile: vendor/plugins/yaffle/test/yaffle_plugin.sqlite3.db
86
-
87
- postgresql:
88
- :adapter: postgresql
89
- :username: postgres
90
- :password: postgres
91
- :database: yaffle_plugin_test
92
- :min_messages: ERROR
93
-
94
- mysql:
95
- :adapter: mysql
96
- :host: localhost
97
- :username: root
98
- :password: password
99
- :database: yaffle_plugin_test
100
- ----------------------------------------------
101
-
102
- For this guide you'll need 2 tables/models, Hickwalls and Wickwalls, so add the following:
103
-
104
- *vendor/plugins/yaffle/test/schema.rb:*
105
-
106
- [source, ruby]
107
- ----------------------------------------------
108
- ActiveRecord::Schema.define(:version => 0) do
109
- create_table :hickwalls, :force => true do |t|
110
- t.string :name
111
- t.string :last_squawk
112
- t.datetime :last_squawked_at
113
- end
114
- create_table :wickwalls, :force => true do |t|
115
- t.string :name
116
- t.string :last_tweet
117
- t.datetime :last_tweeted_at
118
- end
119
- create_table :woodpeckers, :force => true do |t|
120
- t.string :name
121
- end
122
- end
123
- ----------------------------------------------
124
-
125
- *vendor/plugins/yaffle/test/test_helper.rb:*
126
-
127
- [source, ruby]
128
- ----------------------------------------------
129
- ENV['RAILS_ENV'] = 'test'
130
- ENV['RAILS_ROOT'] ||= File.dirname(__FILE__) + '/../../../..'
131
-
132
- require 'test/unit'
133
- require File.expand_path(File.join(ENV['RAILS_ROOT'], 'config/environment.rb'))
134
-
135
- def load_schema
136
- config = YAML::load(IO.read(File.dirname(__FILE__) + '/database.yml'))
137
- ActiveRecord::Base.logger = Logger.new(File.dirname(__FILE__) + "/debug.log")
138
-
139
- db_adapter = ENV['DB']
140
-
141
- # no db passed, try one of these fine config-free DBs before bombing.
142
- db_adapter ||=
143
- begin
144
- require 'rubygems'
145
- require 'sqlite'
146
- 'sqlite'
147
- rescue MissingSourceFile
148
- begin
149
- require 'sqlite3'
150
- 'sqlite3'
151
- rescue MissingSourceFile
152
- end
153
- end
154
-
155
- if db_adapter.nil?
156
- raise "No DB Adapter selected. Pass the DB= option to pick one, or install Sqlite or Sqlite3."
157
- end
158
-
159
- ActiveRecord::Base.establish_connection(config[db_adapter])
160
- load(File.dirname(__FILE__) + "/schema.rb")
161
- require File.dirname(__FILE__) + '/../rails/init.rb'
162
- end
163
- ----------------------------------------------
164
-
165
- Now whenever you write a test that requires the database, you can call 'load_schema'.
166
-
167
- === Run the plugin tests ===
168
-
169
- Once you have these files in place, you can write your first test to ensure that your plugin-testing setup is correct. By default rails generates a file in 'vendor/plugins/yaffle/test/yaffle_test.rb' with a sample test. Replace the contents of that file with:
170
-
171
- *vendor/plugins/yaffle/test/yaffle_test.rb:*
172
-
173
- [source, ruby]
174
- ----------------------------------------------
175
- require File.dirname(__FILE__) + '/test_helper.rb'
176
-
177
- class YaffleTest < Test::Unit::TestCase
178
- load_schema
179
-
180
- class Hickwall < ActiveRecord::Base
181
- end
182
-
183
- class Wickwall < ActiveRecord::Base
184
- end
185
-
186
- def test_schema_has_loaded_correctly
187
- assert_equal [], Hickwall.all
188
- assert_equal [], Wickwall.all
189
- end
190
-
191
- end
192
- ----------------------------------------------
193
-
194
- To run this, go to the plugin directory and run `rake`:
195
-
196
- ----------------------------------------------
197
- cd vendor/plugins/yaffle
198
- rake
199
- ----------------------------------------------
200
-
201
- You should see output like:
202
-
203
- ----------------------------------------------
204
- /opt/local/bin/ruby -Ilib:lib "/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb" "test/yaffle_test.rb"
205
- -- create_table(:hickwalls, {:force=>true})
206
- -> 0.0220s
207
- -- create_table(:wickwalls, {:force=>true})
208
- -> 0.0077s
209
- -- initialize_schema_migrations_table()
210
- -> 0.0007s
211
- -- assume_migrated_upto_version(0)
212
- -> 0.0007s
213
- Loaded suite /opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader
214
- Started
215
- .
216
- Finished in 0.002236 seconds.
217
-
218
- 1 test, 1 assertion, 0 failures, 0 errors
219
- ----------------------------------------------
220
-
221
- By default the setup above runs your tests with sqlite or sqlite3. To run tests with one of the other connection strings specified in database.yml, pass the DB environment variable to rake:
222
-
223
- ----------------------------------------------
224
- rake DB=sqlite
225
- rake DB=sqlite3
226
- rake DB=mysql
227
- rake DB=postgresql
228
- ----------------------------------------------
229
-
230
- Now you are ready to test-drive your plugin!