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.
- data/CHANGELOG +272 -191
- data/MIT-LICENSE +1 -1
- data/README +6 -19
- data/Rakefile +24 -71
- data/bin/rails +1 -0
- data/builtin/rails_info/rails/info.rb +12 -8
- data/configs/databases/mysql.yml +3 -0
- data/configs/initializers/backtrace_silencers.rb +7 -0
- data/configs/initializers/new_rails_defaults.rb +2 -0
- data/configs/initializers/session_store.rb +15 -0
- data/dispatches/config.ru +7 -0
- data/doc/README_FOR_APP +2 -5
- data/environments/boot.rb +1 -0
- data/environments/environment.rb +14 -48
- data/environments/production.rb +11 -7
- data/environments/test.rb +6 -0
- data/helpers/application_controller.rb +10 -0
- data/helpers/test_helper.rb +1 -1
- data/html/500.html +0 -3
- data/html/index.html +1 -0
- data/lib/commands/about.rb +1 -1
- data/lib/commands/dbconsole.rb +18 -2
- data/lib/commands/plugin.rb +4 -3
- data/lib/commands/runner.rb +13 -7
- data/lib/commands/server.rb +98 -33
- data/lib/console_app.rb +4 -4
- data/lib/console_with_helpers.rb +2 -23
- data/lib/dispatcher.rb +1 -1
- data/lib/fcgi_handler.rb +12 -10
- data/lib/initializer.rb +108 -41
- data/lib/rails/backtrace_cleaner.rb +54 -0
- data/lib/rails/gem_dependency.rb +124 -94
- data/lib/rails/plugin.rb +49 -6
- data/lib/rails/plugin/loader.rb +66 -27
- data/lib/rails/plugin/locator.rb +1 -1
- data/lib/rails/rack.rb +3 -1
- data/lib/rails/rack/debugger.rb +21 -0
- data/lib/rails/rack/log_tailer.rb +35 -0
- data/lib/rails/rack/metal.rb +51 -0
- data/lib/rails/rack/static.rb +15 -4
- data/lib/rails/version.rb +2 -2
- data/lib/rails_generator/base.rb +3 -0
- data/lib/rails_generator/commands.rb +8 -3
- data/lib/rails_generator/generators/applications/app/app_generator.rb +210 -136
- data/lib/rails_generator/generators/applications/app/scm/git.rb +16 -0
- data/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
- data/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
- data/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
- data/lib/rails_generator/generators/components/controller/USAGE +12 -11
- data/lib/rails_generator/generators/components/controller/controller_generator.rb +7 -1
- data/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
- data/lib/rails_generator/generators/components/helper/USAGE +24 -0
- data/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
- data/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
- data/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
- data/lib/rails_generator/generators/components/metal/USAGE +8 -0
- data/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
- data/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
- data/lib/rails_generator/generators/components/resource/USAGE +2 -2
- data/lib/rails_generator/generators/components/resource/resource_generator.rb +2 -0
- data/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
- data/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +2 -0
- data/lib/rails_generator/generators/components/scaffold/templates/controller.rb +1 -1
- data/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +4 -4
- data/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
- data/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +1 -1
- data/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +2 -2
- data/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +2 -2
- data/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +2 -2
- data/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +1 -1
- data/lib/rails_generator/secret_key_generator.rb +2 -0
- data/lib/tasks/databases.rake +13 -6
- data/lib/tasks/documentation.rake +2 -9
- data/lib/tasks/framework.rake +26 -1
- data/lib/tasks/gems.rake +33 -48
- data/lib/tasks/middleware.rake +7 -0
- data/lib/tasks/misc.rake +7 -0
- data/lib/tasks/statistics.rake +0 -1
- data/lib/tasks/testing.rake +5 -5
- data/lib/tasks/tmp.rake +2 -2
- data/lib/test_help.rb +16 -8
- metadata +92 -159
- data/bin/performance/request +0 -3
- data/bin/process/inspector +0 -3
- data/bin/process/reaper +0 -3
- data/bin/process/spawner +0 -3
- data/config.ru +0 -17
- data/configs/apache.conf +0 -40
- data/configs/lighttpd.conf +0 -54
- data/doc/guides/html/2_2_release_notes.html +0 -1185
- data/doc/guides/html/actioncontroller_basics.html +0 -1270
- data/doc/guides/html/activerecord_validations_callbacks.html +0 -749
- data/doc/guides/html/association_basics.html +0 -2585
- data/doc/guides/html/authors.html +0 -240
- data/doc/guides/html/benchmarking_and_profiling.html +0 -1018
- data/doc/guides/html/caching_with_rails.html +0 -583
- data/doc/guides/html/command_line.html +0 -434
- data/doc/guides/html/configuring.html +0 -438
- data/doc/guides/html/creating_plugins.html +0 -1594
- data/doc/guides/html/debugging_rails_applications.html +0 -1175
- data/doc/guides/html/finders.html +0 -1090
- data/doc/guides/html/form_helpers.html +0 -638
- data/doc/guides/html/getting_started_with_rails.html +0 -2066
- data/doc/guides/html/index.html +0 -349
- data/doc/guides/html/layouts_and_rendering.html +0 -1406
- data/doc/guides/html/migrations.html +0 -921
- data/doc/guides/html/routing_outside_in.html +0 -2213
- data/doc/guides/html/security.html +0 -1346
- data/doc/guides/html/testing_rails_applications.html +0 -1859
- data/doc/guides/source/2_2_release_notes.txt +0 -435
- data/doc/guides/source/actioncontroller_basics/changelog.txt +0 -5
- data/doc/guides/source/actioncontroller_basics/cookies.txt +0 -34
- data/doc/guides/source/actioncontroller_basics/csrf.txt +0 -32
- data/doc/guides/source/actioncontroller_basics/filters.txt +0 -119
- data/doc/guides/source/actioncontroller_basics/http_auth.txt +0 -24
- data/doc/guides/source/actioncontroller_basics/index.txt +0 -40
- data/doc/guides/source/actioncontroller_basics/introduction.txt +0 -9
- data/doc/guides/source/actioncontroller_basics/methods.txt +0 -39
- data/doc/guides/source/actioncontroller_basics/parameter_filtering.txt +0 -14
- data/doc/guides/source/actioncontroller_basics/params.txt +0 -93
- data/doc/guides/source/actioncontroller_basics/request_response_objects.txt +0 -43
- data/doc/guides/source/actioncontroller_basics/rescue.txt +0 -67
- data/doc/guides/source/actioncontroller_basics/session.txt +0 -187
- data/doc/guides/source/actioncontroller_basics/streaming.txt +0 -91
- data/doc/guides/source/actioncontroller_basics/verification.txt +0 -40
- data/doc/guides/source/active_record_basics.txt +0 -181
- data/doc/guides/source/activerecord_validations_callbacks.txt +0 -404
- data/doc/guides/source/association_basics.txt +0 -1840
- data/doc/guides/source/authors.txt +0 -39
- data/doc/guides/source/benchmarking_and_profiling/appendix.txt +0 -95
- data/doc/guides/source/benchmarking_and_profiling/digging_deeper.txt +0 -105
- data/doc/guides/source/benchmarking_and_profiling/edge_rails_features.txt +0 -185
- data/doc/guides/source/benchmarking_and_profiling/gameplan.txt +0 -27
- data/doc/guides/source/benchmarking_and_profiling/index.txt +0 -242
- data/doc/guides/source/benchmarking_and_profiling/rubyprof.txt +0 -179
- data/doc/guides/source/benchmarking_and_profiling/statistics.txt +0 -57
- data/doc/guides/source/caching_with_rails.txt +0 -367
- data/doc/guides/source/command_line.txt +0 -147
- data/doc/guides/source/configuring.txt +0 -225
- data/doc/guides/source/creating_plugins/acts_as_yaffle.txt +0 -191
- data/doc/guides/source/creating_plugins/appendix.txt +0 -46
- data/doc/guides/source/creating_plugins/controllers.txt +0 -59
- data/doc/guides/source/creating_plugins/core_ext.txt +0 -123
- data/doc/guides/source/creating_plugins/custom_route.txt +0 -69
- data/doc/guides/source/creating_plugins/gem.txt +0 -1
- data/doc/guides/source/creating_plugins/generator_method.txt +0 -89
- data/doc/guides/source/creating_plugins/helpers.txt +0 -51
- data/doc/guides/source/creating_plugins/index.txt +0 -52
- data/doc/guides/source/creating_plugins/migration_generator.txt +0 -156
- data/doc/guides/source/creating_plugins/models.txt +0 -76
- data/doc/guides/source/creating_plugins/odds_and_ends.txt +0 -69
- data/doc/guides/source/creating_plugins/test_setup.txt +0 -230
- data/doc/guides/source/debugging_rails_applications.txt +0 -733
- data/doc/guides/source/finders.txt +0 -668
- data/doc/guides/source/form_helpers.txt +0 -345
- data/doc/guides/source/getting_started_with_rails.txt +0 -1256
- data/doc/guides/source/images/belongs_to.png +0 -0
- data/doc/guides/source/images/bullet.gif +0 -0
- data/doc/guides/source/images/csrf.png +0 -0
- data/doc/guides/source/images/habtm.png +0 -0
- data/doc/guides/source/images/has_many.png +0 -0
- data/doc/guides/source/images/has_many_through.png +0 -0
- data/doc/guides/source/images/has_one.png +0 -0
- data/doc/guides/source/images/has_one_through.png +0 -0
- data/doc/guides/source/images/header_backdrop.png +0 -0
- data/doc/guides/source/images/icons/README +0 -5
- data/doc/guides/source/images/icons/callouts/1.png +0 -0
- data/doc/guides/source/images/icons/callouts/10.png +0 -0
- data/doc/guides/source/images/icons/callouts/11.png +0 -0
- data/doc/guides/source/images/icons/callouts/12.png +0 -0
- data/doc/guides/source/images/icons/callouts/13.png +0 -0
- data/doc/guides/source/images/icons/callouts/14.png +0 -0
- data/doc/guides/source/images/icons/callouts/15.png +0 -0
- data/doc/guides/source/images/icons/callouts/2.png +0 -0
- data/doc/guides/source/images/icons/callouts/3.png +0 -0
- data/doc/guides/source/images/icons/callouts/4.png +0 -0
- data/doc/guides/source/images/icons/callouts/5.png +0 -0
- data/doc/guides/source/images/icons/callouts/6.png +0 -0
- data/doc/guides/source/images/icons/callouts/7.png +0 -0
- data/doc/guides/source/images/icons/callouts/8.png +0 -0
- data/doc/guides/source/images/icons/callouts/9.png +0 -0
- data/doc/guides/source/images/icons/caution.png +0 -0
- data/doc/guides/source/images/icons/example.png +0 -0
- data/doc/guides/source/images/icons/home.png +0 -0
- data/doc/guides/source/images/icons/important.png +0 -0
- data/doc/guides/source/images/icons/next.png +0 -0
- data/doc/guides/source/images/icons/note.png +0 -0
- data/doc/guides/source/images/icons/prev.png +0 -0
- data/doc/guides/source/images/icons/tip.png +0 -0
- data/doc/guides/source/images/icons/up.png +0 -0
- data/doc/guides/source/images/icons/warning.png +0 -0
- data/doc/guides/source/images/polymorphic.png +0 -0
- data/doc/guides/source/images/rails_logo_remix.gif +0 -0
- data/doc/guides/source/images/ruby_on_rails_by_mike_rundle2.gif +0 -0
- data/doc/guides/source/images/session_fixation.png +0 -0
- data/doc/guides/source/index.txt +0 -118
- data/doc/guides/source/layouts_and_rendering.txt +0 -982
- data/doc/guides/source/migrations/anatomy_of_a_migration.txt +0 -85
- data/doc/guides/source/migrations/changelog.txt +0 -5
- data/doc/guides/source/migrations/creating_a_migration.txt +0 -109
- data/doc/guides/source/migrations/foreign_keys.txt +0 -8
- data/doc/guides/source/migrations/index.txt +0 -22
- data/doc/guides/source/migrations/rakeing_around.txt +0 -111
- data/doc/guides/source/migrations/scheming.txt +0 -47
- data/doc/guides/source/migrations/using_models_in_migrations.txt +0 -46
- data/doc/guides/source/migrations/writing_a_migration.txt +0 -159
- data/doc/guides/source/routing_outside_in.txt +0 -986
- data/doc/guides/source/security.txt +0 -984
- data/doc/guides/source/stylesheets/base.css +0 -358
- data/doc/guides/source/stylesheets/forms.css +0 -35
- data/doc/guides/source/stylesheets/more.css +0 -82
- data/doc/guides/source/templates/guides.html.erb +0 -97
- data/doc/guides/source/templates/inline.css +0 -165
- data/doc/guides/source/testing_rails_applications.txt +0 -995
- data/helpers/application.rb +0 -15
- data/lib/commands/performance/request.rb +0 -6
- data/lib/commands/process/inspector.rb +0 -68
- data/lib/commands/process/reaper.rb +0 -149
- data/lib/commands/process/spawner.rb +0 -219
- data/lib/commands/process/spinner.rb +0 -57
- data/lib/commands/servers/base.rb +0 -31
- data/lib/commands/servers/lighttpd.rb +0 -94
- data/lib/commands/servers/mongrel.rb +0 -69
- data/lib/commands/servers/new_mongrel.rb +0 -16
- data/lib/commands/servers/thin.rb +0 -25
- data/lib/commands/servers/webrick.rb +0 -66
- data/lib/rails/mongrel_server/commands.rb +0 -342
- data/lib/rails/mongrel_server/handler.rb +0 -55
- data/lib/rails/rack/logger.rb +0 -28
data/CHANGELOG
CHANGED
@@ -1,14 +1,95 @@
|
|
1
|
-
*2.2
|
1
|
+
*2.3.2 [Final] (March 15, 2009)*
|
2
2
|
|
3
|
-
|
3
|
+
* Allow metal to live in plugins #2045 [Matthew Rudy]
|
4
4
|
|
5
|
-
*
|
5
|
+
* Added metal [Josh Peek]
|
6
6
|
|
7
|
-
*
|
7
|
+
* Remove script/performance/request in favour of the performance integration tests. [Pratik Naik]
|
8
|
+
|
9
|
+
To continue using script/performance/request, install the request_profiler plugin :
|
10
|
+
|
11
|
+
script/plugin install git://github.com/rails/request_profiler.git
|
12
|
+
|
13
|
+
* Add a rake task to apply a template to an existing application : rake rails:template LOCATION=~/template.rb [Pratik Naik]
|
14
|
+
|
15
|
+
* Add "-m/--template" option to Rails generator to apply a template to the generated application. [Jeremy McAnally]
|
16
|
+
|
17
|
+
This has been extracted from rg - http://github.com/jeremymcanally/rg
|
18
|
+
|
19
|
+
Example:
|
20
|
+
|
21
|
+
# template.rb
|
22
|
+
|
23
|
+
# Install plugins from git or svn
|
24
|
+
plugin "will-paginate", :git => "git://github.com/mislav/will_paginate.git"
|
25
|
+
plugin "old-restful-auth", :svn => "http://svn.techno-weenie.net/projects/plugins/restful_authentication/"
|
26
|
+
|
27
|
+
# Add gems to environment.rb
|
28
|
+
gem "jeremymcanally-context"
|
29
|
+
gem "bluecloth"
|
30
|
+
|
31
|
+
# Vendor file. Data in a string or...
|
32
|
+
vendor("borrowed.rb", <<CODE
|
33
|
+
def helpful_method
|
34
|
+
do_something_helpful_here
|
35
|
+
end
|
36
|
+
CODE
|
37
|
+
|
38
|
+
# ...file data from block return value.
|
39
|
+
# #initializer creates a new initializer file
|
40
|
+
initializer("crypto.rb") do
|
41
|
+
salt = "--#{Time.now}--#{rand}--#{srand(Time.now.to_i)}"
|
42
|
+
|
43
|
+
"SPECIAL_SALT = '#{salt}'"
|
44
|
+
end
|
45
|
+
|
46
|
+
Usage:
|
47
|
+
|
48
|
+
To use a template, provide a file path or URL:
|
49
|
+
|
50
|
+
1. Using a local file :
|
51
|
+
|
52
|
+
rails <application name> -m /path/to/my/template.rb
|
53
|
+
|
54
|
+
2. Or directly from a URL :
|
55
|
+
|
56
|
+
rails <application name> --template=http://gist.github.com/31208.txt
|
57
|
+
|
58
|
+
* Extracted the process scripts (inspector, reaper, spawner) into the plugin irs_process_scripts [David Heinemeier Hansson]
|
59
|
+
|
60
|
+
* Changed Rails.root to return a Pathname object (allows for Rails.root.join('app', 'controllers') => "#{RAILS_ROOT}/app/controllers") #1482 [Damian Janowski/?]
|
61
|
+
|
62
|
+
* Added view path support for engines [David Heinemeier Hansson]
|
63
|
+
|
64
|
+
* Added that config/routes.rb files in engine plugins are automatically loaded (and reloaded when they change in dev mode) [David Heinemeier Hansson]
|
65
|
+
|
66
|
+
* Added app/[models|controllers|helpers] to the load path for plugins that has an app directory (go engines ;)) [David Heinemeier Hansson]
|
67
|
+
|
68
|
+
* Add config.preload_frameworks to load all frameworks at startup. Default to false so Rails autoloads itself as it's used. Turn this on for Passenger and JRuby. Also turned on by config.threadsafe! [Jeremy Kemper]
|
69
|
+
|
70
|
+
* Add a rake task to generate dispatchers : rake rails:generate_dispatchers [Pratik Naik]
|
71
|
+
|
72
|
+
* "rails <app>" will not generate public/dispatch.cgi/fcgi/rb files by default now. Please use "--with-dispatchers" option if you need them. [Yaroslav Markin, Pratik Naik]
|
73
|
+
|
74
|
+
* Added rake rails:update:application_controller to renamed application.rb to application_controller.rb -- included in rake rails:update so upgrading to 2.3 will automatically trigger it #1439 [kastner]
|
75
|
+
|
76
|
+
* Added Rails.backtrace_cleaner as an accessor for the Rails::BacktraceCleaner instance used by the framework to cut down on backtrace noise and config/initializers/backtrace_silencers.rb to add your own (or turn them all off) [David Heinemeier Hansson]
|
77
|
+
|
78
|
+
* Switch from Test::Unit::TestCase to ActiveSupport::TestCase. [Jeremy Kemper]
|
79
|
+
|
80
|
+
* Added config.i18n settings gatherer to config/environment, auto-loading of all locales in config/locales/*.rb,yml, and config/locales/en.yml as a sample locale [David Heinemeier Hansson]
|
81
|
+
|
82
|
+
* BACKWARDS INCOMPATIBLE: Renamed application.rb to application_controller.rb and removed all the special casing that was in place to support the former. You must do this rename in your own application when you upgrade to this version [David Heinemeier Hansson]
|
83
|
+
|
84
|
+
|
85
|
+
*2.2.1 [RC2] (November 14th, 2008)*
|
8
86
|
|
9
87
|
* Fixed plugin generator so that generated unit tests would subclass ActiveSupport::TestCase, also introduced a helper script to reduce the needed require statements #1137 [Mathias Meyer]
|
10
88
|
|
11
|
-
* Update Prototype to 1.6.0.
|
89
|
+
* Update Prototype to 1.6.0.3 [sam]
|
90
|
+
|
91
|
+
|
92
|
+
*2.2.0 [RC1] (October 24th, 2008)*
|
12
93
|
|
13
94
|
* Fixed that sqlite would report "db/development.sqlite3 already exists" whether true or not on db:create #614 [Antonio Cangiano]
|
14
95
|
|
@@ -39,9 +120,9 @@ Version bump.
|
|
39
120
|
|
40
121
|
* Plugins check for the gem init path (rails/init.rb) before the standard plugin init path (init.rb) [Jacek Becela]
|
41
122
|
|
42
|
-
* Changed all generated tests to use the test/do declaration style [
|
123
|
+
* Changed all generated tests to use the test/do declaration style [David Heinemeier Hansson]
|
43
124
|
|
44
|
-
* Wrapped Rails.env in StringInquirer so you can do Rails.env.development? [
|
125
|
+
* Wrapped Rails.env in StringInquirer so you can do Rails.env.development? [David Heinemeier Hansson]
|
45
126
|
|
46
127
|
* Fixed that RailsInfoController wasn't considering all requests local in development mode (Edgard Castro) [#310 state:resolved]
|
47
128
|
|
@@ -56,13 +137,13 @@ Version bump.
|
|
56
137
|
|
57
138
|
* Rails Edge info returns the latest git commit hash [Francesc Esplugas]
|
58
139
|
|
59
|
-
* Added Rails.public_path to control where HTML and assets are expected to be loaded from (defaults to Rails.root + "/public") #11581 [
|
140
|
+
* Added Rails.public_path to control where HTML and assets are expected to be loaded from (defaults to Rails.root + "/public") #11581 [Nick Sieger]
|
60
141
|
|
61
142
|
* rake time:zones:local finds correct base utc offset for zones in the Southern Hemisphere [Geoff Buesing]
|
62
143
|
|
63
|
-
* Don't require rails/gem_builder during rails initialization, it's only needed for the gems:build task. [
|
144
|
+
* Don't require rails/gem_builder during rails initialization, it's only needed for the gems:build task. [Rick Olson]
|
64
145
|
|
65
|
-
* script/performance/profiler compatibility with the ruby-prof >= 0.5.0. Closes #9176. [
|
146
|
+
* script/performance/profiler compatibility with the ruby-prof >= 0.5.0. Closes #9176. [Jonathan del Strother]
|
66
147
|
|
67
148
|
* Flesh out rake gems:unpack to unpack all gems, and add rake gems:build for native extensions. #11513 [ddollar]
|
68
149
|
|
@@ -72,11 +153,11 @@ Version bump.
|
|
72
153
|
rake gems:build # builds all unpacked gems
|
73
154
|
rake gems:build GEM=mygem # builds only the gem 'mygem'
|
74
155
|
|
75
|
-
* Add config.active_support for future configuration options. Also, add more new Rails 3 config settings to new_rails_defaults.rb [
|
156
|
+
* Add config.active_support for future configuration options. Also, add more new Rails 3 config settings to new_rails_defaults.rb [Rick Olson]
|
76
157
|
|
77
|
-
* Add Rails.logger, Rails.root, Rails.env and Rails.cache shortcuts for RAILS_* constants [
|
158
|
+
* Add Rails.logger, Rails.root, Rails.env and Rails.cache shortcuts for RAILS_* constants [Pratik Naik]
|
78
159
|
|
79
|
-
* Allow files in plugins to be reloaded like the rest of the application. [
|
160
|
+
* Allow files in plugins to be reloaded like the rest of the application. [Rick Olson]
|
80
161
|
|
81
162
|
Enables or disables plugin reloading.
|
82
163
|
|
@@ -91,7 +172,7 @@ Version bump.
|
|
91
172
|
|
92
173
|
Dependencies.load_once_paths << lib_path
|
93
174
|
|
94
|
-
* Small tweak to allow plugins to specify gem dependencies. [
|
175
|
+
* Small tweak to allow plugins to specify gem dependencies. [Rick Olson]
|
95
176
|
|
96
177
|
# OLD open_id_authentication plugin init.rb
|
97
178
|
require 'yadis'
|
@@ -106,7 +187,7 @@ Version bump.
|
|
106
187
|
ActionController::Base.send :include, OpenIdAuthentication
|
107
188
|
end
|
108
189
|
|
109
|
-
* Added config.gem for specifying which gems are required by the application, as well as rake tasks for installing and freezing gems. [
|
190
|
+
* Added config.gem for specifying which gems are required by the application, as well as rake tasks for installing and freezing gems. [Rick Olson]
|
110
191
|
|
111
192
|
Rails::Initializer.run do |config|
|
112
193
|
config.gem "bj"
|
@@ -123,23 +204,23 @@ Version bump.
|
|
123
204
|
# Unpack specified gem to vendor/gems/gem_name-x.x.x
|
124
205
|
rake gems:unpack GEM=bj
|
125
206
|
|
126
|
-
* Removed the default .htaccess configuration as there are so many good deployment options now (kept it as an example in README) [
|
207
|
+
* Removed the default .htaccess configuration as there are so many good deployment options now (kept it as an example in README) [David Heinemeier Hansson]
|
127
208
|
|
128
209
|
* config.time_zone accepts TZInfo::Timezone identifiers as well as Rails TimeZone identifiers [Geoff Buesing]
|
129
210
|
|
130
211
|
* Rails::Initializer#initialize_time_zone raises an error if value assigned to config.time_zone is not recognized. Rake time zone tasks only require ActiveSupport instead of entire environment [Geoff Buesing]
|
131
212
|
|
132
|
-
* Stop adding the antiquated test/mocks/* directories and only add them to the path if they're still there for legacy reasons [
|
213
|
+
* Stop adding the antiquated test/mocks/* directories and only add them to the path if they're still there for legacy reasons [David Heinemeier Hansson]
|
133
214
|
|
134
|
-
* Added that gems can now be plugins if they include rails/init.rb #11444 [
|
215
|
+
* Added that gems can now be plugins if they include rails/init.rb #11444 [John Barnette]
|
135
216
|
|
136
|
-
* Added Plugin#about method to programmatically access the about.yml in a plugin #10979 [
|
217
|
+
* Added Plugin#about method to programmatically access the about.yml in a plugin #10979 [James Adam]
|
137
218
|
|
138
219
|
plugin = Rails::Plugin.new(path_to_my_plugin)
|
139
220
|
plugin.about["author"] # => "James Adam"
|
140
221
|
plugin.about["url"] # => "http://interblah.net"
|
141
222
|
|
142
|
-
* Improve documentation. [
|
223
|
+
* Improve documentation. [Ryan Bigg, Jan De Poorter, Cheah Chu Yeow, Xavier Shay, Jack Danger Canty, Emilio Tagua, Xavier Noria, Sunny Ripert]
|
143
224
|
|
144
225
|
* Added config.time_zone = 'UTC' in the default environment.rb [Geoff Buesing]
|
145
226
|
|
@@ -147,7 +228,7 @@ Version bump.
|
|
147
228
|
|
148
229
|
* Add config.time_zone for configuring the default Time.zone value. #10982 [Geoff Buesing]
|
149
230
|
|
150
|
-
* Added support for installing plugins hosted at git repositories #11294 [
|
231
|
+
* Added support for installing plugins hosted at git repositories #11294 [Jack Danger Canty]
|
151
232
|
|
152
233
|
* Fixed that script/generate would not look for plugin generators in plugin_paths #11000 [glv]
|
153
234
|
|
@@ -155,7 +236,7 @@ Version bump.
|
|
155
236
|
|
156
237
|
* Added a -e/--export to script/plugin install, uses svn export. #10847 [jon@blankpad.net)]
|
157
238
|
|
158
|
-
* Reshuffle load order so that routes and observers are initialized after plugins and app initializers. Closes #10980 [
|
239
|
+
* Reshuffle load order so that routes and observers are initialized after plugins and app initializers. Closes #10980 [Rick Olson]
|
159
240
|
|
160
241
|
* Git support for script/generate. #10690 [ssoroka]
|
161
242
|
|
@@ -163,7 +244,7 @@ Version bump.
|
|
163
244
|
|
164
245
|
* Resurrect WordNet synonym lookups. #10710 [tom./, matt]
|
165
246
|
|
166
|
-
* Added config.cache_store to environment options to control the default cache store (default is FileStore if tmp/cache is present, otherwise MemoryStore is used) [
|
247
|
+
* Added config.cache_store to environment options to control the default cache store (default is FileStore if tmp/cache is present, otherwise MemoryStore is used) [David Heinemeier Hansson]
|
167
248
|
|
168
249
|
* Added that rails:update is run when you do rails:freeze:edge to ensure you also get the latest JS and config files #10565 [jeff]
|
169
250
|
|
@@ -176,9 +257,9 @@ Version bump.
|
|
176
257
|
|
177
258
|
*2.0.2* (December 16th, 2007)
|
178
259
|
|
179
|
-
* Changed the default database from mysql to sqlite3, so now running "rails myapp" will have a config/database.yml that's setup for SQLite3 (which in OS X Leopard is installed by default, so is the gem, so everything Just Works with no database configuration at all). To get a Rails application preconfigured for MySQL, just run "rails -d mysql myapp" [
|
260
|
+
* Changed the default database from mysql to sqlite3, so now running "rails myapp" will have a config/database.yml that's setup for SQLite3 (which in OS X Leopard is installed by default, so is the gem, so everything Just Works with no database configuration at all). To get a Rails application preconfigured for MySQL, just run "rails -d mysql myapp" [David Heinemeier Hansson]
|
180
261
|
|
181
|
-
* Turned on ActionView::Base.cache_template_loading by default in config/environments/production.rb to prevent file system stat calls for every template loading to see if it changed (this means that you have to restart the application to see template changes in production mode) [
|
262
|
+
* Turned on ActionView::Base.cache_template_loading by default in config/environments/production.rb to prevent file system stat calls for every template loading to see if it changed (this means that you have to restart the application to see template changes in production mode) [David Heinemeier Hansson]
|
182
263
|
|
183
264
|
* Introduce `rake secret` to output a crytographically secure secret key for use with cookie sessions #10363 [revans]
|
184
265
|
|
@@ -202,19 +283,19 @@ Version bump.
|
|
202
283
|
|
203
284
|
* The test task stops with a warning if you have pending migrations. #10377 [Josh Knowles]
|
204
285
|
|
205
|
-
* Add warning to documentation about using transactional fixtures when the code under test uses transactions itself. Closes #7548 [
|
286
|
+
* Add warning to documentation about using transactional fixtures when the code under test uses transactions itself. Closes #7548 [Thijs van der Vossen]
|
206
287
|
|
207
288
|
* Update Prototype to 1.6.0.1. [sam]
|
208
289
|
|
209
290
|
* Update script.aculo.us to 1.8.0.1. [madrobby]
|
210
291
|
|
211
|
-
* Added db:fixtures:identity as a way of locating what ID a foxy fixture was assigned #10332 [
|
292
|
+
* Added db:fixtures:identity as a way of locating what ID a foxy fixture was assigned #10332 [John Barnette]
|
212
293
|
|
213
|
-
* Generated fixtures should not specify ids since theyre expected to be foxy fixtures #10330 [
|
294
|
+
* Generated fixtures should not specify ids since theyre expected to be foxy fixtures #10330 [John Barnette]
|
214
295
|
|
215
296
|
* Update to Prototype -r8232. [sam]
|
216
297
|
|
217
|
-
* Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai]
|
298
|
+
* Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai (Phusion)]
|
218
299
|
|
219
300
|
* RAILS_GEM_VERSION may be set to any valid gem version specifier. #10057 [Chad Woolley, Cheah Chu Yeow]
|
220
301
|
|
@@ -224,11 +305,11 @@ Version bump.
|
|
224
305
|
|
225
306
|
* Only load ActionMailer::TestCase if ActionMailer is loaded. Closes #10137 [defunkt]
|
226
307
|
|
227
|
-
* Fixed that db:reset would use migrations instead of loading db/schema.rb [
|
308
|
+
* Fixed that db:reset would use migrations instead of loading db/schema.rb [David Heinemeier Hansson]
|
228
309
|
|
229
310
|
* Ensure the plugin loader only loads plugins once. Closes #10102 [haruki_zaemon]
|
230
311
|
|
231
|
-
* Refactor Plugin Loader. Add plugin lib paths early, and add lots of tests. Closes #9795 [
|
312
|
+
* Refactor Plugin Loader. Add plugin lib paths early, and add lots of tests. Closes #9795 [James Adam]
|
232
313
|
|
233
314
|
* Added --skip-timestamps to generators that produce models #10036 [Tim Pope]
|
234
315
|
|
@@ -242,7 +323,7 @@ Version bump.
|
|
242
323
|
|
243
324
|
* config/boot.rb correctly detects RAILS_GEM_VERSION. #9834 [alexch, thewoolleyman]
|
244
325
|
|
245
|
-
* Fixed incorrect migration number if script/generate executed outside of Rails root #7080 [
|
326
|
+
* Fixed incorrect migration number if script/generate executed outside of Rails root #7080 [Jeremy McAnally]
|
246
327
|
|
247
328
|
* Update Prototype to 1.6.0_rc1 and script.aculo.us to 1.8.0 preview 0. [sam, madrobby]
|
248
329
|
|
@@ -255,7 +336,7 @@ Version bump.
|
|
255
336
|
* db:create works with remote databases whereas db:create:all only creates
|
256
337
|
databases on localhost. #9753 [Trevor Wennblom]
|
257
338
|
|
258
|
-
* Removed calls to fixtures in generated tests as fixtures :all is now present by default in test_helper.rb [
|
339
|
+
* Removed calls to fixtures in generated tests as fixtures :all is now present by default in test_helper.rb [David Heinemeier Hansson]
|
259
340
|
|
260
341
|
* Add --prefix option to script/server when using mongrel. [dacat]
|
261
342
|
|
@@ -264,13 +345,13 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
264
345
|
|
265
346
|
* Fixed that installing plugins from SVN repositories that use trunk/ will work #8188 [evan]
|
266
347
|
|
267
|
-
* Moved the SourceAnnotationExtractor to a separate file in case libraries try to load the rails rake tasks twice. [Rick]
|
348
|
+
* Moved the SourceAnnotationExtractor to a separate file in case libraries try to load the rails rake tasks twice. [Rick Olson]
|
268
349
|
|
269
350
|
* Moved Dispatcher to ActionController::Dispatcher. [Jeremy Kemper]
|
270
351
|
|
271
|
-
* Changed the default logger from Ruby's own Logger with the clean_logger extensions to ActiveSupport::BufferedLogger for performance reasons [
|
352
|
+
* Changed the default logger from Ruby's own Logger with the clean_logger extensions to ActiveSupport::BufferedLogger for performance reasons [David Heinemeier Hansson]. (You can change it back with config.logger = Logger.new("/path/to/log", level).)
|
272
353
|
|
273
|
-
* Added a default 422.html page to be rendered when ActiveRecord::RecordInvalid, ActiveRecord::RecordNotSaved, or ActionController::InvalidAuthenticityToken is raised [
|
354
|
+
* Added a default 422.html page to be rendered when ActiveRecord::RecordInvalid, ActiveRecord::RecordNotSaved, or ActionController::InvalidAuthenticityToken is raised [David Heinemeier Hansson]
|
274
355
|
|
275
356
|
* Added --skip-fixture option to script/generate model #6862 [sandofsky]
|
276
357
|
|
@@ -278,15 +359,15 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
278
359
|
|
279
360
|
* Fixed the placement of fixture files for nested models when generating through script/generate model #7547 [jkit]
|
280
361
|
|
281
|
-
* Added TEMPLATE option to rake doc:app to set a custom output template #7737 [Jakob
|
362
|
+
* Added TEMPLATE option to rake doc:app to set a custom output template #7737 [Jakob Skjerning]
|
282
363
|
|
283
|
-
* Added VERBOSE option to rake db:migrate to turn off output #8204 [
|
364
|
+
* Added VERBOSE option to rake db:migrate to turn off output #8204 [John Barnette]
|
284
365
|
|
285
366
|
* Fixed that rake doc:app should use UTF-8 #8906 [farzy]
|
286
367
|
|
287
368
|
* Fixes rake annotations to search erb and builder files as well #9150 [m.langenberg]
|
288
369
|
|
289
|
-
* Removed web_service generator [
|
370
|
+
* Removed web_service generator [Michael Koziarski]
|
290
371
|
|
291
372
|
* Added the :all option to config.plugins that'll include the rest of the plugins not already explicitly named #9613 [Frederick Cheung]. Example:
|
292
373
|
|
@@ -295,11 +376,11 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
295
376
|
|
296
377
|
* Added symbols as a legal way of specifying plugins in config.plugins #9629 [tom]
|
297
378
|
|
298
|
-
* Removed deprecated task names, like clear_logs, in favor of the new namespaced style [
|
379
|
+
* Removed deprecated task names, like clear_logs, in favor of the new namespaced style [David Heinemeier Hansson]
|
299
380
|
|
300
|
-
* Support multiple config.after_initialize blocks so plugins and apps can more easily cooperate. #9582 [
|
381
|
+
* Support multiple config.after_initialize blocks so plugins and apps can more easily cooperate. #9582 [Zach Dennis]
|
301
382
|
|
302
|
-
* Added db:drop:all to drop all databases declared in config/database.yml [
|
383
|
+
* Added db:drop:all to drop all databases declared in config/database.yml [David Heinemeier Hansson]
|
303
384
|
|
304
385
|
* Use attribute pairs instead of the migration name to create add and remove column migrations. Closes #9166 [Pratik Naik]
|
305
386
|
|
@@ -311,11 +392,11 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
311
392
|
|
312
393
|
ruby script/generation migration RemoveSomeStuffFromCustomers first_name:string last_name:string
|
313
394
|
|
314
|
-
* Add ActiveResource to Rails::Info. Closes #8741 [
|
395
|
+
* Add ActiveResource to Rails::Info. Closes #8741 [Chris Kampmeier]
|
315
396
|
|
316
397
|
* use Gem.find_name instead of search when freezing gems. Prevent false positives for other gems with rails in the name. Closes #8729 [wselman]
|
317
398
|
|
318
|
-
* Automatically generate add/remove column commands in specially named migrations like AddLocationToEvent. Closes #9006 [
|
399
|
+
* Automatically generate add/remove column commands in specially named migrations like AddLocationToEvent. Closes #9006 [Ryan Davis]
|
319
400
|
|
320
401
|
* Default to plural table name in Rails Generator if ActiveRecord is not present. Closes #8963 [evan]
|
321
402
|
|
@@ -333,7 +414,7 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
333
414
|
|
334
415
|
* Fix that FCGIs would leave log files open when asked to shut down by USR2. #3028 [Sebastian Kanthak, Josh Peek]
|
335
416
|
|
336
|
-
* Fixed that dispatcher preparation callbacks only run once in production mode. Mock Routes.reload so that dispatcher preparation callback tests run. [Rick]
|
417
|
+
* Fixed that dispatcher preparation callbacks only run once in production mode. Mock Routes.reload so that dispatcher preparation callback tests run. [Rick Olson]
|
337
418
|
|
338
419
|
* Fix syntax error in dispatcher than wrecked failsafe responses. #8625 [mtitorenko]
|
339
420
|
|
@@ -361,11 +442,11 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
361
442
|
|
362
443
|
* Generators use *.html.erb view template naming. #8278 [Tim Pope]
|
363
444
|
|
364
|
-
* Updated resource_scaffold and model generators to use short-hand style migrations [
|
445
|
+
* Updated resource_scaffold and model generators to use short-hand style migrations [David Heinemeier Hansson]
|
365
446
|
|
366
447
|
* Updated initializer to only load #{RAILS_ENV}.rb once. Added deprecation warning for config.breakpoint_server. [Nicholas Seckar]
|
367
448
|
|
368
|
-
* Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug by Kent Sibilev since the breakpointer has been broken since Ruby 1.8.4 and will not be coming back [
|
449
|
+
* Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug by Kent Sibilev since the breakpointer has been broken since Ruby 1.8.4 and will not be coming back [David Heinemeier Hansson]
|
369
450
|
|
370
451
|
To use the new debugger, start your server with script/server --debugger and insert a call to 'debugger'
|
371
452
|
(instead of 'breakpoint') where you want to jump into the debugger.
|
@@ -383,13 +464,13 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
383
464
|
|
384
465
|
* Include Active Resource in rails:freeze:edge rake task. [Thomas Fuchs]
|
385
466
|
|
386
|
-
* Include Active Resource instead of Action Web Service [
|
467
|
+
* Include Active Resource instead of Action Web Service [David Heinemeier Hansson] You can add AWS back with this in config/environment.rb:
|
387
468
|
|
388
469
|
config.load_paths += %W( #{RAILS_ROOT}/vendor/rails/actionwebservice/lib )
|
389
470
|
|
390
471
|
...or just gem 'actionwebservice'
|
391
472
|
|
392
|
-
* Give generate scaffold a more descriptive database message. Closes #7316 [
|
473
|
+
* Give generate scaffold a more descriptive database message. Closes #7316 [Jeremy McAnally]
|
393
474
|
|
394
475
|
* Canonicalize RAILS_ROOT by using File.expand_path on Windows, which doesn't have to worry about symlinks, and Pathname#realpath elsewhere, which respects symlinks in relative paths but is incompatible with Windows. #6755 [Jeremy Kemper, trevor]
|
395
476
|
|
@@ -403,19 +484,19 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
403
484
|
|
404
485
|
* Split plugin location and loading out of the initializer and into a new Plugin namespace, which includes Plugin::Locater and Plugin::Loader. The loader class that is used can be customized using the config.plugin_loader option. Those monkey patching the plugin loading subsystem take note, the internals changing here will likely break your modifications. The good news is that it should be substantially easier to hook into the plugin locating and loading process now. [Marcel Molina Jr.]
|
405
486
|
|
406
|
-
* Added assumption that all plugin creators desire to be sharing individuals and release their work under the MIT license [
|
487
|
+
* Added assumption that all plugin creators desire to be sharing individuals and release their work under the MIT license [David Heinemeier Hansson]
|
407
488
|
|
408
489
|
* Added source-annotations extractor tasks to rake [Jamis Buck]. This allows you to add FIXME, OPTIMIZE, and TODO comments to your source code that can then be extracted in concert with rake notes (shows all), rake notes:fixme, rake notes:optimize and rake notes:todo.
|
409
490
|
|
410
|
-
* Added fixtures :all to test_helper.rb to assume that most people just want all their fixtures loaded all the time [
|
491
|
+
* Added fixtures :all to test_helper.rb to assume that most people just want all their fixtures loaded all the time [David Heinemeier Hansson]
|
411
492
|
|
412
|
-
* Added config/initializers where all ruby files within it are automatically loaded after the Rails configuration is done, so you don't have to litter the environment.rb file with a ton of mixed stuff [
|
493
|
+
* Added config/initializers where all ruby files within it are automatically loaded after the Rails configuration is done, so you don't have to litter the environment.rb file with a ton of mixed stuff [David Heinemeier Hansson]
|
413
494
|
|
414
495
|
* For new apps, generate a random secret for the cookie-based session store. [Jeremy Kemper]
|
415
496
|
|
416
|
-
* Stop swallowing errors during rake test [
|
497
|
+
* Stop swallowing errors during rake test [Michael Koziarski]
|
417
498
|
|
418
|
-
* Update Rails Initializer to use ActionController::Base#view_paths [Rick]
|
499
|
+
* Update Rails Initializer to use ActionController::Base#view_paths [Rick Olson]
|
419
500
|
|
420
501
|
* Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [Chad Fowler]
|
421
502
|
|
@@ -433,12 +514,12 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
433
514
|
|
434
515
|
* Fixed that webrick would strip leading newlines and hang connection #4156 [psross]
|
435
516
|
|
436
|
-
* Ensure plugins are in the Dependencies.load_once_paths collection by default. [Rick]
|
517
|
+
* Ensure plugins are in the Dependencies.load_once_paths collection by default. [Rick Olson]
|
437
518
|
If you really want your plugins to reload, add this to the very top of init.rb:
|
438
519
|
|
439
520
|
Dependencies.load_once_paths.delete(lib_path)
|
440
521
|
|
441
|
-
* Allow config.to_prepare to work, make the dispatcher safe to 're require'. [
|
522
|
+
* Allow config.to_prepare to work, make the dispatcher safe to 're require'. [Michael Koziarski, Nicholas Seckar]
|
442
523
|
|
443
524
|
* Fix scaffold_resource generator so it respects the --pretend argument when creating the routes file. Closes #6852 [fearoffish]
|
444
525
|
|
@@ -448,25 +529,25 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
448
529
|
|
449
530
|
* Don't generate a components directory in new Rails apps. [Jeremy Kemper]
|
450
531
|
|
451
|
-
* Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [
|
532
|
+
* Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [David Heinemeier Hansson]
|
452
533
|
|
453
|
-
* Added one-letter aliases for the three default environments to script/console, so script/console p will load the production environment (t for test, d for development) [
|
534
|
+
* Added one-letter aliases for the three default environments to script/console, so script/console p will load the production environment (t for test, d for development) [David Heinemeier Hansson]
|
454
535
|
|
455
|
-
* Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [
|
536
|
+
* Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [David Heinemeier Hansson]
|
456
537
|
|
457
538
|
* Update initializer to load Rails::VERSION as soon as possible. Closes #6698. [Nicholas Seckar]
|
458
539
|
|
459
|
-
* Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [
|
540
|
+
* Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [David Heinemeier Hansson]
|
460
541
|
|
461
|
-
* Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [
|
542
|
+
* Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [David Heinemeier Hansson]
|
462
543
|
|
463
544
|
* Update to Prototype and script.aculo.us [5579]. [Thomas Fuchs]
|
464
545
|
|
465
|
-
* Made script/server work with -e and -d when using Mongrel [
|
546
|
+
* Made script/server work with -e and -d when using Mongrel [David Heinemeier Hansson]
|
466
547
|
|
467
548
|
* Update to Prototype 1.5.0_rc2 [5550] which makes it work in Opera again [Thomas Fuchs]
|
468
549
|
|
469
|
-
* Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias
|
550
|
+
* Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias Lütke]
|
470
551
|
|
471
552
|
* Rails::VERSION::STRING should always be available without having to require 'rails/version'. #6244 [fearoffish]
|
472
553
|
|
@@ -490,31 +571,31 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
490
571
|
|
491
572
|
* resource and scaffold_resource generators add a restful route to config/routes.rb [Jeremy Kemper]
|
492
573
|
|
493
|
-
* Revert environment changes for autoload_paths. [
|
574
|
+
* Revert environment changes for autoload_paths. [Michael Koziarski]
|
494
575
|
|
495
576
|
* Update to latest Prototype, which doesn't serialize disabled form elements, adds clone() to arrays, empty/non-string Element.update() and adds a fixes excessive error reporting in WebKit beta versions [Thomas Fuchs]
|
496
577
|
|
497
|
-
* Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [
|
578
|
+
* Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [Michael Koziarski]
|
498
579
|
|
499
|
-
* Added option to script/process/spawner of specifying the binding address #5133 [
|
580
|
+
* Added option to script/process/spawner of specifying the binding address #5133 [Dee Zsombor]
|
500
581
|
|
501
582
|
* Update environment.rb comments to include config.autoload_paths. Closes #6478 [caio]
|
502
583
|
|
503
|
-
* Update scaffold to use new form_tag block functionality. Closes #6480. [
|
584
|
+
* Update scaffold to use new form_tag block functionality. Closes #6480. [Bob Silva]
|
504
585
|
|
505
586
|
* Plugin generator: check for class collisions. #4833 [vinbarnes@gmail.com]
|
506
587
|
|
507
588
|
* Mailer generator: handle mailers in modules, set mime_version in unit test. [Jeremy Kemper]
|
508
589
|
|
509
|
-
* Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [
|
590
|
+
* Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [Michael Koziarski]
|
510
591
|
|
511
|
-
* Added config.plugins to control which plugins are loaded #6269 [
|
592
|
+
* Added config.plugins to control which plugins are loaded #6269 [Stefan Kaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded. Example:
|
512
593
|
|
513
594
|
config.plugins = %w[ routing_navigator simply_helpful ]
|
514
595
|
|
515
596
|
* Clean up html on included error pages. [Tim Lucas]
|
516
597
|
|
517
|
-
* Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [
|
598
|
+
* Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [David Heinemeier Hansson]
|
518
599
|
|
519
600
|
* Update to latest Prototype and script.aculo.us trunk versions [Thomas Fuchs]
|
520
601
|
|
@@ -522,17 +603,17 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
522
603
|
|
523
604
|
* Fixed test:uncommitted on Windows (backslash issue) #4999 [paul@paulbutcher.com]
|
524
605
|
|
525
|
-
* Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [
|
606
|
+
* Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [Bob Silva]
|
526
607
|
|
527
608
|
* Fixed rename_table on SQLite tables with indexes defined #5942 [brandon@opensoul.org]
|
528
609
|
|
529
|
-
* Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [
|
610
|
+
* Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [David Heinemeier Hansson]
|
530
611
|
|
531
|
-
* Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [
|
612
|
+
* Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [David Heinemeier Hansson]. Examples:
|
532
613
|
|
533
614
|
./script/generate model post title:string created_on:date body:text published:boolean
|
534
615
|
|
535
|
-
* Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [
|
616
|
+
* Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [David Heinemeier Hansson]
|
536
617
|
|
537
618
|
* script/runner can run files, pass on arguments, and be used as a shebang. #6286 [Tuxie, dlpond]
|
538
619
|
#!/usr/bin/env /path/to/my/app/script/runner
|
@@ -541,7 +622,7 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
541
622
|
|
542
623
|
* Look for rake tasks in plugin subdirs. #6259 [obrie]
|
543
624
|
|
544
|
-
* Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [
|
625
|
+
* Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [David Heinemeier Hansson]
|
545
626
|
|
546
627
|
* Updated prototype.js to 1.5.0_rc1 with latest fixes. [Rick Olson]
|
547
628
|
|
@@ -553,7 +634,7 @@ databases on localhost. #9753 [Trevor Wennblom]
|
|
553
634
|
|
554
635
|
* script/server creates the tmp/pids directory. #6204 [jonathan]
|
555
636
|
|
556
|
-
* Fix script/console --sandbox for internal transactions changes. #5738 [
|
637
|
+
* Fix script/console --sandbox for internal transactions changes. #5738 [Chris McGrath, charles.gerungan@gmail.com]
|
557
638
|
|
558
639
|
* Remove the uncanny default of adding all app/models/*/ directories to the load path. This change will break application which expect the current behavior. As
|
559
640
|
documented in initializer.rb, the workaround is:
|
@@ -566,7 +647,7 @@ References #6031. [Nicholas Seckar]
|
|
566
647
|
|
567
648
|
* Update to Prototype 1.5.0_rc1 [sam]
|
568
649
|
|
569
|
-
* Formally Deprecate the old rake tasks. [
|
650
|
+
* Formally Deprecate the old rake tasks. [Michael Koziarski]
|
570
651
|
|
571
652
|
* Thoroughly test the FCGI dispatcher. #5970 [Kevin Clark]
|
572
653
|
|
@@ -599,7 +680,7 @@ References #6031. [Nicholas Seckar]
|
|
599
680
|
|
600
681
|
* Fix Dispatcher.reset_application! so that AR subclasses are removed and Observers re-initialized *after* Reloadable classes are removed. Closes #5743. [Rick Olson]
|
601
682
|
|
602
|
-
* Clarify usage of script/plugin source. Closes #5344. [
|
683
|
+
* Clarify usage of script/plugin source. Closes #5344. [James Adam]
|
603
684
|
|
604
685
|
* Add Dispatcher.to_prepare and config.to_prepare to provide a pre-request hook. [Nicholas Seckar]
|
605
686
|
|
@@ -607,7 +688,7 @@ References #6031. [Nicholas Seckar]
|
|
607
688
|
|
608
689
|
* Added that you can change the web server port in config/lighttpd.conf from script/server --port/-p #5465 [mats@imediatec.co.uk]
|
609
690
|
|
610
|
-
* script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer. #5679 [
|
691
|
+
* script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer. #5679 [Shugo Maeda]
|
611
692
|
|
612
693
|
* Fixed the failsafe response so it uses either the current recognized controller or ApplicationController. [Rick Olson]
|
613
694
|
|
@@ -621,7 +702,7 @@ References #6031. [Nicholas Seckar]
|
|
621
702
|
|
622
703
|
* Ensure the logger is initialized. #5629 [mike@clarkware.com]
|
623
704
|
|
624
|
-
* Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [
|
705
|
+
* Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [David Heinemeier Hansson]. Examples:
|
625
706
|
|
626
707
|
spawner # starts instances on 8000, 8001, and 8002 using Mongrel if available
|
627
708
|
spawner fcgi # starts instances on 8000, 8001, and 8002 using FCGI
|
@@ -664,15 +745,15 @@ References #6031. [Nicholas Seckar]
|
|
664
745
|
|
665
746
|
* Mongrel: script/server works on Win32. #5499 [jeremydurham@gmail.com]
|
666
747
|
|
667
|
-
* Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [
|
748
|
+
* Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [Nick Sieger]
|
668
749
|
|
669
750
|
* Mongrel support for script/server. #5475 [jeremydurham@gmail.com]
|
670
751
|
|
671
|
-
* Fix script/plugin so it doesn't barf on invalid URLs [Rick]
|
752
|
+
* Fix script/plugin so it doesn't barf on invalid URLs [Rick Olson]
|
672
753
|
|
673
754
|
* Fix plugin install bug at dir with space. (closes #5359) [Yoshimasa NIWA]
|
674
755
|
|
675
|
-
* Fix bug with 'script/plugin install' so it reports unknown plugin names correctly. [Rick]
|
756
|
+
* Fix bug with 'script/plugin install' so it reports unknown plugin names correctly. [Rick Olson]
|
676
757
|
|
677
758
|
* Added uninstall.rb hook to plugin handling, such that plugins have a way of removing assets and other artifacts on removal #5003 [takiuchi@drecom.co.jp]
|
678
759
|
|
@@ -682,11 +763,11 @@ References #6031. [Nicholas Seckar]
|
|
682
763
|
|
683
764
|
* Make "script/plugin install" work with svn+ssh URLs. [Sam Stephenson]
|
684
765
|
|
685
|
-
* Added lib/ to the directories that will get application docs generated [
|
766
|
+
* Added lib/ to the directories that will get application docs generated [David Heinemeier Hansson]
|
686
767
|
|
687
|
-
* Add observer generator. Closes #5167. [
|
768
|
+
* Add observer generator. Closes #5167. [François Beausoleil]
|
688
769
|
|
689
|
-
* Session migration generator obeys pluralize_table_names. #5145 [
|
770
|
+
* Session migration generator obeys pluralize_table_names. #5145 [James Adam]
|
690
771
|
|
691
772
|
* rake test:recent understands subdirectories. #2925 [jerrett@bravenet.com]
|
692
773
|
|
@@ -694,17 +775,17 @@ References #6031. [Nicholas Seckar]
|
|
694
775
|
|
695
776
|
* The app generator sets a session key in application.rb so apps running on the same host may distinguish their cookies. #2967 [rcoder, rails-bug@owl.me.uk]
|
696
777
|
|
697
|
-
* Distinguish the spawners for different processes [
|
778
|
+
* Distinguish the spawners for different processes [David Heinemeier Hansson]
|
698
779
|
|
699
|
-
* Added -n/--process to script/process/spawner name the process pid (default is dispatch) [
|
780
|
+
* Added -n/--process to script/process/spawner name the process pid (default is dispatch) [David Heinemeier Hansson]
|
700
781
|
|
701
782
|
* Namespaced OrderedHash so the Rails implementation does not clash with any others. (fixes #4911) [Julian Tarkhanov]
|
702
783
|
|
703
784
|
* Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
|
704
785
|
|
705
|
-
* Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [
|
786
|
+
* Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [David Heinemeier Hansson]
|
706
787
|
|
707
|
-
* Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [
|
788
|
+
* Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [David Heinemeier Hansson]
|
708
789
|
|
709
790
|
|
710
791
|
*1.2.3* (March 12th, 2007)
|
@@ -713,14 +794,14 @@ References #6031. [Nicholas Seckar]
|
|
713
794
|
|
714
795
|
* Windows: include MinGW in RUBY_PLATFORM check. #2982 [okkez000@gmail.com, Kaspar Schiess]
|
715
796
|
|
716
|
-
* Stop swallowing errors during rake test [
|
797
|
+
* Stop swallowing errors during rake test [Michael Koziarski]
|
717
798
|
|
718
799
|
|
719
800
|
*1.2.2* (February 5th, 2007)
|
720
801
|
|
721
802
|
* Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [Chad Fowler]
|
722
803
|
|
723
|
-
* Require the dispatcher for Rails::Configuration#to_prepare. [Rick]
|
804
|
+
* Require the dispatcher for Rails::Configuration#to_prepare. [Rick Olson]
|
724
805
|
|
725
806
|
|
726
807
|
*1.2.1* (January 16th, 2007)
|
@@ -736,7 +817,7 @@ References #6031. [Nicholas Seckar]
|
|
736
817
|
|
737
818
|
* Fixed that webrick would strip leading newlines and hang connection #4156 [psross]
|
738
819
|
|
739
|
-
* Ensure plugins are in the Dependencies.load_once_paths collection by default. [Rick]
|
820
|
+
* Ensure plugins are in the Dependencies.load_once_paths collection by default. [Rick Olson]
|
740
821
|
If you really want your plugins to reload, add this to the very top of init.rb:
|
741
822
|
|
742
823
|
Dependencies.load_once_paths.delete(lib_path)
|
@@ -749,23 +830,23 @@ References #6031. [Nicholas Seckar]
|
|
749
830
|
|
750
831
|
* Don't generate a components directory in new Rails apps. [Jeremy Kemper]
|
751
832
|
|
752
|
-
* Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [
|
833
|
+
* Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [David Heinemeier Hansson]
|
753
834
|
|
754
|
-
* Deprecated the name route "root" as it'll be used as a shortcut for map.connect '' in Rails 2.0 [
|
835
|
+
* Deprecated the name route "root" as it'll be used as a shortcut for map.connect '' in Rails 2.0 [David Heinemeier Hansson]
|
755
836
|
|
756
|
-
* Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [
|
837
|
+
* Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [David Heinemeier Hansson]
|
757
838
|
|
758
839
|
* Update initializer to load Rails::VERSION as soon as possible. Closes #6698. [Nicholas Seckar]
|
759
840
|
|
760
|
-
* Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [
|
841
|
+
* Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [David Heinemeier Hansson]
|
761
842
|
|
762
|
-
* Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [
|
843
|
+
* Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [David Heinemeier Hansson]
|
763
844
|
|
764
845
|
* Update to Prototype and script.aculo.us [5579]. [Sam Stephenson, Thomas Fuchs]
|
765
846
|
|
766
|
-
* Made script/server work with -e and -d when using Mongrel [
|
847
|
+
* Made script/server work with -e and -d when using Mongrel [David Heinemeier Hansson]
|
767
848
|
|
768
|
-
* Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias
|
849
|
+
* Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias Lütke]
|
769
850
|
|
770
851
|
* Rails::VERSION::STRING should always be available without having to require 'rails/version'. #6244 [fearoffish]
|
771
852
|
|
@@ -785,29 +866,29 @@ References #6031. [Nicholas Seckar]
|
|
785
866
|
|
786
867
|
* resource and scaffold_resource generators add a restful route to config/routes.rb [Jeremy Kemper]
|
787
868
|
|
788
|
-
* Revert environment changes for autoload_paths. [
|
869
|
+
* Revert environment changes for autoload_paths. [Michael Koziarski]
|
789
870
|
|
790
|
-
* Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [
|
871
|
+
* Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [Michael Koziarski]
|
791
872
|
|
792
|
-
* Added option to script/process/spawner of specifying the binding address #5133 [
|
873
|
+
* Added option to script/process/spawner of specifying the binding address #5133 [Dee Zsombor]
|
793
874
|
|
794
875
|
* Update environment.rb comments to include config.autoload_paths. Closes #6478 [caio]
|
795
876
|
|
796
|
-
* Update scaffold to use new form_tag block functionality. Closes #6480. [
|
877
|
+
* Update scaffold to use new form_tag block functionality. Closes #6480. [Bob Silva]
|
797
878
|
|
798
879
|
* Plugin generator: check for class collisions. #4833 [vinbarnes@gmail.com]
|
799
880
|
|
800
881
|
* Mailer generator: handle mailers in modules, set mime_version in unit test. [Jeremy Kemper]
|
801
882
|
|
802
|
-
* Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [
|
883
|
+
* Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [Michael Koziarski]
|
803
884
|
|
804
|
-
* Added config.plugins to control which plugins are loaded #6269 [
|
885
|
+
* Added config.plugins to control which plugins are loaded #6269 [Stefan Kaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded. Example:
|
805
886
|
|
806
887
|
config.plugins = %w[ routing_navigator simply_helpful ]
|
807
888
|
|
808
889
|
* Clean up html on included error pages. [Tim Lucas]
|
809
890
|
|
810
|
-
* Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [
|
891
|
+
* Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [David Heinemeier Hansson]
|
811
892
|
|
812
893
|
* Update to latest Prototype and script.aculo.us trunk versions [Thomas Fuchs]
|
813
894
|
|
@@ -815,17 +896,17 @@ References #6031. [Nicholas Seckar]
|
|
815
896
|
|
816
897
|
* Fixed test:uncommitted on Windows (backslash issue) #4999 [paul@paulbutcher.com]
|
817
898
|
|
818
|
-
* Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [
|
899
|
+
* Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [Bob Silva]
|
819
900
|
|
820
901
|
* Fixed rename_table on SQLite tables with indexes defined #5942 [brandon@opensoul.org]
|
821
902
|
|
822
|
-
* Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [
|
903
|
+
* Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [David Heinemeier Hansson]
|
823
904
|
|
824
|
-
* Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [
|
905
|
+
* Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [David Heinemeier Hansson]. Examples:
|
825
906
|
|
826
907
|
./script/generate model post title:string created_on:date body:text published:boolean
|
827
908
|
|
828
|
-
* Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [
|
909
|
+
* Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [David Heinemeier Hansson]
|
829
910
|
|
830
911
|
* script/runner can run files, pass on arguments, and be used as a shebang. #6286 [Tuxie, dlpond]
|
831
912
|
#!/usr/bin/env /path/to/my/app/script/runner
|
@@ -834,13 +915,13 @@ References #6031. [Nicholas Seckar]
|
|
834
915
|
|
835
916
|
* Look for rake tasks in plugin subdirs. #6259 [obrie]
|
836
917
|
|
837
|
-
* Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [
|
918
|
+
* Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [David Heinemeier Hansson]
|
838
919
|
|
839
920
|
* session_migration generator adds an index on updated_at. #6207 [grg]
|
840
921
|
|
841
922
|
* script/server creates the tmp/pids directory. #6204 [jonathan]
|
842
923
|
|
843
|
-
* Fix script/console --sandbox for internal transactions changes. #5738 [
|
924
|
+
* Fix script/console --sandbox for internal transactions changes. #5738 [Chris McGrath, charles.gerungan@gmail.com]
|
844
925
|
|
845
926
|
* Remove the uncanny default of adding all app/models/*/ directories to the load path. This change will break application which expect the current behavior. As
|
846
927
|
documented in initializer.rb, the workaround is:
|
@@ -851,7 +932,7 @@ References #6031. [Nicholas Seckar]
|
|
851
932
|
|
852
933
|
* Update to script.aculo.us 1.6.3 [Thomas Fuchs]
|
853
934
|
|
854
|
-
* Formally Deprecate the old rake tasks. [
|
935
|
+
* Formally Deprecate the old rake tasks. [Michael Koziarski]
|
855
936
|
|
856
937
|
* Thoroughly test the FCGI dispatcher. #5970 [Kevin Clark]
|
857
938
|
|
@@ -882,7 +963,7 @@ References #6031. [Nicholas Seckar]
|
|
882
963
|
|
883
964
|
* Fix Dispatcher.reset_application! so that AR subclasses are removed and Observers re-initialized *after* Reloadable classes are removed. Closes #5743. [Rick Olson]
|
884
965
|
|
885
|
-
* Clarify usage of script/plugin source. Closes #5344. [
|
966
|
+
* Clarify usage of script/plugin source. Closes #5344. [James Adam]
|
886
967
|
|
887
968
|
* Add Dispatcher.to_prepare and config.to_prepare to provide a pre-request hook. [Nicholas Seckar]
|
888
969
|
|
@@ -890,7 +971,7 @@ References #6031. [Nicholas Seckar]
|
|
890
971
|
|
891
972
|
* Added that you can change the web server port in config/lighttpd.conf from script/server --port/-p #5465 [mats@imediatec.co.uk]
|
892
973
|
|
893
|
-
* script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer. #5679 [
|
974
|
+
* script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer. #5679 [Shugo Maeda]
|
894
975
|
|
895
976
|
* Fixed the failsafe response so it uses either the current recognized controller or ApplicationController. [Rick Olson]
|
896
977
|
|
@@ -904,7 +985,7 @@ References #6031. [Nicholas Seckar]
|
|
904
985
|
|
905
986
|
* Ensure the logger is initialized. #5629 [mike@clarkware.com]
|
906
987
|
|
907
|
-
* Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [
|
988
|
+
* Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [David Heinemeier Hansson]. Examples:
|
908
989
|
|
909
990
|
spawner # starts instances on 8000, 8001, and 8002 using Mongrel if available
|
910
991
|
spawner fcgi # starts instances on 8000, 8001, and 8002 using FCGI
|
@@ -947,15 +1028,15 @@ References #6031. [Nicholas Seckar]
|
|
947
1028
|
|
948
1029
|
* Mongrel: script/server works on Win32. #5499 [jeremydurham@gmail.com]
|
949
1030
|
|
950
|
-
* Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [
|
1031
|
+
* Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [Nick Sieger]
|
951
1032
|
|
952
1033
|
* Mongrel support for script/server. #5475 [jeremydurham@gmail.com]
|
953
1034
|
|
954
|
-
* Fix script/plugin so it doesn't barf on invalid URLs [Rick]
|
1035
|
+
* Fix script/plugin so it doesn't barf on invalid URLs [Rick Olson]
|
955
1036
|
|
956
1037
|
* Fix plugin install bug at dir with space. (closes #5359) [Yoshimasa NIWA]
|
957
1038
|
|
958
|
-
* Fix bug with 'script/plugin install' so it reports unknown plugin names correctly. [Rick]
|
1039
|
+
* Fix bug with 'script/plugin install' so it reports unknown plugin names correctly. [Rick Olson]
|
959
1040
|
|
960
1041
|
* Added uninstall.rb hook to plugin handling, such that plugins have a way of removing assets and other artifacts on removal #5003 [takiuchi@drecom.co.jp]
|
961
1042
|
|
@@ -965,11 +1046,11 @@ References #6031. [Nicholas Seckar]
|
|
965
1046
|
|
966
1047
|
* Make "script/plugin install" work with svn+ssh URLs. [Sam Stephenson]
|
967
1048
|
|
968
|
-
* Added lib/ to the directories that will get application docs generated [
|
1049
|
+
* Added lib/ to the directories that will get application docs generated [David Heinemeier Hansson]
|
969
1050
|
|
970
|
-
* Add observer generator. Closes #5167. [
|
1051
|
+
* Add observer generator. Closes #5167. [François Beausoleil]
|
971
1052
|
|
972
|
-
* Session migration generator obeys pluralize_table_names. #5145 [
|
1053
|
+
* Session migration generator obeys pluralize_table_names. #5145 [James Adam]
|
973
1054
|
|
974
1055
|
* rake test:recent understands subdirectories. #2925 [jerrett@bravenet.com]
|
975
1056
|
|
@@ -977,17 +1058,17 @@ References #6031. [Nicholas Seckar]
|
|
977
1058
|
|
978
1059
|
* The app generator sets a session key in application.rb so apps running on the same host may distinguish their cookies. #2967 [rcoder, rails-bug@owl.me.uk]
|
979
1060
|
|
980
|
-
* Distinguish the spawners for different processes [
|
1061
|
+
* Distinguish the spawners for different processes [David Heinemeier Hansson]
|
981
1062
|
|
982
|
-
* Added -n/--process to script/process/spawner name the process pid (default is dispatch) [
|
1063
|
+
* Added -n/--process to script/process/spawner name the process pid (default is dispatch) [David Heinemeier Hansson]
|
983
1064
|
|
984
1065
|
* Namespaced OrderedHash so the Rails implementation does not clash with any others. (fixes #4911) [Julian Tarkhanov]
|
985
1066
|
|
986
1067
|
* Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
|
987
1068
|
|
988
|
-
* Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [
|
1069
|
+
* Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [David Heinemeier Hansson]
|
989
1070
|
|
990
|
-
* Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [
|
1071
|
+
* Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [David Heinemeier Hansson]
|
991
1072
|
|
992
1073
|
|
993
1074
|
*1.1.6* (August 10th, 2006)
|
@@ -1022,9 +1103,9 @@ References #6031. [Nicholas Seckar]
|
|
1022
1103
|
|
1023
1104
|
* Change the scaffolding layout to use yield rather than @content_for_layout. [Marcel Molina Jr.]
|
1024
1105
|
|
1025
|
-
* Added rake rails:update:configs to update config/boot.rb from the latest (also included in rake rails:update) [
|
1106
|
+
* Added rake rails:update:configs to update config/boot.rb from the latest (also included in rake rails:update) [David Heinemeier Hansson]
|
1026
1107
|
|
1027
|
-
* Fixed that boot.rb would set RAILS_GEM_VERSION twice, not respect an uncommented RAILS_GEM_VERSION line, and not use require_gem [
|
1108
|
+
* Fixed that boot.rb would set RAILS_GEM_VERSION twice, not respect an uncommented RAILS_GEM_VERSION line, and not use require_gem [David Heinemeier Hansson]
|
1028
1109
|
|
1029
1110
|
|
1030
1111
|
*1.1.1* (April 6th, 2006)
|
@@ -1035,7 +1116,7 @@ References #6031. [Nicholas Seckar]
|
|
1035
1116
|
|
1036
1117
|
* Fixed that the -r/--ruby path option of the rails command was not being respected #4549 [ryan.raaum@gmail.com]
|
1037
1118
|
|
1038
|
-
* Added that Dispatcher exceptions should not be shown to the user unless a default log has not been configured. Instead show public/500.html [
|
1119
|
+
* Added that Dispatcher exceptions should not be shown to the user unless a default log has not been configured. Instead show public/500.html [David Heinemeier Hansson]
|
1039
1120
|
|
1040
1121
|
* Fixed that rake clone_structure_to_test should quit on pgsql if the dump is unsuccesful #4585 [augustz@augustz.com]
|
1041
1122
|
|
@@ -1043,9 +1124,9 @@ References #6031. [Nicholas Seckar]
|
|
1043
1124
|
|
1044
1125
|
* Install alias so Rails::InfoController is accessible at /rails_info. Closes #4546. [Nicholas Seckar]
|
1045
1126
|
|
1046
|
-
* Fixed that spawner should daemonize if running in repeat mode [
|
1127
|
+
* Fixed that spawner should daemonize if running in repeat mode [David Heinemeier Hansson]
|
1047
1128
|
|
1048
|
-
* Added TAG option for rake rails:freeze:edge, so you can say rake rails:freeze:edge TAG=rel_1-1-0 to lock to the 1.1.0 release [
|
1129
|
+
* Added TAG option for rake rails:freeze:edge, so you can say rake rails:freeze:edge TAG=rel_1-1-0 to lock to the 1.1.0 release [David Heinemeier Hansson]
|
1049
1130
|
|
1050
1131
|
* Applied Prototype $() performance patches (#4465, #4477) and updated script.aculo.us [Sam Stephenson, Thomas Fuchs]
|
1051
1132
|
|
@@ -1055,13 +1136,13 @@ References #6031. [Nicholas Seckar]
|
|
1055
1136
|
|
1056
1137
|
* Fixed rake rails:freeze:gems #4518 [benji@silverinsanity.com]
|
1057
1138
|
|
1058
|
-
* Added -f/--freeze option to rails command for freezing the application to the Rails version it was generated with [
|
1139
|
+
* Added -f/--freeze option to rails command for freezing the application to the Rails version it was generated with [David Heinemeier Hansson]
|
1059
1140
|
|
1060
1141
|
* Added gem binding of apps generated through the rails command to the gems of they were generated with [Nicholas Seckar]
|
1061
1142
|
|
1062
|
-
* Added expiration settings for JavaScript, CSS, HTML, and images to default lighttpd.conf [
|
1143
|
+
* Added expiration settings for JavaScript, CSS, HTML, and images to default lighttpd.conf [David Heinemeier Hansson]
|
1063
1144
|
|
1064
|
-
* Added gzip compression for JavaScript, CSS, and HTML to default lighttpd.conf [
|
1145
|
+
* Added gzip compression for JavaScript, CSS, and HTML to default lighttpd.conf [David Heinemeier Hansson]
|
1065
1146
|
|
1066
1147
|
* Avoid passing escapeHTML non-string in Rails' info controller [Nicholas Seckar]
|
1067
1148
|
|
@@ -1120,19 +1201,19 @@ References #6031. [Nicholas Seckar]
|
|
1120
1201
|
|
1121
1202
|
* Added tracking of database and framework versions in script/about #4088 [charles.gerungan@gmail.com/Rick Olson]
|
1122
1203
|
|
1123
|
-
* Added public/javascripts/application.js as a sample since it'll automatically be included in javascript_include_tag :defaults [
|
1204
|
+
* Added public/javascripts/application.js as a sample since it'll automatically be included in javascript_include_tag :defaults [David Heinemeier Hansson]
|
1124
1205
|
|
1125
|
-
* Added socket cleanup for lighttpd, both before and after [
|
1206
|
+
* Added socket cleanup for lighttpd, both before and after [David Heinemeier Hansson]
|
1126
1207
|
|
1127
|
-
* Added automatic creation of tmp/ when running script/server [
|
1208
|
+
* Added automatic creation of tmp/ when running script/server [David Heinemeier Hansson]
|
1128
1209
|
|
1129
|
-
* Added silence_stream that'll work on both STDERR or STDOUT or any other stream and deprecated silence_stderr in the process [
|
1210
|
+
* Added silence_stream that'll work on both STDERR or STDOUT or any other stream and deprecated silence_stderr in the process [David Heinemeier Hansson]
|
1130
1211
|
|
1131
1212
|
* Added reload! method to script/console to reload all models and others that include Reloadable without quitting the console #4056 [esad@esse.at]
|
1132
1213
|
|
1133
|
-
* Added that rake rails:freeze:edge will now just export all the contents of the frameworks instead of just lib, so stuff like rails:update:scripts, rails:update:javascripts, and script/server on lighttpd still just works #4047 [
|
1214
|
+
* Added that rake rails:freeze:edge will now just export all the contents of the frameworks instead of just lib, so stuff like rails:update:scripts, rails:update:javascripts, and script/server on lighttpd still just works #4047 [David Heinemeier Hansson]
|
1134
1215
|
|
1135
|
-
* Added fix for upload problems with lighttpd from Safari/IE to config/lighttpd.conf #3999 [
|
1216
|
+
* Added fix for upload problems with lighttpd from Safari/IE to config/lighttpd.conf #3999 [Thijs van der Vossen]
|
1136
1217
|
|
1137
1218
|
* Added test:uncommitted to test changes since last checkin to Subversion #4035 [technomancy@gmail.com]
|
1138
1219
|
|
@@ -1146,9 +1227,9 @@ References #6031. [Nicholas Seckar]
|
|
1146
1227
|
|
1147
1228
|
* Add integration test support to app generation and testing [Jamis Buck]
|
1148
1229
|
|
1149
|
-
* Added namespaces to all tasks, so for example load_fixtures is now db:fixtures:load. All the old task names are still valid, they just point to the new namespaced names. "rake -T" will only show the namespaced ones, though [
|
1230
|
+
* Added namespaces to all tasks, so for example load_fixtures is now db:fixtures:load. All the old task names are still valid, they just point to the new namespaced names. "rake -T" will only show the namespaced ones, though [David Heinemeier Hansson]
|
1150
1231
|
|
1151
|
-
* CHANGED DEFAULT: ActiveRecord::Base.schema_format is now :ruby by default instead of :sql. This means that we'll assume you want to live in the world of db/schema.rb where the grass is green and the girls are pretty. If your schema contains un-dumpable elements, such as constraints or database-specific column types, you just got an invitation to either 1) patch the dumper to include foreign key support, 2) stop being db specific, or 3) just change the default in config/environment.rb to config.active_record.schema_format = :sql -- we even include an example for that on new Rails skeletons now. Brought to you by the federation of opinionated framework builders! [
|
1232
|
+
* CHANGED DEFAULT: ActiveRecord::Base.schema_format is now :ruby by default instead of :sql. This means that we'll assume you want to live in the world of db/schema.rb where the grass is green and the girls are pretty. If your schema contains un-dumpable elements, such as constraints or database-specific column types, you just got an invitation to either 1) patch the dumper to include foreign key support, 2) stop being db specific, or 3) just change the default in config/environment.rb to config.active_record.schema_format = :sql -- we even include an example for that on new Rails skeletons now. Brought to you by the federation of opinionated framework builders! [David Heinemeier Hansson]
|
1152
1233
|
|
1153
1234
|
* Added -r/--repeat option to script/process/spawner that offers the same loop protection as the spinner did. This deprecates the script/process/spinner, so it's no longer included in the default Rails skeleton, but still available for backwards compatibility #3461 [ror@andreas-s.net]
|
1154
1235
|
|
@@ -1159,17 +1240,17 @@ References #6031. [Nicholas Seckar]
|
|
1159
1240
|
|
1160
1241
|
* Added more information to script/plugin's doings to ease debugging #3755 [Rick Olson]
|
1161
1242
|
|
1162
|
-
* Changed the default configuration for lighttpd to use tmp/sockets instead of log/ for the FastCGI sockets [
|
1243
|
+
* Changed the default configuration for lighttpd to use tmp/sockets instead of log/ for the FastCGI sockets [David Heinemeier Hansson]
|
1163
1244
|
|
1164
|
-
* Added a default configuration of the FileStore for fragment caching if tmp/cache is available, which makes action/fragment caching ready to use out of the box with no additional configuration [
|
1245
|
+
* Added a default configuration of the FileStore for fragment caching if tmp/cache is available, which makes action/fragment caching ready to use out of the box with no additional configuration [David Heinemeier Hansson]
|
1165
1246
|
|
1166
|
-
* Changed the default session configuration to place sessions in tmp/sessions, if that directory is available, instead of /tmp (this essentially means a goodbye to 9/10 White Screen of Death errors and should have web hosting firms around the world cheering) [
|
1247
|
+
* Changed the default session configuration to place sessions in tmp/sessions, if that directory is available, instead of /tmp (this essentially means a goodbye to 9/10 White Screen of Death errors and should have web hosting firms around the world cheering) [David Heinemeier Hansson]
|
1167
1248
|
|
1168
|
-
* Added tmp/sessions, tmp/cache, and tmp/sockets as default directories in the Rails skeleton [
|
1249
|
+
* Added tmp/sessions, tmp/cache, and tmp/sockets as default directories in the Rails skeleton [David Heinemeier Hansson]
|
1169
1250
|
|
1170
|
-
* Added that script/generate model will now automatically create a migration file for the model created. This can be turned off by calling the generator with --skip-migration [
|
1251
|
+
* Added that script/generate model will now automatically create a migration file for the model created. This can be turned off by calling the generator with --skip-migration [David Heinemeier Hansson]
|
1171
1252
|
|
1172
|
-
* Added -d/--database option to the rails command, so you can do "rails --database=sqlite2 myapp" to start a new application preconfigured to use SQLite2 as the database. Removed the configuration examples from SQLite and PostgreSQL from the default MySQL configuration [
|
1253
|
+
* Added -d/--database option to the rails command, so you can do "rails --database=sqlite2 myapp" to start a new application preconfigured to use SQLite2 as the database. Removed the configuration examples from SQLite and PostgreSQL from the default MySQL configuration [David Heinemeier Hansson]
|
1173
1254
|
|
1174
1255
|
* Allow script/server -c /path/to/lighttpd.conf [Jeremy Kemper]
|
1175
1256
|
|
@@ -1177,13 +1258,13 @@ References #6031. [Nicholas Seckar]
|
|
1177
1258
|
|
1178
1259
|
* Update script.aculo.us to V1.5.3 [Thomas Fuchs]
|
1179
1260
|
|
1180
|
-
* Added SIGTRAP signal handler to RailsFCGIHandler that'll force the process into a breakpoint after the next request. This breakpoint can then be caught with script/breakpointer and give you access to the Ruby image inside that process. Useful for debugging memory leaks among other things [
|
1261
|
+
* Added SIGTRAP signal handler to RailsFCGIHandler that'll force the process into a breakpoint after the next request. This breakpoint can then be caught with script/breakpointer and give you access to the Ruby image inside that process. Useful for debugging memory leaks among other things [David Heinemeier Hansson]
|
1181
1262
|
|
1182
|
-
* Changed default lighttpd.conf to use CWD from lighttpd 1.4.10 that allows the same configuration to be used for both detach and not. Also ensured that auto-repeaping of FCGIs only happens when lighttpd is not detached. [
|
1263
|
+
* Changed default lighttpd.conf to use CWD from lighttpd 1.4.10 that allows the same configuration to be used for both detach and not. Also ensured that auto-repeaping of FCGIs only happens when lighttpd is not detached. [David Heinemeier Hansson]
|
1183
1264
|
|
1184
1265
|
* Added Configuration#after_initialize for registering a block which gets called after the framework is fully initialized. Useful for things like per-environment configuration of plugins. [Michael Koziarski]
|
1185
1266
|
|
1186
|
-
* Added check for RAILS_FRAMEWORK_ROOT constant that allows the Rails framework to be found in a different place than vendor/rails. Should be set in boot.rb. [
|
1267
|
+
* Added check for RAILS_FRAMEWORK_ROOT constant that allows the Rails framework to be found in a different place than vendor/rails. Should be set in boot.rb. [David Heinemeier Hansson]
|
1187
1268
|
|
1188
1269
|
* Fixed that static requests could unlock the mutex guarding dynamic requests in the WEBrick servlet #3433 [tom@craz8.com]
|
1189
1270
|
|
@@ -1201,7 +1282,7 @@ References #6031. [Nicholas Seckar]
|
|
1201
1282
|
|
1202
1283
|
* Fix typo in mailer generator USAGE. #3458 [chriztian.steinmeier@gmail.com]
|
1203
1284
|
|
1204
|
-
* Ignore version mismatch between pg_dump and the database server. #3457 [
|
1285
|
+
* Ignore version mismatch between pg_dump and the database server. #3457 [Simon Stapleton]
|
1205
1286
|
|
1206
1287
|
* Reap FCGI processes after lighttpd exits. [Sam Stephenson]
|
1207
1288
|
|
@@ -1233,11 +1314,11 @@ References #6031. [Nicholas Seckar]
|
|
1233
1314
|
|
1234
1315
|
* Have the lighttpd server script report the actual ip to which the server is bound. #2903. [Adam]
|
1235
1316
|
|
1236
|
-
* Add plugin library directories to the load path after the lib directory so that libraries in the lib directory get precedence. #2910. [
|
1317
|
+
* Add plugin library directories to the load path after the lib directory so that libraries in the lib directory get precedence. #2910. [James Adam]
|
1237
1318
|
|
1238
1319
|
* Make help for the console command more explicit about how to specify the desired environment in which to run the console. #2911. [anonymous]
|
1239
1320
|
|
1240
|
-
* PostgreSQL: the purge_test_database Rake task shouldn't explicitly specify the template0 template when creating a fresh test database. #2964 [
|
1321
|
+
* PostgreSQL: the purge_test_database Rake task shouldn't explicitly specify the template0 template when creating a fresh test database. #2964 [Dreamer3]
|
1241
1322
|
|
1242
1323
|
* Introducing the session_migration generator. Creates an add_session_table migration. Allows generator to specify migrations directory. #2958, #2960 [Rick Olson]
|
1243
1324
|
|
@@ -1255,19 +1336,19 @@ References #6031. [Nicholas Seckar]
|
|
1255
1336
|
|
1256
1337
|
* Make sure that legacy db tasks also reference :database for SQLite #2830 [kazuhiko@fdiary.net]
|
1257
1338
|
|
1258
|
-
* Pass __FILE__ when evaluating plugins' init.rb. #2817 [
|
1339
|
+
* Pass __FILE__ when evaluating plugins' init.rb. #2817 [James Adam]
|
1259
1340
|
|
1260
1341
|
* Better svn status matching for generators. #2814 [François Beausoleil <francois.beausoleil@gmail.com>, Blair Zajac <blair@orcaware.com>]
|
1261
1342
|
|
1262
|
-
* Don't reload routes until plugins have been loaded so they have a chance to extend the routing capabilities [
|
1343
|
+
* Don't reload routes until plugins have been loaded so they have a chance to extend the routing capabilities [David Heinemeier Hansson]
|
1263
1344
|
|
1264
1345
|
* Don't detach or fork for script/server tailing [Nicholas Seckar]
|
1265
1346
|
|
1266
|
-
* Changed all script/* to use #!/usr/bin/env ruby instead of hard-coded Ruby path. public/dispatcher.* still uses the hard-coded path for compatibility with web servers that don't have Ruby in path [
|
1347
|
+
* Changed all script/* to use #!/usr/bin/env ruby instead of hard-coded Ruby path. public/dispatcher.* still uses the hard-coded path for compatibility with web servers that don't have Ruby in path [David Heinemeier Hansson]
|
1267
1348
|
|
1268
|
-
* Force RAILS_ENV to be "test" when running tests, so that ENV["RAILS_ENV"] = "production" in config/environment.rb doesn't wreck havok [
|
1349
|
+
* Force RAILS_ENV to be "test" when running tests, so that ENV["RAILS_ENV"] = "production" in config/environment.rb doesn't wreck havok [David Heinemeier Hansson] #2660
|
1269
1350
|
|
1270
|
-
* Correct versioning in :freeze_gems Rake task. #2778 [
|
1351
|
+
* Correct versioning in :freeze_gems Rake task. #2778 [Jakob Skjerning, Jeremy Kemper]
|
1271
1352
|
|
1272
1353
|
* Added an omnipresent RailsInfoController with a properties action that delivers an HTML rendering of Rails::Info (but only when local_request? is true). Added a new default index.html which fetches this with Ajax. [Sam Stephenson]
|
1273
1354
|
|
@@ -1282,7 +1363,7 @@ References #6031. [Nicholas Seckar]
|
|
1282
1363
|
|
1283
1364
|
* Use require_library_or_gem 'fcgi' in script/server [Sam Stephenson]
|
1284
1365
|
|
1285
|
-
* Added default lighttpd config in config/lighttpd.conf and added a default runner for lighttpd in script/server (works like script/server, but using lighttpd and FastCGI). It will use lighttpd if available, otherwise WEBrick. You can force either or using 'script/server lighttpd' or 'script/server webrick' [
|
1366
|
+
* Added default lighttpd config in config/lighttpd.conf and added a default runner for lighttpd in script/server (works like script/server, but using lighttpd and FastCGI). It will use lighttpd if available, otherwise WEBrick. You can force either or using 'script/server lighttpd' or 'script/server webrick' [David Heinemeier Hansson]
|
1286
1367
|
|
1287
1368
|
* New configuration option config.plugin_paths which may be a single path like the default 'vendor/plugins' or an array of paths: ['vendor/plugins', 'lib/plugins']. [Jeremy Kemper]
|
1288
1369
|
|
@@ -1308,7 +1389,7 @@ References #6031. [Nicholas Seckar]
|
|
1308
1389
|
|
1309
1390
|
* Make fcgi handler respond to TERM signals with an explicit exit [Jamis Buck]
|
1310
1391
|
|
1311
|
-
* Added demonstration of fixture use to the test case generated by the model generator [
|
1392
|
+
* Added demonstration of fixture use to the test case generated by the model generator [David Heinemeier Hansson]
|
1312
1393
|
|
1313
1394
|
* If specified, pass PostgreSQL client character encoding to createdb. #2703 [Kazuhiko <kazuhiko@fdiary.net>]
|
1314
1395
|
|
@@ -1328,7 +1409,7 @@ References #6031. [Nicholas Seckar]
|
|
1328
1409
|
|
1329
1410
|
* The PostgreSQL :db_structure_dump Rake task limits its dump to the schema search path in database.yml. [Anatol Pomozov <anatol.pomozov@gmail.com>]
|
1330
1411
|
|
1331
|
-
* Add task to generate rdoc for all installed plugins. [Marcel Molina]
|
1412
|
+
* Add task to generate rdoc for all installed plugins. [Marcel Molina Jr.]
|
1332
1413
|
|
1333
1414
|
* Update script.aculo.us to V1.5_rc4 [Thomas Fuchs]
|
1334
1415
|
|
@@ -1336,15 +1417,15 @@ References #6031. [Nicholas Seckar]
|
|
1336
1417
|
|
1337
1418
|
* Migrations may be destroyed: script/destroy migration foo. #2635 [Charles M. Gerungan <charles.gerungan@gmail.com>, Jamis Buck, Jeremy Kemper]
|
1338
1419
|
|
1339
|
-
* Added that plugins can carry generators and that generator stub files can be created along with new plugins using script/generate plugin <name> --with-generator [
|
1420
|
+
* Added that plugins can carry generators and that generator stub files can be created along with new plugins using script/generate plugin <name> --with-generator [David Heinemeier Hansson]
|
1340
1421
|
|
1341
|
-
* Removed app/apis as a default empty dir since its automatically created when using script/generate web_service [
|
1422
|
+
* Removed app/apis as a default empty dir since its automatically created when using script/generate web_service [David Heinemeier Hansson]
|
1342
1423
|
|
1343
1424
|
* Added script/plugin to manage plugins (install, remove, list, etc) [Ryan Tomayko]
|
1344
1425
|
|
1345
|
-
* Added test_plugins task: Run the plugin tests in vendor/plugins/**/test (or specify with PLUGIN=name) [
|
1426
|
+
* Added test_plugins task: Run the plugin tests in vendor/plugins/**/test (or specify with PLUGIN=name) [David Heinemeier Hansson]
|
1346
1427
|
|
1347
|
-
* Added plugin generator to create a stub structure for a new plugin in vendor/plugins (see "script/generate plugin" for help) [
|
1428
|
+
* Added plugin generator to create a stub structure for a new plugin in vendor/plugins (see "script/generate plugin" for help) [David Heinemeier Hansson]
|
1348
1429
|
|
1349
1430
|
* Fixed scaffold generator when started with only 1 parameter #2609 [self@mattmower.com]
|
1350
1431
|
|
@@ -1375,7 +1456,7 @@ References #6031. [Nicholas Seckar]
|
|
1375
1456
|
|
1376
1457
|
*0.14.0 (RC1)* (October 16th, 2005)
|
1377
1458
|
|
1378
|
-
* Moved generator folder from RAILS_ROOT/generators to RAILS_ROOT/lib/generators [Tobias
|
1459
|
+
* Moved generator folder from RAILS_ROOT/generators to RAILS_ROOT/lib/generators [Tobias Lütke]
|
1379
1460
|
|
1380
1461
|
* Fix rake dev and related commands [Nicholas Seckar]
|
1381
1462
|
|
@@ -1386,7 +1467,7 @@ References #6031. [Nicholas Seckar]
|
|
1386
1467
|
|
1387
1468
|
* Added Rails framework freezing tasks: freeze_gems (freeze to current gems), freeze_edge (freeze to Rails SVN trunk), unfreeze_rails (float with newest gems on system)
|
1388
1469
|
|
1389
|
-
* Added update_javascripts task which will fetch all the latest js files from your current rails install. Use after updating rails. [Tobias
|
1470
|
+
* Added update_javascripts task which will fetch all the latest js files from your current rails install. Use after updating rails. [Tobias Lütke]
|
1390
1471
|
|
1391
1472
|
* Added cleaning of RAILS_ROOT to useless elements such as '../non-dot-dot/'. Provides cleaner backtraces and error messages. [Nicholas Seckar]
|
1392
1473
|
|
@@ -1412,7 +1493,7 @@ References #6031. [Nicholas Seckar]
|
|
1412
1493
|
|
1413
1494
|
* Make the migration generator only check files ending in *.rb when calculating the next file name #2317 [Chad Fowler]
|
1414
1495
|
|
1415
|
-
* Added prevention of duplicate migrations from the generator #2240 [
|
1496
|
+
* Added prevention of duplicate migrations from the generator #2240 [François Beausoleil]
|
1416
1497
|
|
1417
1498
|
* Add db_schema_dump and db_schema_import rake tasks to work with the new ActiveRecord::SchemaDumper (for dumping a schema to and reading a schema from a ruby file).
|
1418
1499
|
|
@@ -1428,7 +1509,7 @@ References #6031. [Nicholas Seckar]
|
|
1428
1509
|
|
1429
1510
|
* Added -m/--mime-types option to the WEBrick server, so you can specify a Apache-style mime.types file to load #2059 [ask@develooper.com]
|
1430
1511
|
|
1431
|
-
* Added -c/--svn option to the generator that'll add new files and remove destroyed files using svn add/revert/remove as appropriate #2064 [
|
1512
|
+
* Added -c/--svn option to the generator that'll add new files and remove destroyed files using svn add/revert/remove as appropriate #2064 [Kevin Clark]
|
1432
1513
|
|
1433
1514
|
* Added -c/--charset option to WEBrick server, so you can specify a default charset (which without changes is UTF-8) #2084 [wejn@box.cz]
|
1434
1515
|
|
@@ -1460,9 +1541,9 @@ References #6031. [Nicholas Seckar]
|
|
1460
1541
|
|
1461
1542
|
* Added convenience controls for FCGI processes (especially when managed remotely): spinner, spawner, and reaper. They reside in script/process. More details can be had by calling them with -h/--help.
|
1462
1543
|
|
1463
|
-
* Added load_fixtures task to the Rakefile, which will load all the fixtures into the database for the current environment #1791 [Marcel Molina]
|
1544
|
+
* Added load_fixtures task to the Rakefile, which will load all the fixtures into the database for the current environment #1791 [Marcel Molina Jr.]
|
1464
1545
|
|
1465
|
-
* Added an empty robots.txt to public/, so that web servers asking for it won't trigger a dynamic call, like favicon.ico #1738 [
|
1546
|
+
* Added an empty robots.txt to public/, so that web servers asking for it won't trigger a dynamic call, like favicon.ico #1738 [Michael Schubert]
|
1466
1547
|
|
1467
1548
|
* Dropped the 'immediate close-down' of FCGI processes since it didn't work consistently and produced bad responses when it didn't. So now a TERM ensures exit after the next request (just as if the process is handling a request when it receives the signal). This means that you'll have to 'nudge' all FCGI processes with a request in order to ensure that they have all reloaded. This can be done by something like ./script/process/repear --nudge 'http://www.myapp.com' --instances 10, which will load the myapp site 10 times (and thus hit all of the 10 FCGI processes once, enough to shut down).
|
1468
1549
|
|
@@ -1473,13 +1554,13 @@ References #6031. [Nicholas Seckar]
|
|
1473
1554
|
|
1474
1555
|
* Fixed that each request with the WEBrick adapter would open a new database connection #1685 [Sam Stephenson]
|
1475
1556
|
|
1476
|
-
* Added support for SQL Server in the database rake tasks #1652 [
|
1557
|
+
* Added support for SQL Server in the database rake tasks #1652 [Ken Barker] Note: osql and scptxfr may need to be installed on your development environment. This involves getting the .exes and a .rll (scptxfr) from a production SQL Server (not developer level SQL Server). Add their location to your Environment PATH and you are all set.
|
1477
1558
|
|
1478
1559
|
* Added a VERSION parameter to the migrate task that allows you to do "rake migrate VERSION=34" to migrate to the 34th version traveling up or down depending on the current version
|
1479
1560
|
|
1480
|
-
* Extend Ruby version check to include RUBY_RELEASE_DATE >= '2005-12-25', the final Ruby 1.8.2 release #1674 [court3nay
|
1561
|
+
* Extend Ruby version check to include RUBY_RELEASE_DATE >= '2005-12-25', the final Ruby 1.8.2 release #1674 [court3nay]
|
1481
1562
|
|
1482
|
-
* Improved documentation for environment config files #1625 [court3nay
|
1563
|
+
* Improved documentation for environment config files #1625 [court3nay]
|
1483
1564
|
|
1484
1565
|
|
1485
1566
|
*0.13.0* (6 July, 2005)
|
@@ -1490,19 +1571,19 @@ References #6031. [Nicholas Seckar]
|
|
1490
1571
|
|
1491
1572
|
* Added "migrate" as rake task to execute all the pending migrations from db/migrate
|
1492
1573
|
|
1493
|
-
* Fixed that model generator would make fixtures plural, even if ActiveRecord::Base.pluralize_table_names was false #1185 [Marcel Molina]
|
1574
|
+
* Fixed that model generator would make fixtures plural, even if ActiveRecord::Base.pluralize_table_names was false #1185 [Marcel Molina Jr.]
|
1494
1575
|
|
1495
1576
|
* Added a DOCTYPE of HTML transitional to the HTML files generated by Rails #1124 [Michael Koziarski]
|
1496
1577
|
|
1497
1578
|
* SIGTERM also gracefully exits dispatch.fcgi. Ignore SIGUSR1 on Windows.
|
1498
1579
|
|
1499
|
-
* Add the option to manually manage garbage collection in the FastCGI dispatcher. Set the number of requests between GC runs in your public/dispatch.fcgi [
|
1580
|
+
* Add the option to manually manage garbage collection in the FastCGI dispatcher. Set the number of requests between GC runs in your public/dispatch.fcgi [Stefan Kaes]
|
1500
1581
|
|
1501
1582
|
* Allow dynamic application reloading for dispatch.fcgi processes by sending a SIGHUP. If the process is currently handling a request, the request will be allowed to complete first. This allows production fcgi's to be reloaded without having to restart them.
|
1502
1583
|
|
1503
1584
|
* RailsFCGIHandler (dispatch.fcgi) no longer tries to explicitly flush $stdout (CgiProcess#out always calls flush)
|
1504
1585
|
|
1505
|
-
* Fixed rakefile actions against PostgreSQL when the password is all numeric #1462 [
|
1586
|
+
* Fixed rakefile actions against PostgreSQL when the password is all numeric #1462 [Michael Schubert]
|
1506
1587
|
|
1507
1588
|
* ActionMailer::Base subclasses are reloaded with the other rails components #1262
|
1508
1589
|
|
@@ -1516,7 +1597,7 @@ References #6031. [Nicholas Seckar]
|
|
1516
1597
|
|
1517
1598
|
* Fixed Webrick to escape + characters in URL's the same way that lighttpd and apache do #1397 [Nicholas Seckar]
|
1518
1599
|
|
1519
|
-
* Added -e/--environment option to script/runner #1408 [
|
1600
|
+
* Added -e/--environment option to script/runner #1408 [François Beausoleil]
|
1520
1601
|
|
1521
1602
|
* Modernize the scaffold generator to use the simplified render and test methods and to change style from @params["id"] to params[:id]. #1367
|
1522
1603
|
|
@@ -1557,7 +1638,7 @@ References #6031. [Nicholas Seckar]
|
|
1557
1638
|
|
1558
1639
|
* Added lazy typing for generate, such that ./script/generate cn == ./script/generate controller and the likes #1051 [k@v2studio.com]
|
1559
1640
|
|
1560
|
-
* Fixed that ownership is brought over in pg_dump during tests for PostgreSQL #1060 [pburleson
|
1641
|
+
* Fixed that ownership is brought over in pg_dump during tests for PostgreSQL #1060 [pburleson]
|
1561
1642
|
|
1562
1643
|
* Upgraded to Active Record 1.10.0, Action Pack 1.8.0, Action Mailer 0.9.0, Action Web Service 0.7.0, Active Support 1.0.4
|
1563
1644
|
|
@@ -1577,11 +1658,11 @@ References #6031. [Nicholas Seckar]
|
|
1577
1658
|
|
1578
1659
|
* Added additional error handling to the FastCGI dispatcher to catch even errors taking down the entire process
|
1579
1660
|
|
1580
|
-
* Improved the generated scaffold code a lot to take advantage of recent Rails developments #882 [Tobias
|
1661
|
+
* Improved the generated scaffold code a lot to take advantage of recent Rails developments #882 [Tobias Lütke]
|
1581
1662
|
|
1582
1663
|
* Combined the script/environment.rb used for gems and regular files version. If vendor/rails/* has all the frameworks, then files version is used, otherwise gems #878 [Nicholas Seckar]
|
1583
1664
|
|
1584
|
-
* Changed .htaccess to allow dispatch.* to be called from a sub-directory as part of the push with Action Pack to make Rails work on non-vhost setups #826 [Nicholas Seckar/Tobias
|
1665
|
+
* Changed .htaccess to allow dispatch.* to be called from a sub-directory as part of the push with Action Pack to make Rails work on non-vhost setups #826 [Nicholas Seckar/Tobias Lütke]
|
1585
1666
|
|
1586
1667
|
* Added script/runner which can be used to run code inside the environment by eval'ing the first parameter. Examples:
|
1587
1668
|
|
@@ -1605,9 +1686,9 @@ References #6031. [Nicholas Seckar]
|
|
1605
1686
|
|
1606
1687
|
*0.10.1* (7th March, 2005)
|
1607
1688
|
|
1608
|
-
* Fixed rake stats to ignore editor backup files like model.rb~ #791 [
|
1689
|
+
* Fixed rake stats to ignore editor backup files like model.rb~ #791 [Sebastian Kanthak]
|
1609
1690
|
|
1610
|
-
* Added exception shallowing if the DRb server can't be started (not worth making a fuss about to distract new users) #779 [Tobias
|
1691
|
+
* Added exception shallowing if the DRb server can't be started (not worth making a fuss about to distract new users) #779 [Tobias Lütke]
|
1611
1692
|
|
1612
1693
|
* Added an empty favicon.ico file to the public directory of new applications (so the logs are not spammed by its absence)
|
1613
1694
|
|
@@ -1640,7 +1721,7 @@ References #6031. [Nicholas Seckar]
|
|
1640
1721
|
|
1641
1722
|
*0.10.0* (24th February, 2005)
|
1642
1723
|
|
1643
|
-
* Changed default IP binding for WEBrick from 127.0.0.1 to 0.0.0.0 so that the server is accessible both locally and remotely #696 [Marcel]
|
1724
|
+
* Changed default IP binding for WEBrick from 127.0.0.1 to 0.0.0.0 so that the server is accessible both locally and remotely #696 [Marcel Molina Jr.]
|
1644
1725
|
|
1645
1726
|
* Fixed that script/server -d was broken so daemon mode couldn't be used #687 [Nicholas Seckar]
|
1646
1727
|
|
@@ -1707,7 +1788,7 @@ References #6031. [Nicholas Seckar]
|
|
1707
1788
|
|
1708
1789
|
*0.9.4.1* (January 18th, 2005)
|
1709
1790
|
|
1710
|
-
* Added 5-second timeout to WordNet alternatives on creating reserved-word models #501 [Marcel Molina]
|
1791
|
+
* Added 5-second timeout to WordNet alternatives on creating reserved-word models #501 [Marcel Molina Jr.]
|
1711
1792
|
|
1712
1793
|
* Fixed binding of caller #496 [Alexey]
|
1713
1794
|
|
@@ -1716,22 +1797,22 @@ References #6031. [Nicholas Seckar]
|
|
1716
1797
|
|
1717
1798
|
*0.9.4* (January 17th, 2005)
|
1718
1799
|
|
1719
|
-
* Added that ApplicationController will catch a ControllerNotFound exception if someone attempts to access a url pointing to an unexisting controller [Tobias
|
1800
|
+
* Added that ApplicationController will catch a ControllerNotFound exception if someone attempts to access a url pointing to an unexisting controller [Tobias Lütke]
|
1720
1801
|
|
1721
1802
|
* Flipped code-to-test ratio around to be more readable #468 [Scott Baron]
|
1722
1803
|
|
1723
1804
|
* Fixed log file permissions to be 666 instead of 777 (so they're not executable) #471 [Lucas Carlson]
|
1724
1805
|
|
1725
|
-
* Fixed that auto reloading would some times not work or would reload the models twice #475 [Tobias
|
1806
|
+
* Fixed that auto reloading would some times not work or would reload the models twice #475 [Tobias Lütke]
|
1726
1807
|
|
1727
1808
|
* Added rewrite rules to deal with caching to public/.htaccess
|
1728
1809
|
|
1729
1810
|
* Added the option to specify a controller name to "generate scaffold" and made the default controller name the plural form of the model.
|
1730
1811
|
|
1731
1812
|
* Added that rake clone_structure_to_test, db_structure_dump, and purge_test_database tasks now pick up the source database to use from
|
1732
|
-
RAILS_ENV instead of just forcing development #424 [Tobias
|
1813
|
+
RAILS_ENV instead of just forcing development #424 [Tobias Lütke]
|
1733
1814
|
|
1734
|
-
* Fixed script/console to work with Windows (that requires the use of irb.bat) #418 [
|
1815
|
+
* Fixed script/console to work with Windows (that requires the use of irb.bat) #418 [Chris McGrath]
|
1735
1816
|
|
1736
1817
|
* Fixed WEBrick servlet slowdown over time by restricting the load path reloading to mod_ruby
|
1737
1818
|
|