railties 3.2.7 → 3.2.8.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.md CHANGED
@@ -1,9 +1,13 @@
1
- ## Rails 3.2.7 (unreleased)
1
+ ## Rails 3.2.8 ##
2
+
3
+ * No changes.
4
+
5
+ ## Rails 3.2.7 (Jul 26, 2012) ##
2
6
 
3
7
  * Since Rails 3.2, use layout false to render no layout
4
8
  * Use strict_args_position! if available from Thor
5
9
 
6
- ## Rails 3.2.6 (Jun 12, 2012)
10
+ ## Rails 3.2.6 (Jun 12, 2012) ##
7
11
 
8
12
  * No changes.
9
13
 
@@ -157,9 +157,12 @@ module Rails
157
157
  # Rails.application.env_config stores some of the Rails initial environment parameters.
158
158
  # Currently stores:
159
159
  #
160
- # * action_dispatch.parameter_filter" => config.filter_parameters,
161
- # * action_dispatch.secret_token" => config.secret_token,
162
- # * action_dispatch.show_exceptions" => config.action_dispatch.show_exceptions
160
+ # * "action_dispatch.parameter_filter" => config.filter_parameters,
161
+ # * "action_dispatch.secret_token" => config.secret_token,
162
+ # * "action_dispatch.show_exceptions" => config.action_dispatch.show_exceptions,
163
+ # * "action_dispatch.show_detailed_exceptions" => config.consider_all_requests_local,
164
+ # * "action_dispatch.logger" => Rails.logger,
165
+ # * "action_dispatch.backtrace_cleaner" => Rails.backtrace_cleaner
163
166
  #
164
167
  # These parameters will be used by middlewares and engines to configure themselves.
165
168
  #
@@ -17,7 +17,7 @@
17
17
  <% end -%>
18
18
  <td><%%= link_to 'Show', <%= singular_table_name %> %></td>
19
19
  <td><%%= link_to 'Edit', edit_<%= singular_table_name %>_path(<%= singular_table_name %>) %></td>
20
- <td><%%= link_to 'Destroy', <%= singular_table_name %>, <%= key_value :method, ":delete" %>, <%= key_value :data, "{ #{key_value :confirm, "'Are you sure?'"} }" %> %></td>
20
+ <td><%%= link_to 'Destroy', <%= singular_table_name %>, <%= key_value :confirm, "'Are you sure?'" %>, <%= key_value :method, ":delete" %> %></td>
21
21
  </tr>
22
22
  <%% end %>
23
23
  </table>
@@ -1,8 +1,7 @@
1
1
  Description:
2
- Stubs out a scaffolded controller and its views. Pass the model name,
3
- either CamelCased or under_scored, and a list of views as arguments.
4
- The controller name is retrieved as a pluralized version of the model
5
- name.
2
+ Stubs out a scaffolded controller, its seven RESTful actions and related
3
+ views. Pass the model name, either CamelCased or under_scored. The
4
+ controller name is retrieved as a pluralized version of the model name.
6
5
 
7
6
  To create a controller within a module, specify the model name as a
8
7
  path like 'parent_module/controller_name'.
@@ -17,8 +17,8 @@ if defined?(MiniTest)
17
17
  begin
18
18
  require 'turn'
19
19
 
20
- if MiniTest::Unit.respond_to?(:use_natural_language_case_names=)
21
- MiniTest::Unit.use_natural_language_case_names = true
20
+ Turn.config do |c|
21
+ c.natural = true
22
22
  end
23
23
  rescue LoadError
24
24
  end
data/lib/rails/version.rb CHANGED
@@ -2,8 +2,8 @@ module Rails
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 2
5
- TINY = 7
6
- PRE = nil
5
+ TINY = 8
6
+ PRE = "rc1"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
9
9
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: railties
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.7
5
- prerelease:
4
+ version: 3.2.8.rc1
5
+ prerelease: 6
6
6
  platform: ruby
7
7
  authors:
8
8
  - David Heinemeier Hansson
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-26 00:00:00.000000000 Z
12
+ date: 2012-08-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -88,7 +88,7 @@ dependencies:
88
88
  requirements:
89
89
  - - '='
90
90
  - !ruby/object:Gem::Version
91
- version: 3.2.7
91
+ version: 3.2.8.rc1
92
92
  type: :runtime
93
93
  prerelease: false
94
94
  version_requirements: !ruby/object:Gem::Requirement
@@ -96,7 +96,7 @@ dependencies:
96
96
  requirements:
97
97
  - - '='
98
98
  - !ruby/object:Gem::Version
99
- version: 3.2.7
99
+ version: 3.2.8.rc1
100
100
  - !ruby/object:Gem::Dependency
101
101
  name: actionpack
102
102
  requirement: !ruby/object:Gem::Requirement
@@ -104,7 +104,7 @@ dependencies:
104
104
  requirements:
105
105
  - - '='
106
106
  - !ruby/object:Gem::Version
107
- version: 3.2.7
107
+ version: 3.2.8.rc1
108
108
  type: :runtime
109
109
  prerelease: false
110
110
  version_requirements: !ruby/object:Gem::Requirement
@@ -112,7 +112,7 @@ dependencies:
112
112
  requirements:
113
113
  - - '='
114
114
  - !ruby/object:Gem::Version
115
- version: 3.2.7
115
+ version: 3.2.8.rc1
116
116
  description: ! 'Rails internals: application bootup, plugins, generators, and rake
117
117
  tasks.'
118
118
  email: david@loudthinking.com
@@ -631,12 +631,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
631
631
  required_rubygems_version: !ruby/object:Gem::Requirement
632
632
  none: false
633
633
  requirements:
634
- - - ! '>='
634
+ - - ! '>'
635
635
  - !ruby/object:Gem::Version
636
- version: '0'
636
+ version: 1.3.1
637
637
  requirements: []
638
638
  rubyforge_project:
639
- rubygems_version: 1.8.23
639
+ rubygems_version: 1.8.24
640
640
  signing_key:
641
641
  specification_version: 3
642
642
  summary: Tools for creating, working with, and running Rails applications.