railties 3.2.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,11 @@
1
+ ## Rails 3.2.1 (January 26, 2012) ##
2
+
3
+ * Documentation fixes.
4
+
5
+ * Migration generation understands decimal{1.2} and decimal{1-2}, in
6
+ addition to decimal{1,2}. *José Valim*
7
+
8
+
1
9
  ## Rails 3.2.0 (January 20, 2012) ##
2
10
 
3
11
  * Rails 2.3-style plugins in vendor/plugins are deprecated and will be removed in Rails 4.0. Move them out of vendor/plugins and bundle them in your Gemfile, or fold them in to your app as lib/myplugin/* and config/initializers/myplugin.rb. *Santiago Pastorino*
@@ -1400,6 +1400,9 @@ A threshold of +nil+ disables automatic EXPLAINs.
1400
1400
  The default threshold in development mode is 0.5 seconds, and +nil+ in test and
1401
1401
  production modes.
1402
1402
 
1403
+ INFO. Automatic EXPLAIN gets disabled if Active Record has no logger, regardless
1404
+ of the value of the threshold.
1405
+
1403
1406
  h5. Disabling Automatic EXPLAIN
1404
1407
 
1405
1408
  Automatic EXPLAIN can be selectively silenced with +ActiveRecord::Base.silence_auto_explain+:
@@ -614,7 +614,7 @@ As shown in the example, you can also combine standard validations with your own
614
614
 
615
615
  h4. Custom Methods
616
616
 
617
- You can also create methods that verify the state of your models and add messages to the +errors+ collection when they are invalid. You must then register these methods by using one or more of the +validate+, +validate_on_create+ or +validate_on_update+ class methods, passing in the symbols for the validation methods' names.
617
+ You can also create methods that verify the state of your models and add messages to the +errors+ collection when they are invalid. You must then register these methods by using the +validate+ class method, passing in the symbols for the validation methods' names.
618
618
 
619
619
  You can pass more than one symbol for each class method and the respective validations will be run in the same order as they were registered.
620
620
 
@@ -637,12 +637,24 @@ class Invoice < ActiveRecord::Base
637
637
  end
638
638
  </ruby>
639
639
 
640
+ By default such validations will run every time you call +valid?+. It is also possible to control when to run these custom validations by giving an +:on+ option to the +validate+ method, with either: +:create+ or +:update+.
641
+
642
+ <ruby>
643
+ class Invoice < ActiveRecord::Base
644
+ validate :active_customer, :on => :create
645
+
646
+ def active_customer
647
+ errors.add(:customer_id, "is not active") unless customer.active?
648
+ end
649
+ end
650
+ </ruby>
651
+
640
652
  You can even create your own validation helpers and reuse them in several different models. For example, an application that manages surveys may find it useful to express that a certain field corresponds to a set of choices:
641
653
 
642
654
  <ruby>
643
655
  ActiveRecord::Base.class_eval do
644
656
  def self.validates_as_choice(attr_name, n, options={})
645
- validates attr_name, :inclusion => { {:in => 1..n}.merge(options) }
657
+ validates attr_name, :inclusion => { { :in => 1..n }.merge!(options) }
646
658
  end
647
659
  end
648
660
  </ruby>
@@ -659,7 +671,7 @@ h3. Working with Validation Errors
659
671
 
660
672
  In addition to the +valid?+ and +invalid?+ methods covered earlier, Rails provides a number of methods for working with the +errors+ collection and inquiring about the validity of objects.
661
673
 
662
- The following is a list of the most commonly used methods. Please refer to the +ActiveRecord::Errors+ documentation for a list of all the available methods.
674
+ The following is a list of the most commonly used methods. Please refer to the +ActiveModel::Errors+ documentation for a list of all the available methods.
663
675
 
664
676
  h4(#working_with_validation_errors-errors). +errors+
665
677
 
@@ -889,13 +901,8 @@ Below is a simple example where we change the Rails behavior to always display t
889
901
 
890
902
  <ruby>
891
903
  ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
892
- if instance.error_message.kind_of?(Array)
893
- %(#{html_tag}<span class="validation-error">&nbsp;
894
- #{instance.error_message.join(',')}</span>).html_safe
895
- else
896
- %(#{html_tag}<span class="validation-error">&nbsp;
897
- #{instance.error_message}</span>).html_safe
898
- end
904
+ errors = Array(instance.error_message).join(',')
905
+ %(#{html_tag}<span class="validation-error">&nbsp;#{errors}</span>).html_safe
899
906
  end
900
907
  </ruby>
901
908
 
@@ -949,6 +956,7 @@ h4. Creating an Object
949
956
  * +before_validation+
950
957
  * +after_validation+
951
958
  * +before_save+
959
+ * +around_save+
952
960
  * +before_create+
953
961
  * +around_create+
954
962
  * +after_create+
@@ -959,6 +967,7 @@ h4. Updating an Object
959
967
  * +before_validation+
960
968
  * +after_validation+
961
969
  * +before_save+
970
+ * +around_save+
962
971
  * +before_update+
963
972
  * +around_update+
964
973
  * +after_update+
@@ -967,8 +976,8 @@ h4. Updating an Object
967
976
  h4. Destroying an Object
968
977
 
969
978
  * +before_destroy+
970
- * +after_destroy+
971
979
  * +around_destroy+
980
+ * +after_destroy+
972
981
 
973
982
  WARNING. +after_save+ runs both on create and update, but always _after_ the more specific callbacks +after_create+ and +after_update+, no matter the order in which the macro calls were executed.
974
983
 
@@ -1013,7 +1022,7 @@ The following methods trigger callbacks:
1013
1022
  * +increment!+
1014
1023
  * +save+
1015
1024
  * +save!+
1016
- * +save(false)+
1025
+ * +save(:validate => false)+
1017
1026
  * +toggle!+
1018
1027
  * +update+
1019
1028
  * +update_attribute+
@@ -71,7 +71,7 @@ person.destroy
71
71
 
72
72
  h3. Validations
73
73
 
74
- Module to support validation and errors with Active Resource objects. The module overrides Base#save to rescue ActiveResource::ResourceInvalid exceptions and parse the errors returned in the web service response. The module also adds an errors collection that mimics the interface of the errors provided by ActiveRecord::Errors.
74
+ Module to support validation and errors with Active Resource objects. The module overrides Base#save to rescue ActiveResource::ResourceInvalid exceptions and parse the errors returned in the web service response. The module also adds an errors collection that mimics the interface of the errors provided by ActiveModel::Errors.
75
75
 
76
76
  h4. Validating client side resources by overriding validation methods in base class
77
77
 
@@ -309,7 +309,7 @@ Rails follows a simple set of coding style conventions.
309
309
 
310
310
  * Two spaces, no tabs.
311
311
  * No trailing whitespace. Blank lines should not have any space.
312
- * Indent after private/protected.
312
+ * Do not indent after private/protected. Private/protected should have the same indentation as the methods around.
313
313
  * Prefer +&amp;&amp;+/+||+ over +and+/+or+.
314
314
  * Prefer class << self block over self.method for class methods.
315
315
  * +MyClass.my_method(my_arg)+ not +my_method( my_arg )+ or +my_method my_arg+.
@@ -819,13 +819,13 @@ h5. Action View Helper Methods
819
819
 
820
820
  * The +number_to_currency+, +number_with_precision+, +number_to_percentage+, +number_with_delimiter+, and +number_to_human_size+ helpers use the number format settings located in the "number":https://github.com/rails/rails/blob/master/actionpack/lib/action_view/locale/en.yml#L2 scope.
821
821
 
822
- h5. Active Record Methods
822
+ h5. Active Model Methods
823
823
 
824
824
  * +model_name.human+ and +human_attribute_name+ use translations for model names and attribute names if available in the "activerecord.models":https://github.com/rails/rails/blob/master/activerecord/lib/active_record/locale/en.yml#L29 scope. They also support translations for inherited class names (e.g. for use with STI) as explained above in "Error message scopes".
825
825
 
826
- * +ActiveRecord::Errors#generate_message+ (which is used by Active Record validations but may also be used manually) uses +model_name.human+ and +human_attribute_name+ (see above). It also translates the error message and supports translations for inherited class names as explained above in "Error message scopes".
826
+ * +ActiveModel::Errors#generate_message+ (which is used by Active Model validations but may also be used manually) uses +model_name.human+ and +human_attribute_name+ (see above). It also translates the error message and supports translations for inherited class names as explained above in "Error message scopes".
827
827
 
828
- * +ActiveRecord::Errors#full_messages+ prepends the attribute name to the error message using a separator that will be looked up from "activerecord.errors.format.separator":https://github.com/rails/rails/blob/master/actionpack/lib/action_view/locale/en.yml#L91 (and which defaults to +'&nbsp;'+).
828
+ * +ActiveModel::Errors#full_messages+ prepends the attribute name to the error message using a separator that will be looked up from "errors.format":https://github.com/rails/rails/blob/master/activemodel/lib/active_model/locale/en.yml#L4 (and which defaults to +"%{attribute} %{message}"+).
829
829
 
830
830
  h5. Active Support Methods
831
831
 
@@ -2,7 +2,6 @@ module Rails
2
2
  class Application
3
3
  module Finisher
4
4
  include Initializable
5
- $rails_rake_task = nil
6
5
 
7
6
  initializer :add_generator_templates do
8
7
  config.generators.templates.unshift(*paths["lib/templates"].existent)
@@ -49,7 +48,7 @@ module Rails
49
48
  end
50
49
 
51
50
  initializer :eager_load! do
52
- if config.cache_classes && !$rails_rake_task
51
+ if config.cache_classes && !(defined?($rails_rake_task) && $rails_rake_task)
53
52
  ActiveSupport.run_load_hooks(:before_eager_load, self)
54
53
  eager_load!
55
54
  end
@@ -1,5 +1,6 @@
1
1
  require 'open-uri'
2
2
  require 'rbconfig'
3
+ require 'active_support/core_ext/array/wrap'
3
4
 
4
5
  module Rails
5
6
  module Generators
@@ -29,8 +29,8 @@ module Rails
29
29
  case type
30
30
  when /(string|text|binary|integer)\{(\d+)\}/
31
31
  return $1, :limit => $2.to_i
32
- when /decimal\{(\d+),(\d+)\}/
33
- return :decimal, :precision => $1.to_i, :scale => $2.to_i
32
+ when /decimal\{(\d+)(,|\.|\-)(\d+)\}/
33
+ return :decimal, :precision => $1.to_i, :scale => $3.to_i
34
34
  else
35
35
  return type, {}
36
36
  end
@@ -2,7 +2,7 @@ module Rails
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 2
5
- TINY = 0
5
+ TINY = 1
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,606 +1,655 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: railties
3
- version: !ruby/object:Gem::Version
4
- version: 3.2.0
3
+ version: !ruby/object:Gem::Version
4
+ hash: 13
5
5
  prerelease:
6
+ segments:
7
+ - 3
8
+ - 2
9
+ - 1
10
+ version: 3.2.1
6
11
  platform: ruby
7
- authors:
12
+ authors:
8
13
  - David Heinemeier Hansson
9
14
  autorequire:
10
15
  bindir: bin
11
16
  cert_chain: []
12
- date: 2012-01-20 00:00:00.000000000 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
17
+
18
+ date: 2012-01-26 00:00:00 -08:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
15
22
  name: rake
16
- requirement: &70264961786840 !ruby/object:Gem::Requirement
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
17
25
  none: false
18
- requirements:
19
- - - ! '>='
20
- - !ruby/object:Gem::Version
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 49
30
+ segments:
31
+ - 0
32
+ - 8
33
+ - 7
21
34
  version: 0.8.7
22
35
  type: :runtime
23
- prerelease: false
24
- version_requirements: *70264961786840
25
- - !ruby/object:Gem::Dependency
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
26
38
  name: thor
27
- requirement: &70264961786300 !ruby/object:Gem::Requirement
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
28
41
  none: false
29
- requirements:
42
+ requirements:
30
43
  - - ~>
31
- - !ruby/object:Gem::Version
44
+ - !ruby/object:Gem::Version
45
+ hash: 43
46
+ segments:
47
+ - 0
48
+ - 14
49
+ - 6
32
50
  version: 0.14.6
33
51
  type: :runtime
34
- prerelease: false
35
- version_requirements: *70264961786300
36
- - !ruby/object:Gem::Dependency
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
37
54
  name: rack-ssl
38
- requirement: &70264961806680 !ruby/object:Gem::Requirement
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
39
57
  none: false
40
- requirements:
58
+ requirements:
41
59
  - - ~>
42
- - !ruby/object:Gem::Version
60
+ - !ruby/object:Gem::Version
61
+ hash: 31
62
+ segments:
63
+ - 1
64
+ - 3
65
+ - 2
43
66
  version: 1.3.2
44
67
  type: :runtime
45
- prerelease: false
46
- version_requirements: *70264961806680
47
- - !ruby/object:Gem::Dependency
68
+ version_requirements: *id003
69
+ - !ruby/object:Gem::Dependency
48
70
  name: rdoc
49
- requirement: &70264961805900 !ruby/object:Gem::Requirement
71
+ prerelease: false
72
+ requirement: &id004 !ruby/object:Gem::Requirement
50
73
  none: false
51
- requirements:
74
+ requirements:
52
75
  - - ~>
53
- - !ruby/object:Gem::Version
54
- version: '3.4'
76
+ - !ruby/object:Gem::Version
77
+ hash: 15
78
+ segments:
79
+ - 3
80
+ - 4
81
+ version: "3.4"
55
82
  type: :runtime
56
- prerelease: false
57
- version_requirements: *70264961805900
58
- - !ruby/object:Gem::Dependency
83
+ version_requirements: *id004
84
+ - !ruby/object:Gem::Dependency
59
85
  name: activesupport
60
- requirement: &70264961805460 !ruby/object:Gem::Requirement
86
+ prerelease: false
87
+ requirement: &id005 !ruby/object:Gem::Requirement
61
88
  none: false
62
- requirements:
63
- - - =
64
- - !ruby/object:Gem::Version
65
- version: 3.2.0
89
+ requirements:
90
+ - - "="
91
+ - !ruby/object:Gem::Version
92
+ hash: 13
93
+ segments:
94
+ - 3
95
+ - 2
96
+ - 1
97
+ version: 3.2.1
66
98
  type: :runtime
67
- prerelease: false
68
- version_requirements: *70264961805460
69
- - !ruby/object:Gem::Dependency
99
+ version_requirements: *id005
100
+ - !ruby/object:Gem::Dependency
70
101
  name: actionpack
71
- requirement: &70264961804940 !ruby/object:Gem::Requirement
102
+ prerelease: false
103
+ requirement: &id006 !ruby/object:Gem::Requirement
72
104
  none: false
73
- requirements:
74
- - - =
75
- - !ruby/object:Gem::Version
76
- version: 3.2.0
105
+ requirements:
106
+ - - "="
107
+ - !ruby/object:Gem::Version
108
+ hash: 13
109
+ segments:
110
+ - 3
111
+ - 2
112
+ - 1
113
+ version: 3.2.1
77
114
  type: :runtime
78
- prerelease: false
79
- version_requirements: *70264961804940
80
- description: ! 'Rails internals: application bootup, plugins, generators, and rake
81
- tasks.'
115
+ version_requirements: *id006
116
+ description: "Rails internals: application bootup, plugins, generators, and rake tasks."
82
117
  email: david@loudthinking.com
83
- executables:
118
+ executables:
84
119
  - rails
85
120
  extensions: []
121
+
86
122
  extra_rdoc_files: []
87
- files:
123
+
124
+ files:
88
125
  - CHANGELOG.md
89
126
  - README.rdoc
90
127
  - bin/rails
91
- - guides/assets/images/belongs_to.png
92
- - guides/assets/images/book_icon.gif
93
- - guides/assets/images/bullet.gif
94
- - guides/assets/images/challenge.png
95
- - guides/assets/images/chapters_icon.gif
96
- - guides/assets/images/check_bullet.gif
97
- - guides/assets/images/credits_pic_blank.gif
98
- - guides/assets/images/csrf.png
99
- - guides/assets/images/customized_error_messages.png
100
- - guides/assets/images/edge_badge.png
101
- - guides/assets/images/error_messages.png
102
- - guides/assets/images/feature_tile.gif
103
- - guides/assets/images/footer_tile.gif
104
- - guides/assets/images/fxn.png
128
+ - guides/assets/stylesheets/syntaxhighlighter/shThemeRDark.css
129
+ - guides/assets/stylesheets/syntaxhighlighter/shThemeMidnight.css
130
+ - guides/assets/stylesheets/syntaxhighlighter/shCoreRDark.css
131
+ - guides/assets/stylesheets/syntaxhighlighter/shCoreEclipse.css
132
+ - guides/assets/stylesheets/syntaxhighlighter/shThemeDefault.css
133
+ - guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css
134
+ - guides/assets/stylesheets/syntaxhighlighter/shCore.css
135
+ - guides/assets/stylesheets/syntaxhighlighter/shCoreDefault.css
136
+ - guides/assets/stylesheets/syntaxhighlighter/shCoreEmacs.css
137
+ - guides/assets/stylesheets/syntaxhighlighter/shThemeMDUltra.css
138
+ - guides/assets/stylesheets/syntaxhighlighter/shThemeEmacs.css
139
+ - guides/assets/stylesheets/syntaxhighlighter/shThemeDjango.css
140
+ - guides/assets/stylesheets/syntaxhighlighter/shThemeEclipse.css
141
+ - guides/assets/stylesheets/syntaxhighlighter/shCoreMidnight.css
142
+ - guides/assets/stylesheets/syntaxhighlighter/shCoreMDUltra.css
143
+ - guides/assets/stylesheets/syntaxhighlighter/shCoreDjango.css
144
+ - guides/assets/stylesheets/syntaxhighlighter/shThemeFadeToGrey.css
145
+ - guides/assets/stylesheets/syntaxhighlighter/shCoreFadeToGrey.css
146
+ - guides/assets/stylesheets/reset.css
147
+ - guides/assets/stylesheets/main.css
148
+ - guides/assets/stylesheets/print.css
149
+ - guides/assets/stylesheets/fixes.css
150
+ - guides/assets/stylesheets/style.css
151
+ - guides/assets/stylesheets/kindle.css
105
152
  - guides/assets/images/grey_bullet.gif
153
+ - guides/assets/images/vijaydev.jpg
154
+ - guides/assets/images/error_messages.png
155
+ - guides/assets/images/customized_error_messages.png
106
156
  - guides/assets/images/habtm.png
107
- - guides/assets/images/has_many.png
108
- - guides/assets/images/has_many_through.png
109
- - guides/assets/images/has_one.png
110
- - guides/assets/images/has_one_through.png
111
- - guides/assets/images/header_backdrop.png
112
- - guides/assets/images/header_tile.gif
113
- - guides/assets/images/i18n/demo_html_safe.png
114
- - guides/assets/images/i18n/demo_localized_pirate.png
115
- - guides/assets/images/i18n/demo_translated_en.png
116
- - guides/assets/images/i18n/demo_translated_pirate.png
117
- - guides/assets/images/i18n/demo_translation_missing.png
118
- - guides/assets/images/i18n/demo_untranslated.png
119
- - guides/assets/images/icons/callouts/1.png
120
- - guides/assets/images/icons/callouts/10.png
121
- - guides/assets/images/icons/callouts/11.png
122
- - guides/assets/images/icons/callouts/12.png
123
- - guides/assets/images/icons/callouts/13.png
124
- - guides/assets/images/icons/callouts/14.png
157
+ - guides/assets/images/polymorphic.png
158
+ - guides/assets/images/icons/README
159
+ - guides/assets/images/icons/prev.png
160
+ - guides/assets/images/icons/tip.png
161
+ - guides/assets/images/icons/note.png
125
162
  - guides/assets/images/icons/callouts/15.png
163
+ - guides/assets/images/icons/callouts/5.png
126
164
  - guides/assets/images/icons/callouts/2.png
165
+ - guides/assets/images/icons/callouts/11.png
166
+ - guides/assets/images/icons/callouts/14.png
127
167
  - guides/assets/images/icons/callouts/3.png
128
- - guides/assets/images/icons/callouts/4.png
129
- - guides/assets/images/icons/callouts/5.png
168
+ - guides/assets/images/icons/callouts/1.png
130
169
  - guides/assets/images/icons/callouts/6.png
170
+ - guides/assets/images/icons/callouts/10.png
171
+ - guides/assets/images/icons/callouts/13.png
131
172
  - guides/assets/images/icons/callouts/7.png
173
+ - guides/assets/images/icons/callouts/12.png
132
174
  - guides/assets/images/icons/callouts/8.png
175
+ - guides/assets/images/icons/callouts/4.png
133
176
  - guides/assets/images/icons/callouts/9.png
177
+ - guides/assets/images/icons/up.png
178
+ - guides/assets/images/icons/warning.png
179
+ - guides/assets/images/icons/home.png
180
+ - guides/assets/images/icons/next.png
134
181
  - guides/assets/images/icons/caution.png
135
182
  - guides/assets/images/icons/example.png
136
- - guides/assets/images/icons/home.png
137
183
  - guides/assets/images/icons/important.png
138
- - guides/assets/images/icons/next.png
139
- - guides/assets/images/icons/note.png
140
- - guides/assets/images/icons/prev.png
141
- - guides/assets/images/icons/README
142
- - guides/assets/images/icons/tip.png
143
- - guides/assets/images/icons/up.png
144
- - guides/assets/images/icons/warning.png
145
- - guides/assets/images/jaimeiniesta.jpg
184
+ - guides/assets/images/has_one_through.png
185
+ - guides/assets/images/rails_welcome.png
186
+ - guides/assets/images/footer_tile.gif
187
+ - guides/assets/images/bullet.gif
188
+ - guides/assets/images/chapters_icon.gif
189
+ - guides/assets/images/csrf.png
190
+ - guides/assets/images/tab_note.gif
146
191
  - guides/assets/images/nav_arrow.gif
147
- - guides/assets/images/polymorphic.png
192
+ - guides/assets/images/has_many_through.png
193
+ - guides/assets/images/feature_tile.gif
194
+ - guides/assets/images/tab_yellow.gif
195
+ - guides/assets/images/session_fixation.png
196
+ - guides/assets/images/has_many.png
197
+ - guides/assets/images/jaimeiniesta.jpg
198
+ - guides/assets/images/tab_info.gif
199
+ - guides/assets/images/challenge.png
200
+ - guides/assets/images/credits_pic_blank.gif
148
201
  - guides/assets/images/posts_index.png
149
- - guides/assets/images/radar.png
202
+ - guides/assets/images/check_bullet.gif
203
+ - guides/assets/images/validation_error_messages.png
204
+ - guides/assets/images/edge_badge.png
205
+ - guides/assets/images/fxn.png
206
+ - guides/assets/images/rails_logo_remix.gif
207
+ - guides/assets/images/belongs_to.png
208
+ - guides/assets/images/tab_yellow.png
209
+ - guides/assets/images/header_tile.gif
150
210
  - guides/assets/images/rails_guides_kindle_cover.jpg
211
+ - guides/assets/images/i18n/demo_untranslated.png
212
+ - guides/assets/images/i18n/demo_translation_missing.png
213
+ - guides/assets/images/i18n/demo_localized_pirate.png
214
+ - guides/assets/images/i18n/demo_translated_en.png
215
+ - guides/assets/images/i18n/demo_html_safe.png
216
+ - guides/assets/images/i18n/demo_translated_pirate.png
217
+ - guides/assets/images/has_one.png
218
+ - guides/assets/images/header_backdrop.png
151
219
  - guides/assets/images/rails_guides_logo.gif
152
- - guides/assets/images/rails_logo_remix.gif
153
- - guides/assets/images/rails_welcome.png
154
- - guides/assets/images/session_fixation.png
220
+ - guides/assets/images/book_icon.gif
155
221
  - guides/assets/images/tab_grey.gif
156
- - guides/assets/images/tab_info.gif
157
- - guides/assets/images/tab_note.gif
222
+ - guides/assets/images/radar.png
158
223
  - guides/assets/images/tab_red.gif
159
- - guides/assets/images/tab_yellow.gif
160
- - guides/assets/images/tab_yellow.png
161
- - guides/assets/images/validation_error_messages.png
162
- - guides/assets/images/vijaydev.jpg
163
- - guides/assets/javascripts/guides.js
164
- - guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js
165
- - guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js
166
- - guides/assets/javascripts/syntaxhighlighter/shBrushBash.js
167
- - guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js
168
- - guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js
224
+ - guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js
169
225
  - guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js
170
- - guides/assets/javascripts/syntaxhighlighter/shBrushCss.js
171
226
  - guides/assets/javascripts/syntaxhighlighter/shBrushDelphi.js
172
- - guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js
173
- - guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js
174
- - guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js
227
+ - guides/assets/javascripts/syntaxhighlighter/shBrushSql.js
228
+ - guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js
229
+ - guides/assets/javascripts/syntaxhighlighter/shBrushBash.js
230
+ - guides/assets/javascripts/syntaxhighlighter/shBrushCss.js
175
231
  - guides/assets/javascripts/syntaxhighlighter/shBrushJava.js
176
- - guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js
232
+ - guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js
177
233
  - guides/assets/javascripts/syntaxhighlighter/shBrushJScript.js
234
+ - guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js
235
+ - guides/assets/javascripts/syntaxhighlighter/shBrushXml.js
236
+ - guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js
237
+ - guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js
238
+ - guides/assets/javascripts/syntaxhighlighter/shBrushScala.js
239
+ - guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js
240
+ - guides/assets/javascripts/syntaxhighlighter/shCore.js
178
241
  - guides/assets/javascripts/syntaxhighlighter/shBrushPerl.js
179
- - guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js
242
+ - guides/assets/javascripts/syntaxhighlighter/shBrushVb.js
180
243
  - guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js
244
+ - guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js
181
245
  - guides/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js
182
- - guides/assets/javascripts/syntaxhighlighter/shBrushPython.js
183
- - guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js
184
246
  - guides/assets/javascripts/syntaxhighlighter/shBrushSass.js
185
- - guides/assets/javascripts/syntaxhighlighter/shBrushScala.js
186
- - guides/assets/javascripts/syntaxhighlighter/shBrushSql.js
187
- - guides/assets/javascripts/syntaxhighlighter/shBrushVb.js
188
- - guides/assets/javascripts/syntaxhighlighter/shBrushXml.js
189
- - guides/assets/javascripts/syntaxhighlighter/shCore.js
190
- - guides/assets/stylesheets/fixes.css
191
- - guides/assets/stylesheets/kindle.css
192
- - guides/assets/stylesheets/main.css
193
- - guides/assets/stylesheets/print.css
194
- - guides/assets/stylesheets/reset.css
195
- - guides/assets/stylesheets/style.css
196
- - guides/assets/stylesheets/syntaxhighlighter/shCore.css
197
- - guides/assets/stylesheets/syntaxhighlighter/shCoreDefault.css
198
- - guides/assets/stylesheets/syntaxhighlighter/shCoreDjango.css
199
- - guides/assets/stylesheets/syntaxhighlighter/shCoreEclipse.css
200
- - guides/assets/stylesheets/syntaxhighlighter/shCoreEmacs.css
201
- - guides/assets/stylesheets/syntaxhighlighter/shCoreFadeToGrey.css
202
- - guides/assets/stylesheets/syntaxhighlighter/shCoreMDUltra.css
203
- - guides/assets/stylesheets/syntaxhighlighter/shCoreMidnight.css
204
- - guides/assets/stylesheets/syntaxhighlighter/shCoreRDark.css
205
- - guides/assets/stylesheets/syntaxhighlighter/shThemeDefault.css
206
- - guides/assets/stylesheets/syntaxhighlighter/shThemeDjango.css
207
- - guides/assets/stylesheets/syntaxhighlighter/shThemeEclipse.css
208
- - guides/assets/stylesheets/syntaxhighlighter/shThemeEmacs.css
209
- - guides/assets/stylesheets/syntaxhighlighter/shThemeFadeToGrey.css
210
- - guides/assets/stylesheets/syntaxhighlighter/shThemeMDUltra.css
211
- - guides/assets/stylesheets/syntaxhighlighter/shThemeMidnight.css
212
- - guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css
213
- - guides/assets/stylesheets/syntaxhighlighter/shThemeRDark.css
214
- - guides/code/getting_started/app/assets/images/rails.png
215
- - guides/code/getting_started/app/assets/javascripts/application.js
216
- - guides/code/getting_started/app/assets/javascripts/comments.js.coffee
217
- - guides/code/getting_started/app/assets/javascripts/home.js.coffee
218
- - guides/code/getting_started/app/assets/javascripts/posts.js.coffee
219
- - guides/code/getting_started/app/assets/stylesheets/application.css
220
- - guides/code/getting_started/app/assets/stylesheets/comments.css.scss
221
- - guides/code/getting_started/app/assets/stylesheets/home.css.scss
222
- - guides/code/getting_started/app/assets/stylesheets/posts.css.scss
223
- - guides/code/getting_started/app/assets/stylesheets/scaffolds.css.scss
224
- - guides/code/getting_started/app/controllers/application_controller.rb
225
- - guides/code/getting_started/app/controllers/comments_controller.rb
226
- - guides/code/getting_started/app/controllers/home_controller.rb
227
- - guides/code/getting_started/app/controllers/posts_controller.rb
228
- - guides/code/getting_started/app/helpers/application_helper.rb
229
- - guides/code/getting_started/app/helpers/comments_helper.rb
230
- - guides/code/getting_started/app/helpers/home_helper.rb
231
- - guides/code/getting_started/app/helpers/posts_helper.rb
232
- - guides/code/getting_started/app/models/comment.rb
233
- - guides/code/getting_started/app/models/post.rb
234
- - guides/code/getting_started/app/models/tag.rb
235
- - guides/code/getting_started/app/views/comments/_comment.html.erb
236
- - guides/code/getting_started/app/views/comments/_form.html.erb
237
- - guides/code/getting_started/app/views/home/index.html.erb
238
- - guides/code/getting_started/app/views/layouts/application.html.erb
239
- - guides/code/getting_started/app/views/posts/_form.html.erb
240
- - guides/code/getting_started/app/views/posts/edit.html.erb
241
- - guides/code/getting_started/app/views/posts/index.html.erb
242
- - guides/code/getting_started/app/views/posts/new.html.erb
243
- - guides/code/getting_started/app/views/posts/show.html.erb
244
- - guides/code/getting_started/app/views/tags/_form.html.erb
245
- - guides/code/getting_started/config/application.rb
246
- - guides/code/getting_started/config/boot.rb
247
- - guides/code/getting_started/config/database.yml
248
- - guides/code/getting_started/config/environment.rb
249
- - guides/code/getting_started/config/environments/development.rb
250
- - guides/code/getting_started/config/environments/production.rb
251
- - guides/code/getting_started/config/environments/test.rb
252
- - guides/code/getting_started/config/initializers/backtrace_silencers.rb
253
- - guides/code/getting_started/config/initializers/inflections.rb
254
- - guides/code/getting_started/config/initializers/mime_types.rb
255
- - guides/code/getting_started/config/initializers/secret_token.rb
256
- - guides/code/getting_started/config/initializers/session_store.rb
257
- - guides/code/getting_started/config/initializers/wrap_parameters.rb
258
- - guides/code/getting_started/config/locales/en.yml
259
- - guides/code/getting_started/config/routes.rb
260
- - guides/code/getting_started/config.ru
261
- - guides/code/getting_started/db/migrate/20110901012504_create_posts.rb
262
- - guides/code/getting_started/db/migrate/20110901012815_create_comments.rb
263
- - guides/code/getting_started/db/migrate/20110901013701_create_tags.rb
264
- - guides/code/getting_started/db/schema.rb
265
- - guides/code/getting_started/db/seeds.rb
266
- - guides/code/getting_started/doc/README_FOR_APP
267
- - guides/code/getting_started/Gemfile
268
- - guides/code/getting_started/public/404.html
269
- - guides/code/getting_started/public/422.html
270
- - guides/code/getting_started/public/500.html
271
- - guides/code/getting_started/public/favicon.ico
272
- - guides/code/getting_started/public/robots.txt
273
- - guides/code/getting_started/Rakefile
274
- - guides/code/getting_started/README.rdoc
275
- - guides/code/getting_started/script/rails
276
- - guides/code/getting_started/test/fixtures/comments.yml
277
- - guides/code/getting_started/test/fixtures/posts.yml
278
- - guides/code/getting_started/test/fixtures/tags.yml
279
- - guides/code/getting_started/test/functional/comments_controller_test.rb
280
- - guides/code/getting_started/test/functional/home_controller_test.rb
281
- - guides/code/getting_started/test/functional/posts_controller_test.rb
282
- - guides/code/getting_started/test/performance/browsing_test.rb
283
- - guides/code/getting_started/test/test_helper.rb
284
- - guides/code/getting_started/test/unit/comment_test.rb
285
- - guides/code/getting_started/test/unit/helpers/comments_helper_test.rb
286
- - guides/code/getting_started/test/unit/helpers/home_helper_test.rb
287
- - guides/code/getting_started/test/unit/helpers/posts_helper_test.rb
288
- - guides/code/getting_started/test/unit/post_test.rb
289
- - guides/code/getting_started/test/unit/tag_test.rb
247
+ - guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js
248
+ - guides/assets/javascripts/syntaxhighlighter/shBrushPython.js
249
+ - guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js
250
+ - guides/assets/javascripts/guides.js
290
251
  - guides/rails_guides/generator.rb
291
- - guides/rails_guides/helpers.rb
292
252
  - guides/rails_guides/indexer.rb
293
- - guides/rails_guides/levenshtein.rb
294
253
  - guides/rails_guides/textile_extensions.rb
295
- - guides/rails_guides.rb
296
- - guides/source/2_2_release_notes.textile
297
- - guides/source/2_3_release_notes.textile
298
- - guides/source/3_0_release_notes.textile
299
- - guides/source/3_1_release_notes.textile
300
- - guides/source/3_2_release_notes.textile
301
- - guides/source/_license.html.erb
302
- - guides/source/_welcome.html.erb
303
- - guides/source/action_controller_overview.textile
304
- - guides/source/action_mailer_basics.textile
254
+ - guides/rails_guides/helpers.rb
255
+ - guides/rails_guides/levenshtein.rb
256
+ - guides/w3c_validator.rb
305
257
  - guides/source/action_view_overview.textile
306
- - guides/source/active_model_basics.textile
307
- - guides/source/active_record_basics.textile
308
- - guides/source/active_record_querying.textile
309
- - guides/source/active_record_validations_callbacks.textile
258
+ - guides/source/kindle/welcome.html.erb
259
+ - guides/source/kindle/rails_guides.opf.erb
260
+ - guides/source/kindle/KINDLE.md
261
+ - guides/source/kindle/toc.ncx.erb
262
+ - guides/source/kindle/layout.html.erb
263
+ - guides/source/kindle/toc.html.erb
264
+ - guides/source/kindle/copyright.html.erb
310
265
  - guides/source/active_resource_basics.textile
311
- - guides/source/active_support_core_extensions.textile
312
- - guides/source/ajax_on_rails.textile
313
- - guides/source/api_documentation_guidelines.textile
314
- - guides/source/asset_pipeline.textile
315
- - guides/source/association_basics.textile
316
- - guides/source/caching_with_rails.textile
266
+ - guides/source/index.html.erb
267
+ - guides/source/i18n.textile
268
+ - guides/source/getting_started.textile
317
269
  - guides/source/command_line.textile
318
270
  - guides/source/configuring.textile
319
- - guides/source/contributing_to_ruby_on_rails.textile
320
- - guides/source/credits.html.erb
321
- - guides/source/debugging_rails_applications.textile
271
+ - guides/source/action_mailer_basics.textile
272
+ - guides/source/layouts_and_rendering.textile
273
+ - guides/source/2_3_release_notes.textile
274
+ - guides/source/security.textile
275
+ - guides/source/api_documentation_guidelines.textile
276
+ - guides/source/initialization.textile
277
+ - guides/source/form_helpers.textile
278
+ - guides/source/nested_model_forms.textile
279
+ - guides/source/_welcome.html.erb
322
280
  - guides/source/documents.yaml
281
+ - guides/source/ajax_on_rails.textile
282
+ - guides/source/active_model_basics.textile
323
283
  - guides/source/engines.textile
324
- - guides/source/form_helpers.textile
284
+ - guides/source/action_controller_overview.textile
285
+ - guides/source/rails_application_templates.textile
286
+ - guides/source/plugins.textile
287
+ - guides/source/3_1_release_notes.textile
288
+ - guides/source/routing.textile
325
289
  - guides/source/generators.textile
326
- - guides/source/getting_started.textile
327
- - guides/source/i18n.textile
328
- - guides/source/index.html.erb
329
- - guides/source/initialization.textile
330
- - guides/source/kindle/copyright.html.erb
331
- - guides/source/kindle/KINDLE.md
332
- - guides/source/kindle/layout.html.erb
333
- - guides/source/kindle/rails_guides.opf.erb
334
- - guides/source/kindle/toc.html.erb
335
- - guides/source/kindle/toc.ncx.erb
336
- - guides/source/kindle/welcome.html.erb
337
- - guides/source/layout.html.erb
338
- - guides/source/layouts_and_rendering.textile
290
+ - guides/source/2_2_release_notes.textile
291
+ - guides/source/association_basics.textile
292
+ - guides/source/active_record_validations_callbacks.textile
293
+ - guides/source/testing.textile
294
+ - guides/source/asset_pipeline.textile
295
+ - guides/source/_license.html.erb
296
+ - guides/source/active_support_core_extensions.textile
297
+ - guides/source/rails_on_rack.textile
298
+ - guides/source/credits.html.erb
299
+ - guides/source/3_2_release_notes.textile
339
300
  - guides/source/migrations.textile
340
- - guides/source/nested_model_forms.textile
301
+ - guides/source/active_record_basics.textile
302
+ - guides/source/layout.html.erb
303
+ - guides/source/active_record_querying.textile
304
+ - guides/source/3_0_release_notes.textile
305
+ - guides/source/contributing_to_ruby_on_rails.textile
341
306
  - guides/source/performance_testing.textile
342
- - guides/source/plugins.textile
343
- - guides/source/rails_application_templates.textile
344
- - guides/source/rails_on_rack.textile
345
- - guides/source/routing.textile
346
307
  - guides/source/ruby_on_rails_guides_guidelines.textile
347
- - guides/source/security.textile
348
- - guides/source/testing.textile
349
- - guides/w3c_validator.rb
350
- - lib/rails/all.rb
351
- - lib/rails/application/bootstrap.rb
352
- - lib/rails/application/configuration.rb
353
- - lib/rails/application/finisher.rb
354
- - lib/rails/application/railties.rb
355
- - lib/rails/application/route_inspector.rb
356
- - lib/rails/application/routes_reloader.rb
357
- - lib/rails/application.rb
358
- - lib/rails/backtrace_cleaner.rb
359
- - lib/rails/cli.rb
360
- - lib/rails/code_statistics.rb
361
- - lib/rails/commands/application.rb
308
+ - guides/source/caching_with_rails.textile
309
+ - guides/source/debugging_rails_applications.textile
310
+ - guides/code/getting_started/db/seeds.rb
311
+ - guides/code/getting_started/db/schema.rb
312
+ - guides/code/getting_started/db/migrate/20110901012815_create_comments.rb
313
+ - guides/code/getting_started/db/migrate/20110901012504_create_posts.rb
314
+ - guides/code/getting_started/db/migrate/20110901013701_create_tags.rb
315
+ - guides/code/getting_started/script/rails
316
+ - guides/code/getting_started/doc/README_FOR_APP
317
+ - guides/code/getting_started/test/performance/browsing_test.rb
318
+ - guides/code/getting_started/test/test_helper.rb
319
+ - guides/code/getting_started/test/unit/tag_test.rb
320
+ - guides/code/getting_started/test/unit/comment_test.rb
321
+ - guides/code/getting_started/test/unit/post_test.rb
322
+ - guides/code/getting_started/test/unit/helpers/posts_helper_test.rb
323
+ - guides/code/getting_started/test/unit/helpers/home_helper_test.rb
324
+ - guides/code/getting_started/test/unit/helpers/comments_helper_test.rb
325
+ - guides/code/getting_started/test/functional/comments_controller_test.rb
326
+ - guides/code/getting_started/test/functional/posts_controller_test.rb
327
+ - guides/code/getting_started/test/functional/home_controller_test.rb
328
+ - guides/code/getting_started/test/fixtures/tags.yml
329
+ - guides/code/getting_started/test/fixtures/comments.yml
330
+ - guides/code/getting_started/test/fixtures/posts.yml
331
+ - guides/code/getting_started/Rakefile
332
+ - guides/code/getting_started/app/assets/stylesheets/posts.css.scss
333
+ - guides/code/getting_started/app/assets/stylesheets/application.css
334
+ - guides/code/getting_started/app/assets/stylesheets/home.css.scss
335
+ - guides/code/getting_started/app/assets/stylesheets/comments.css.scss
336
+ - guides/code/getting_started/app/assets/stylesheets/scaffolds.css.scss
337
+ - guides/code/getting_started/app/assets/images/rails.png
338
+ - guides/code/getting_started/app/assets/javascripts/posts.js.coffee
339
+ - guides/code/getting_started/app/assets/javascripts/application.js
340
+ - guides/code/getting_started/app/assets/javascripts/comments.js.coffee
341
+ - guides/code/getting_started/app/assets/javascripts/home.js.coffee
342
+ - guides/code/getting_started/app/controllers/home_controller.rb
343
+ - guides/code/getting_started/app/controllers/application_controller.rb
344
+ - guides/code/getting_started/app/controllers/posts_controller.rb
345
+ - guides/code/getting_started/app/controllers/comments_controller.rb
346
+ - guides/code/getting_started/app/views/layouts/application.html.erb
347
+ - guides/code/getting_started/app/views/home/index.html.erb
348
+ - guides/code/getting_started/app/views/comments/_comment.html.erb
349
+ - guides/code/getting_started/app/views/comments/_form.html.erb
350
+ - guides/code/getting_started/app/views/tags/_form.html.erb
351
+ - guides/code/getting_started/app/views/posts/index.html.erb
352
+ - guides/code/getting_started/app/views/posts/edit.html.erb
353
+ - guides/code/getting_started/app/views/posts/show.html.erb
354
+ - guides/code/getting_started/app/views/posts/new.html.erb
355
+ - guides/code/getting_started/app/views/posts/_form.html.erb
356
+ - guides/code/getting_started/app/models/comment.rb
357
+ - guides/code/getting_started/app/models/tag.rb
358
+ - guides/code/getting_started/app/models/post.rb
359
+ - guides/code/getting_started/app/helpers/application_helper.rb
360
+ - guides/code/getting_started/app/helpers/comments_helper.rb
361
+ - guides/code/getting_started/app/helpers/posts_helper.rb
362
+ - guides/code/getting_started/app/helpers/home_helper.rb
363
+ - guides/code/getting_started/README.rdoc
364
+ - guides/code/getting_started/public/favicon.ico
365
+ - guides/code/getting_started/public/500.html
366
+ - guides/code/getting_started/public/422.html
367
+ - guides/code/getting_started/public/robots.txt
368
+ - guides/code/getting_started/public/404.html
369
+ - guides/code/getting_started/config/initializers/mime_types.rb
370
+ - guides/code/getting_started/config/initializers/session_store.rb
371
+ - guides/code/getting_started/config/initializers/secret_token.rb
372
+ - guides/code/getting_started/config/initializers/inflections.rb
373
+ - guides/code/getting_started/config/initializers/backtrace_silencers.rb
374
+ - guides/code/getting_started/config/initializers/wrap_parameters.rb
375
+ - guides/code/getting_started/config/environments/production.rb
376
+ - guides/code/getting_started/config/environments/test.rb
377
+ - guides/code/getting_started/config/environments/development.rb
378
+ - guides/code/getting_started/config/routes.rb
379
+ - guides/code/getting_started/config/application.rb
380
+ - guides/code/getting_started/config/locales/en.yml
381
+ - guides/code/getting_started/config/boot.rb
382
+ - guides/code/getting_started/config/database.yml
383
+ - guides/code/getting_started/config/environment.rb
384
+ - guides/code/getting_started/Gemfile
385
+ - guides/code/getting_started/config.ru
386
+ - guides/rails_guides.rb
387
+ - lib/rails.rb
388
+ - lib/rails/engine/railties.rb
389
+ - lib/rails/engine/configuration.rb
390
+ - lib/rails/engine/commands.rb
391
+ - lib/rails/engine.rb
392
+ - lib/rails/railtie.rb
393
+ - lib/rails/console/app.rb
394
+ - lib/rails/console/helpers.rb
362
395
  - lib/rails/commands/benchmarker.rb
363
- - lib/rails/commands/console.rb
364
- - lib/rails/commands/dbconsole.rb
365
- - lib/rails/commands/destroy.rb
366
- - lib/rails/commands/generate.rb
367
- - lib/rails/commands/plugin.rb
396
+ - lib/rails/commands/server.rb
368
397
  - lib/rails/commands/plugin_new.rb
398
+ - lib/rails/commands/application.rb
399
+ - lib/rails/commands/generate.rb
369
400
  - lib/rails/commands/profiler.rb
370
401
  - lib/rails/commands/runner.rb
371
- - lib/rails/commands/server.rb
402
+ - lib/rails/commands/dbconsole.rb
372
403
  - lib/rails/commands/update.rb
373
- - lib/rails/commands.rb
404
+ - lib/rails/commands/plugin.rb
405
+ - lib/rails/commands/console.rb
406
+ - lib/rails/commands/destroy.rb
407
+ - lib/rails/initializable.rb
408
+ - lib/rails/tasks.rb
409
+ - lib/rails/code_statistics.rb
410
+ - lib/rails/all.rb
374
411
  - lib/rails/configuration.rb
375
- - lib/rails/console/app.rb
376
- - lib/rails/console/helpers.rb
377
- - lib/rails/engine/commands.rb
378
- - lib/rails/engine/configuration.rb
379
- - lib/rails/engine/railties.rb
380
- - lib/rails/engine.rb
381
- - lib/rails/generators/actions.rb
382
- - lib/rails/generators/active_model.rb
383
- - lib/rails/generators/app_base.rb
384
- - lib/rails/generators/base.rb
385
- - lib/rails/generators/css/assets/assets_generator.rb
386
- - lib/rails/generators/css/assets/templates/stylesheet.css
387
- - lib/rails/generators/css/scaffold/scaffold_generator.rb
388
- - lib/rails/generators/erb/controller/controller_generator.rb
389
- - lib/rails/generators/erb/controller/templates/view.html.erb
412
+ - lib/rails/info.rb
413
+ - lib/rails/backtrace_cleaner.rb
390
414
  - lib/rails/generators/erb/mailer/mailer_generator.rb
391
415
  - lib/rails/generators/erb/mailer/templates/view.text.erb
392
416
  - lib/rails/generators/erb/scaffold/scaffold_generator.rb
393
- - lib/rails/generators/erb/scaffold/templates/_form.html.erb
394
- - lib/rails/generators/erb/scaffold/templates/edit.html.erb
395
417
  - lib/rails/generators/erb/scaffold/templates/index.html.erb
396
- - lib/rails/generators/erb/scaffold/templates/new.html.erb
418
+ - lib/rails/generators/erb/scaffold/templates/edit.html.erb
397
419
  - lib/rails/generators/erb/scaffold/templates/show.html.erb
420
+ - lib/rails/generators/erb/scaffold/templates/new.html.erb
421
+ - lib/rails/generators/erb/scaffold/templates/_form.html.erb
422
+ - lib/rails/generators/erb/controller/controller_generator.rb
423
+ - lib/rails/generators/erb/controller/templates/view.html.erb
424
+ - lib/rails/generators/resource_helpers.rb
425
+ - lib/rails/generators/test_case.rb
398
426
  - lib/rails/generators/erb.rb
399
- - lib/rails/generators/generated_attribute.rb
400
427
  - lib/rails/generators/js/assets/assets_generator.rb
401
428
  - lib/rails/generators/js/assets/templates/javascript.js
402
- - lib/rails/generators/migration.rb
429
+ - lib/rails/generators/base.rb
430
+ - lib/rails/generators/app_base.rb
431
+ - lib/rails/generators/test_unit/observer/observer_generator.rb
432
+ - lib/rails/generators/test_unit/observer/templates/unit_test.rb
433
+ - lib/rails/generators/test_unit/performance/performance_generator.rb
434
+ - lib/rails/generators/test_unit/performance/templates/performance_test.rb
435
+ - lib/rails/generators/test_unit/mailer/mailer_generator.rb
436
+ - lib/rails/generators/test_unit/mailer/templates/functional_test.rb
437
+ - lib/rails/generators/test_unit/helper/helper_generator.rb
438
+ - lib/rails/generators/test_unit/helper/templates/helper_test.rb
439
+ - lib/rails/generators/test_unit/scaffold/scaffold_generator.rb
440
+ - lib/rails/generators/test_unit/scaffold/templates/functional_test.rb
441
+ - lib/rails/generators/test_unit/plugin/plugin_generator.rb
442
+ - lib/rails/generators/test_unit/plugin/templates/test_helper.rb
443
+ - lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt
444
+ - lib/rails/generators/test_unit/integration/integration_generator.rb
445
+ - lib/rails/generators/test_unit/integration/templates/integration_test.rb
446
+ - lib/rails/generators/test_unit/model/model_generator.rb
447
+ - lib/rails/generators/test_unit/model/templates/unit_test.rb
448
+ - lib/rails/generators/test_unit/model/templates/fixtures.yml
449
+ - lib/rails/generators/test_unit/controller/controller_generator.rb
450
+ - lib/rails/generators/test_unit/controller/templates/functional_test.rb
451
+ - lib/rails/generators/generated_attribute.rb
452
+ - lib/rails/generators/active_model.rb
403
453
  - lib/rails/generators/named_base.rb
454
+ - lib/rails/generators/rails/observer/observer_generator.rb
455
+ - lib/rails/generators/rails/observer/USAGE
456
+ - lib/rails/generators/rails/integration_test/integration_test_generator.rb
457
+ - lib/rails/generators/rails/integration_test/USAGE
458
+ - lib/rails/generators/rails/performance_test/USAGE
459
+ - lib/rails/generators/rails/performance_test/performance_test_generator.rb
460
+ - lib/rails/generators/rails/assets/assets_generator.rb
461
+ - lib/rails/generators/rails/assets/USAGE
462
+ - lib/rails/generators/rails/assets/templates/javascript.js
463
+ - lib/rails/generators/rails/assets/templates/stylesheet.css
464
+ - lib/rails/generators/rails/resource/USAGE
465
+ - lib/rails/generators/rails/resource/resource_generator.rb
466
+ - lib/rails/generators/rails/helper/helper_generator.rb
467
+ - lib/rails/generators/rails/helper/USAGE
468
+ - lib/rails/generators/rails/helper/templates/helper.rb
469
+ - lib/rails/generators/rails/scaffold/USAGE
470
+ - lib/rails/generators/rails/scaffold/scaffold_generator.rb
471
+ - lib/rails/generators/rails/scaffold/templates/scaffold.css
472
+ - lib/rails/generators/rails/task/USAGE
473
+ - lib/rails/generators/rails/task/task_generator.rb
474
+ - lib/rails/generators/rails/task/templates/task.rb
475
+ - lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb
476
+ - lib/rails/generators/rails/scaffold_controller/USAGE
477
+ - lib/rails/generators/rails/scaffold_controller/templates/controller.rb
404
478
  - lib/rails/generators/rails/app/app_generator.rb
479
+ - lib/rails/generators/rails/app/USAGE
480
+ - lib/rails/generators/rails/app/templates/README
481
+ - lib/rails/generators/rails/app/templates/db/seeds.rb.tt
482
+ - lib/rails/generators/rails/app/templates/script/rails
483
+ - lib/rails/generators/rails/app/templates/doc/README_FOR_APP
484
+ - lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb
485
+ - lib/rails/generators/rails/app/templates/test/test_helper.rb
486
+ - lib/rails/generators/rails/app/templates/gitignore
487
+ - lib/rails/generators/rails/app/templates/Rakefile
488
+ - lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css
405
489
  - lib/rails/generators/rails/app/templates/app/assets/images/rails.png
406
490
  - lib/rails/generators/rails/app/templates/app/assets/javascripts/application.js.tt
407
- - lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css
408
491
  - lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb
409
- - lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb
410
492
  - lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt
493
+ - lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb
494
+ - lib/rails/generators/rails/app/templates/public/favicon.ico
495
+ - lib/rails/generators/rails/app/templates/public/500.html
496
+ - lib/rails/generators/rails/app/templates/public/422.html
497
+ - lib/rails/generators/rails/app/templates/public/index.html
498
+ - lib/rails/generators/rails/app/templates/public/robots.txt
499
+ - lib/rails/generators/rails/app/templates/public/404.html
500
+ - lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb
501
+ - lib/rails/generators/rails/app/templates/config/initializers/inflections.rb
502
+ - lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt
503
+ - lib/rails/generators/rails/app/templates/config/initializers/session_store.rb.tt
504
+ - lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb
505
+ - lib/rails/generators/rails/app/templates/config/initializers/secret_token.rb.tt
506
+ - lib/rails/generators/rails/app/templates/config/environments/production.rb.tt
507
+ - lib/rails/generators/rails/app/templates/config/environments/development.rb.tt
508
+ - lib/rails/generators/rails/app/templates/config/environments/test.rb.tt
509
+ - lib/rails/generators/rails/app/templates/config/routes.rb
411
510
  - lib/rails/generators/rails/app/templates/config/application.rb
511
+ - lib/rails/generators/rails/app/templates/config/locales/en.yml
412
512
  - lib/rails/generators/rails/app/templates/config/boot.rb
413
- - lib/rails/generators/rails/app/templates/config/databases/frontbase.yml
513
+ - lib/rails/generators/rails/app/templates/config/environment.rb
414
514
  - lib/rails/generators/rails/app/templates/config/databases/ibm_db.yml
415
- - lib/rails/generators/rails/app/templates/config/databases/jdbc.yml
416
515
  - lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml
417
- - lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml
418
- - lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml
419
- - lib/rails/generators/rails/app/templates/config/databases/mysql.yml
420
- - lib/rails/generators/rails/app/templates/config/databases/oracle.yml
421
516
  - lib/rails/generators/rails/app/templates/config/databases/postgresql.yml
517
+ - lib/rails/generators/rails/app/templates/config/databases/jdbc.yml
518
+ - lib/rails/generators/rails/app/templates/config/databases/oracle.yml
422
519
  - lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml
423
- - lib/rails/generators/rails/app/templates/config/environment.rb
424
- - lib/rails/generators/rails/app/templates/config/environments/development.rb.tt
425
- - lib/rails/generators/rails/app/templates/config/environments/production.rb.tt
426
- - lib/rails/generators/rails/app/templates/config/environments/test.rb.tt
427
- - lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb
428
- - lib/rails/generators/rails/app/templates/config/initializers/inflections.rb
429
- - lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb
430
- - lib/rails/generators/rails/app/templates/config/initializers/secret_token.rb.tt
431
- - lib/rails/generators/rails/app/templates/config/initializers/session_store.rb.tt
432
- - lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt
433
- - lib/rails/generators/rails/app/templates/config/locales/en.yml
434
- - lib/rails/generators/rails/app/templates/config/routes.rb
435
- - lib/rails/generators/rails/app/templates/config.ru
436
- - lib/rails/generators/rails/app/templates/db/seeds.rb.tt
437
- - lib/rails/generators/rails/app/templates/doc/README_FOR_APP
520
+ - lib/rails/generators/rails/app/templates/config/databases/mysql.yml
521
+ - lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml
522
+ - lib/rails/generators/rails/app/templates/config/databases/frontbase.yml
523
+ - lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml
438
524
  - lib/rails/generators/rails/app/templates/Gemfile
439
- - lib/rails/generators/rails/app/templates/gitignore
440
- - lib/rails/generators/rails/app/templates/public/404.html
441
- - lib/rails/generators/rails/app/templates/public/422.html
442
- - lib/rails/generators/rails/app/templates/public/500.html
443
- - lib/rails/generators/rails/app/templates/public/favicon.ico
444
- - lib/rails/generators/rails/app/templates/public/index.html
445
- - lib/rails/generators/rails/app/templates/public/robots.txt
446
- - lib/rails/generators/rails/app/templates/Rakefile
447
- - lib/rails/generators/rails/app/templates/README
448
- - lib/rails/generators/rails/app/templates/script/rails
449
- - lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb
450
- - lib/rails/generators/rails/app/templates/test/test_helper.rb
451
- - lib/rails/generators/rails/app/USAGE
452
- - lib/rails/generators/rails/assets/assets_generator.rb
453
- - lib/rails/generators/rails/assets/templates/javascript.js
454
- - lib/rails/generators/rails/assets/templates/stylesheet.css
455
- - lib/rails/generators/rails/assets/USAGE
456
- - lib/rails/generators/rails/controller/controller_generator.rb
457
- - lib/rails/generators/rails/controller/templates/controller.rb
458
- - lib/rails/generators/rails/controller/USAGE
525
+ - lib/rails/generators/rails/app/templates/config.ru
526
+ - lib/rails/generators/rails/model/model_generator.rb
527
+ - lib/rails/generators/rails/model/USAGE
528
+ - lib/rails/generators/rails/session_migration/session_migration_generator.rb
529
+ - lib/rails/generators/rails/session_migration/USAGE
459
530
  - lib/rails/generators/rails/generator/generator_generator.rb
460
- - lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt
461
- - lib/rails/generators/rails/generator/templates/USAGE.tt
462
531
  - lib/rails/generators/rails/generator/USAGE
463
- - lib/rails/generators/rails/helper/helper_generator.rb
464
- - lib/rails/generators/rails/helper/templates/helper.rb
465
- - lib/rails/generators/rails/helper/USAGE
466
- - lib/rails/generators/rails/integration_test/integration_test_generator.rb
467
- - lib/rails/generators/rails/integration_test/USAGE
532
+ - lib/rails/generators/rails/generator/templates/USAGE.tt
533
+ - lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt
534
+ - lib/rails/generators/rails/controller/controller_generator.rb
535
+ - lib/rails/generators/rails/controller/USAGE
536
+ - lib/rails/generators/rails/controller/templates/controller.rb
468
537
  - lib/rails/generators/rails/migration/migration_generator.rb
469
538
  - lib/rails/generators/rails/migration/USAGE
470
- - lib/rails/generators/rails/model/model_generator.rb
471
- - lib/rails/generators/rails/model/USAGE
472
- - lib/rails/generators/rails/observer/observer_generator.rb
473
- - lib/rails/generators/rails/observer/USAGE
474
- - lib/rails/generators/rails/performance_test/performance_test_generator.rb
475
- - lib/rails/generators/rails/performance_test/USAGE
476
539
  - lib/rails/generators/rails/plugin_new/plugin_new_generator.rb
477
- - lib/rails/generators/rails/plugin_new/templates/%name%.gemspec
478
- - lib/rails/generators/rails/plugin_new/templates/app/controllers/%name%/application_controller.rb.tt
479
- - lib/rails/generators/rails/plugin_new/templates/app/helpers/%name%/application_helper.rb.tt
480
- - lib/rails/generators/rails/plugin_new/templates/app/views/layouts/%name%/application.html.erb.tt
481
- - lib/rails/generators/rails/plugin_new/templates/config/routes.rb
482
- - lib/rails/generators/rails/plugin_new/templates/Gemfile
483
- - lib/rails/generators/rails/plugin_new/templates/gitignore
484
- - lib/rails/generators/rails/plugin_new/templates/lib/%name%/engine.rb
485
- - lib/rails/generators/rails/plugin_new/templates/lib/%name%/version.rb
540
+ - lib/rails/generators/rails/plugin_new/USAGE
486
541
  - lib/rails/generators/rails/plugin_new/templates/lib/%name%.rb
487
542
  - lib/rails/generators/rails/plugin_new/templates/lib/tasks/%name%_tasks.rake
488
- - lib/rails/generators/rails/plugin_new/templates/MIT-LICENSE
489
- - lib/rails/generators/rails/plugin_new/templates/rails/application.rb
490
- - lib/rails/generators/rails/plugin_new/templates/rails/boot.rb
491
- - lib/rails/generators/rails/plugin_new/templates/rails/routes.rb
492
- - lib/rails/generators/rails/plugin_new/templates/Rakefile
493
- - lib/rails/generators/rails/plugin_new/templates/README.rdoc
543
+ - lib/rails/generators/rails/plugin_new/templates/lib/%name%/engine.rb
544
+ - lib/rails/generators/rails/plugin_new/templates/lib/%name%/version.rb
494
545
  - lib/rails/generators/rails/plugin_new/templates/script/rails.tt
546
+ - lib/rails/generators/rails/plugin_new/templates/test/test_helper.rb
495
547
  - lib/rails/generators/rails/plugin_new/templates/test/%name%_test.rb
496
548
  - lib/rails/generators/rails/plugin_new/templates/test/integration/navigation_test.rb
497
- - lib/rails/generators/rails/plugin_new/templates/test/test_helper.rb
498
- - lib/rails/generators/rails/plugin_new/USAGE
499
- - lib/rails/generators/rails/resource/resource_generator.rb
500
- - lib/rails/generators/rails/resource/USAGE
501
- - lib/rails/generators/rails/scaffold/scaffold_generator.rb
502
- - lib/rails/generators/rails/scaffold/templates/scaffold.css
503
- - lib/rails/generators/rails/scaffold/USAGE
504
- - lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb
505
- - lib/rails/generators/rails/scaffold_controller/templates/controller.rb
506
- - lib/rails/generators/rails/scaffold_controller/USAGE
507
- - lib/rails/generators/rails/session_migration/session_migration_generator.rb
508
- - lib/rails/generators/rails/session_migration/USAGE
509
- - lib/rails/generators/rails/task/task_generator.rb
510
- - lib/rails/generators/rails/task/templates/task.rb
511
- - lib/rails/generators/rails/task/USAGE
512
- - lib/rails/generators/resource_helpers.rb
513
- - lib/rails/generators/test_case.rb
514
- - lib/rails/generators/test_unit/controller/controller_generator.rb
515
- - lib/rails/generators/test_unit/controller/templates/functional_test.rb
516
- - lib/rails/generators/test_unit/helper/helper_generator.rb
517
- - lib/rails/generators/test_unit/helper/templates/helper_test.rb
518
- - lib/rails/generators/test_unit/integration/integration_generator.rb
519
- - lib/rails/generators/test_unit/integration/templates/integration_test.rb
520
- - lib/rails/generators/test_unit/mailer/mailer_generator.rb
521
- - lib/rails/generators/test_unit/mailer/templates/functional_test.rb
522
- - lib/rails/generators/test_unit/model/model_generator.rb
523
- - lib/rails/generators/test_unit/model/templates/fixtures.yml
524
- - lib/rails/generators/test_unit/model/templates/unit_test.rb
525
- - lib/rails/generators/test_unit/observer/observer_generator.rb
526
- - lib/rails/generators/test_unit/observer/templates/unit_test.rb
527
- - lib/rails/generators/test_unit/performance/performance_generator.rb
528
- - lib/rails/generators/test_unit/performance/templates/performance_test.rb
529
- - lib/rails/generators/test_unit/plugin/plugin_generator.rb
530
- - lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt
531
- - lib/rails/generators/test_unit/plugin/templates/test_helper.rb
532
- - lib/rails/generators/test_unit/scaffold/scaffold_generator.rb
533
- - lib/rails/generators/test_unit/scaffold/templates/functional_test.rb
549
+ - lib/rails/generators/rails/plugin_new/templates/MIT-LICENSE
550
+ - lib/rails/generators/rails/plugin_new/templates/gitignore
551
+ - lib/rails/generators/rails/plugin_new/templates/%name%.gemspec
552
+ - lib/rails/generators/rails/plugin_new/templates/Rakefile
553
+ - lib/rails/generators/rails/plugin_new/templates/app/controllers/%name%/application_controller.rb.tt
554
+ - lib/rails/generators/rails/plugin_new/templates/app/views/layouts/%name%/application.html.erb.tt
555
+ - lib/rails/generators/rails/plugin_new/templates/app/helpers/%name%/application_helper.rb.tt
556
+ - lib/rails/generators/rails/plugin_new/templates/README.rdoc
557
+ - lib/rails/generators/rails/plugin_new/templates/rails/routes.rb
558
+ - lib/rails/generators/rails/plugin_new/templates/rails/application.rb
559
+ - lib/rails/generators/rails/plugin_new/templates/rails/boot.rb
560
+ - lib/rails/generators/rails/plugin_new/templates/config/routes.rb
561
+ - lib/rails/generators/rails/plugin_new/templates/Gemfile
562
+ - lib/rails/generators/css/assets/assets_generator.rb
563
+ - lib/rails/generators/css/assets/templates/stylesheet.css
564
+ - lib/rails/generators/css/scaffold/scaffold_generator.rb
565
+ - lib/rails/generators/actions.rb
534
566
  - lib/rails/generators/test_unit.rb
567
+ - lib/rails/generators/migration.rb
568
+ - lib/rails/application.rb
569
+ - lib/rails/rubyprof_ext.rb
535
570
  - lib/rails/generators.rb
536
- - lib/rails/info.rb
537
- - lib/rails/info_controller.rb
538
- - lib/rails/initializable.rb
571
+ - lib/rails/test_unit/railtie.rb
572
+ - lib/rails/test_unit/sub_test_task.rb
573
+ - lib/rails/test_unit/testing.rake
574
+ - lib/rails/tasks/engine.rake
575
+ - lib/rails/tasks/documentation.rake
576
+ - lib/rails/tasks/routes.rake
577
+ - lib/rails/tasks/misc.rake
578
+ - lib/rails/tasks/tmp.rake
579
+ - lib/rails/tasks/log.rake
580
+ - lib/rails/tasks/annotations.rake
581
+ - lib/rails/tasks/statistics.rake
582
+ - lib/rails/tasks/middleware.rake
583
+ - lib/rails/tasks/framework.rake
584
+ - lib/rails/application/finisher.rb
585
+ - lib/rails/application/railties.rb
586
+ - lib/rails/application/configuration.rb
587
+ - lib/rails/application/route_inspector.rb
588
+ - lib/rails/application/routes_reloader.rb
589
+ - lib/rails/application/bootstrap.rb
539
590
  - lib/rails/paths.rb
540
- - lib/rails/performance_test_help.rb
541
- - lib/rails/plugin.rb
542
- - lib/rails/rack/debugger.rb
543
- - lib/rails/rack/log_tailer.rb
544
- - lib/rails/rack/logger.rb
591
+ - lib/rails/info_controller.rb
545
592
  - lib/rails/rack.rb
546
- - lib/rails/railtie/configurable.rb
547
- - lib/rails/railtie/configuration.rb
548
- - lib/rails/railtie.rb
593
+ - lib/rails/version.rb
549
594
  - lib/rails/ruby_version_check.rb
550
- - lib/rails/rubyprof_ext.rb
551
- - lib/rails/script_rails_loader.rb
595
+ - lib/rails/rack/logger.rb
596
+ - lib/rails/rack/log_tailer.rb
597
+ - lib/rails/rack/debugger.rb
598
+ - lib/rails/railtie/configuration.rb
599
+ - lib/rails/railtie/configurable.rb
600
+ - lib/rails/cli.rb
552
601
  - lib/rails/source_annotation_extractor.rb
553
- - lib/rails/tasks/annotations.rake
554
- - lib/rails/tasks/documentation.rake
555
- - lib/rails/tasks/engine.rake
556
- - lib/rails/tasks/framework.rake
557
- - lib/rails/tasks/log.rake
558
- - lib/rails/tasks/middleware.rake
559
- - lib/rails/tasks/misc.rake
560
- - lib/rails/tasks/routes.rake
561
- - lib/rails/tasks/statistics.rake
562
- - lib/rails/tasks/tmp.rake
563
- - lib/rails/tasks.rb
602
+ - lib/rails/performance_test_help.rb
603
+ - lib/rails/commands.rb
604
+ - lib/rails/plugin.rb
564
605
  - lib/rails/test_help.rb
565
- - lib/rails/test_unit/railtie.rb
566
- - lib/rails/test_unit/sub_test_task.rb
567
- - lib/rails/test_unit/testing.rake
568
- - lib/rails/version.rb
569
- - lib/rails.rb
606
+ - lib/rails/script_rails_loader.rb
607
+ - lib/rails/generators/rails/app/templates/test/unit/.empty_directory
608
+ - lib/rails/generators/rails/app/templates/test/functional/.empty_directory
609
+ - lib/rails/generators/rails/app/templates/test/integration/.empty_directory
610
+ - lib/rails/generators/rails/app/templates/test/fixtures/.empty_directory
570
611
  - lib/rails/generators/rails/app/templates/app/mailers/.empty_directory
571
612
  - lib/rails/generators/rails/app/templates/app/models/.empty_directory
572
613
  - lib/rails/generators/rails/app/templates/public/stylesheets/.empty_directory
573
- - lib/rails/generators/rails/app/templates/test/fixtures/.empty_directory
574
- - lib/rails/generators/rails/app/templates/test/functional/.empty_directory
575
- - lib/rails/generators/rails/app/templates/test/integration/.empty_directory
576
- - lib/rails/generators/rails/app/templates/test/unit/.empty_directory
577
614
  - lib/rails/generators/rails/generator/templates/templates/.empty_directory
578
615
  - lib/rails/generators/rails/plugin_new/templates/app/mailers/.empty_directory
579
616
  - lib/rails/generators/rails/plugin_new/templates/app/models/.empty_directory
617
+ has_rdoc: true
580
618
  homepage: http://www.rubyonrails.org
581
619
  licenses: []
620
+
582
621
  post_install_message:
583
- rdoc_options:
622
+ rdoc_options:
584
623
  - --exclude
585
624
  - .
586
- require_paths:
625
+ require_paths:
587
626
  - lib
588
- required_ruby_version: !ruby/object:Gem::Requirement
627
+ required_ruby_version: !ruby/object:Gem::Requirement
589
628
  none: false
590
- requirements:
591
- - - ! '>='
592
- - !ruby/object:Gem::Version
629
+ requirements:
630
+ - - ">="
631
+ - !ruby/object:Gem::Version
632
+ hash: 57
633
+ segments:
634
+ - 1
635
+ - 8
636
+ - 7
593
637
  version: 1.8.7
594
- required_rubygems_version: !ruby/object:Gem::Requirement
638
+ required_rubygems_version: !ruby/object:Gem::Requirement
595
639
  none: false
596
- requirements:
597
- - - ! '>='
598
- - !ruby/object:Gem::Version
599
- version: '0'
640
+ requirements:
641
+ - - ">="
642
+ - !ruby/object:Gem::Version
643
+ hash: 3
644
+ segments:
645
+ - 0
646
+ version: "0"
600
647
  requirements: []
648
+
601
649
  rubyforge_project:
602
- rubygems_version: 1.8.10
650
+ rubygems_version: 1.6.2
603
651
  signing_key:
604
652
  specification_version: 3
605
653
  summary: Tools for creating, working with, and running Rails applications.
606
654
  test_files: []
655
+