rails 4.1.0.rc1 → 4.1.0.rc2
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.
- checksums.yaml +4 -4
- data/guides/assets/images/getting_started/article_with_comments.png +0 -0
- data/guides/assets/images/getting_started/challenge.png +0 -0
- data/guides/assets/images/getting_started/confirm_dialog.png +0 -0
- data/guides/assets/images/getting_started/forbidden_attributes_for_new_article.png +0 -0
- data/guides/assets/images/getting_started/form_with_errors.png +0 -0
- data/guides/assets/images/getting_started/index_action_with_edit_link.png +0 -0
- data/guides/assets/images/getting_started/new_article.png +0 -0
- data/guides/assets/images/getting_started/rails_welcome.png +0 -0
- data/guides/assets/images/getting_started/routing_error_no_controller.png +0 -0
- data/guides/assets/images/getting_started/routing_error_no_route_matches.png +0 -0
- data/guides/assets/images/getting_started/show_action_for_articles.png +0 -0
- data/guides/assets/images/getting_started/template_is_missing_articles_new.png +0 -0
- data/guides/assets/images/getting_started/unknown_action_create_for_articles.png +0 -0
- data/guides/assets/images/getting_started/unknown_action_new_for_articles.png +0 -0
- data/guides/code/getting_started/Gemfile +1 -1
- data/guides/source/4_1_release_notes.md +18 -8
- data/guides/source/_welcome.html.erb +1 -1
- data/guides/source/action_controller_overview.md +24 -0
- data/guides/source/configuring.md +1 -1
- data/guides/source/documents.yaml +0 -1
- data/guides/source/getting_started.md +9 -9
- data/guides/source/layout.html.erb +1 -1
- data/guides/source/layouts_and_rendering.md +5 -2
- data/guides/source/testing.md +3 -3
- data/guides/source/upgrading_ruby_on_rails.md +47 -3
- metadata +17 -17
- data/guides/assets/images/getting_started/rails_welcome.jpg +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25f9bb53a16960f3dca03cccdcc9347f940d6616
|
4
|
+
data.tar.gz: 6cab7ca6837f42ae81689712637175bbd288d4f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49394540535142b858adcc728ea9eee3211ab52b264e5a38f83ea97aff5104e6af1648c894da81fafd7d170b70c4120689e64d6608410831c347d793fc162995
|
7
|
+
data.tar.gz: 5953dbffa1a782903462f9e95bf021f82cecf78f39708b292c75ea6e8f67ba69753d74960146d6461925a6452c982e0d8fe265491d3cac30a3771920b4bca5a1
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -291,6 +291,10 @@ for detailed changes.
|
|
291
291
|
with `config.active_record.maintain_test_schema = false`. ([Pull
|
292
292
|
Request](https://github.com/rails/rails/pull/13528))
|
293
293
|
|
294
|
+
* Introduce `Rails.gem_version` as a convenience method to return
|
295
|
+
`Gem::Version.new(Rails.version)`, suggesting a more reliable way to perform
|
296
|
+
version comparison. ([Pull Request](https://github.com/rails/rails/pull/14103))
|
297
|
+
|
294
298
|
|
295
299
|
Action Pack
|
296
300
|
-----------
|
@@ -346,10 +350,14 @@ for detailed changes.
|
|
346
350
|
params "deep munging" that was used to address security vulnerability
|
347
351
|
CVE-2013-0155. ([Pull Request](https://github.com/rails/rails/pull/13188))
|
348
352
|
|
349
|
-
* New config option `config.action_dispatch.cookies_serializer` for specifying
|
350
|
-
|
353
|
+
* New config option `config.action_dispatch.cookies_serializer` for specifying a
|
354
|
+
serializer for the signed and encrypted cookie jars. (Pull Requests
|
355
|
+
[1](https://github.com/rails/rails/pull/13692),
|
356
|
+
[2](https://github.com/rails/rails/pull/13945) /
|
357
|
+
[More Details](upgrading_ruby_on_rails.html#cookies-serializer))
|
351
358
|
|
352
|
-
* Added `render :plain`, `render :html` and `render
|
359
|
+
* Added `render :plain`, `render :html` and `render
|
360
|
+
:body`. ([Pull Request](https://github.com/rails/rails/pull/14062) /
|
353
361
|
[More Details](upgrading_ruby_on_rails.html#rendering-content-from-string))
|
354
362
|
|
355
363
|
|
@@ -543,14 +551,15 @@ for detailed changes.
|
|
543
551
|
* Make `touch` fire the `after_commit` and `after_rollback`
|
544
552
|
callbacks. ([Pull Request](https://github.com/rails/rails/pull/12031))
|
545
553
|
|
546
|
-
* Enable partial indexes for `sqlite >=
|
547
|
-
|
554
|
+
* Enable partial indexes for `sqlite >= 3.8.0`.
|
555
|
+
([Pull Request](https://github.com/rails/rails/pull/13350))
|
548
556
|
|
549
557
|
* Make `change_column_null`
|
550
558
|
revertable. ([Commit](https://github.com/rails/rails/commit/724509a9d5322ff502aefa90dd282ba33a281a96))
|
551
559
|
|
552
560
|
* Added a flag to disable schema dump after migration. This is set to `false`
|
553
|
-
by
|
561
|
+
by default in the production environment for new applications.
|
562
|
+
([Pull Request](https://github.com/rails/rails/pull/13948))
|
554
563
|
|
555
564
|
|
556
565
|
Active Model
|
@@ -705,11 +714,12 @@ for detailed changes.
|
|
705
714
|
`available_locales`
|
706
715
|
list. ([Pull Request](https://github.com/rails/rails/commit/8e21ae37ad9fef6b7393a84f9b5f2e18a831e49a))
|
707
716
|
|
708
|
-
* Introduce Module#concerning
|
717
|
+
* Introduce `Module#concerning`: a natural, low-ceremony way to separate
|
709
718
|
responsibilities within a
|
710
719
|
class. ([Commit](https://github.com/rails/rails/commit/1eee0ca6de975b42524105a59e0521d18b38ab81))
|
711
720
|
|
712
|
-
* Added `Object#
|
721
|
+
* Added `Object#presence_in` to simplify value whitelisting.
|
722
|
+
([Commit](https://github.com/rails/rails/commit/4edca106daacc5a159289eae255207d160f22396))
|
713
723
|
|
714
724
|
|
715
725
|
Credits
|
@@ -15,7 +15,7 @@
|
|
15
15
|
</p>
|
16
16
|
<% end %>
|
17
17
|
<p>
|
18
|
-
The guides for Rails 3.2.x are available at <a href="http://guides.rubyonrails.org/v3.2.
|
18
|
+
The guides for Rails 3.2.x are available at <a href="http://guides.rubyonrails.org/v3.2.17/">http://guides.rubyonrails.org/v3.2.17/</a>.
|
19
19
|
</p>
|
20
20
|
<p>
|
21
21
|
The guides for Rails 2.3.x are available at <a href="http://guides.rubyonrails.org/v2.3.11/">http://guides.rubyonrails.org/v2.3.11/</a>.
|
@@ -604,6 +604,30 @@ It is also possible to pass a custom serializer that responds to `load` and
|
|
604
604
|
Rails.application.config.action_dispatch.cookies_serializer = MyCustomSerializer
|
605
605
|
```
|
606
606
|
|
607
|
+
When using the `:json` or `:hybrid` serializer, you should beware that not all
|
608
|
+
Ruby objects can be serialized as JSON. For example, `Date` and `Time` objects
|
609
|
+
will be serialized as strings, and `Hash`es will have their keys stringified.
|
610
|
+
|
611
|
+
```ruby
|
612
|
+
class CookiesController < ApplicationController
|
613
|
+
def set_cookie
|
614
|
+
cookies.encrypted[:expiration_date] = Date.tomorrow # => Thu, 20 Mar 2014
|
615
|
+
redirect_to action: 'read_cookie'
|
616
|
+
end
|
617
|
+
|
618
|
+
def read_cookie
|
619
|
+
cookies.encrypted[:expiration_date] # => "2014-03-20"
|
620
|
+
end
|
621
|
+
end
|
622
|
+
```
|
623
|
+
|
624
|
+
It's advisable that you only store simple data (strings and numbers) in cookies.
|
625
|
+
If you have to store complex objects, you would need to handle the conversion
|
626
|
+
manually when reading the values on subsequent requests.
|
627
|
+
|
628
|
+
If you use the cookie session store, this would apply to the `session` and
|
629
|
+
`flash` hash as well.
|
630
|
+
|
607
631
|
Rendering XML and JSON data
|
608
632
|
---------------------------
|
609
633
|
|
@@ -274,7 +274,7 @@ All these configuration options are delegated to the `I18n` library.
|
|
274
274
|
|
275
275
|
* `config.active_record.pluralize_table_names` specifies whether Rails will look for singular or plural table names in the database. If set to true (the default), then the Customer class will use the `customers` table. If set to false, then the Customer class will use the `customer` table.
|
276
276
|
|
277
|
-
* `config.active_record.default_timezone` determines whether to use `Time.local` (if set to `:local`) or `Time.utc` (if set to `:utc`) when pulling dates and times from the database. The default is `:utc
|
277
|
+
* `config.active_record.default_timezone` determines whether to use `Time.local` (if set to `:local`) or `Time.utc` (if set to `:utc`) when pulling dates and times from the database. The default is `:utc`.
|
278
278
|
|
279
279
|
* `config.active_record.schema_format` controls the format for dumping the database schema to a file. The options are `:ruby` (the default) for a database-independent version that depends on migrations, or `:sql` for a set of (potentially database-dependent) SQL statements.
|
280
280
|
|
@@ -57,9 +57,9 @@ learned elsewhere, you may have a less happy experience.
|
|
57
57
|
|
58
58
|
The Rails philosophy includes two major guiding principles:
|
59
59
|
|
60
|
-
* **Don't Repeat Yourself:** DRY is a principle of software development which
|
60
|
+
* **Don't Repeat Yourself:** DRY is a principle of software development which
|
61
61
|
states that "Every piece of knowledge must have a single, unambiguous, authoritative
|
62
|
-
representation within a system." By not writing the same information over and over
|
62
|
+
representation within a system." By not writing the same information over and over
|
63
63
|
again, our code is more maintainable, more extensible, and less buggy.
|
64
64
|
* **Convention Over Configuration:** Rails has opinions about the best way to do many
|
65
65
|
things in a web application, and defaults to this set of conventions, rather than
|
@@ -206,7 +206,7 @@ This will fire up WEBrick, a web server distributed with Ruby by default. To see
|
|
206
206
|
your application in action, open a browser window and navigate to
|
207
207
|
<http://localhost:3000>. You should see the Rails default information page:
|
208
208
|
|
209
|
-

|
210
210
|
|
211
211
|
TIP: To stop the web server, hit Ctrl+C in the terminal window where it's
|
212
212
|
running. To verify the server has stopped you should see your command prompt
|
@@ -751,8 +751,8 @@ Rails has several security features that help you write secure applications,
|
|
751
751
|
and you're running into one of them now. This one is called
|
752
752
|
`strong_parameters`, which requires us to tell Rails exactly which parameters
|
753
753
|
we want to accept in our controllers. In this case, we want to allow the
|
754
|
-
`title` and `text` parameters, so
|
755
|
-
|
754
|
+
`title` and `text` parameters, so add the new `article_params` method, and
|
755
|
+
change your `create` controller action to use it, like this:
|
756
756
|
|
757
757
|
```ruby
|
758
758
|
def create
|
@@ -900,7 +900,7 @@ Also add a link in `app/views/articles/new.html.erb`, underneath the form, to
|
|
900
900
|
go back to the `index` action:
|
901
901
|
|
902
902
|
```erb
|
903
|
-
<%= form_for :article do |f| %>
|
903
|
+
<%= form_for :article, url: articles_path do |f| %>
|
904
904
|
...
|
905
905
|
<% end %>
|
906
906
|
|
@@ -1121,8 +1121,8 @@ via the `PATCH` HTTP method which is the HTTP method you're expected to use to
|
|
1121
1121
|
|
1122
1122
|
The first parameter of the `form_tag` can be an object, say, `@article` which would
|
1123
1123
|
cause the helper to fill in the form with the fields of the object. Passing in a
|
1124
|
-
symbol (`:article`) with the same name as the instance variable (`@article`) also
|
1125
|
-
automagically leads to the same behavior. This is what is happening here. More details
|
1124
|
+
symbol (`:article`) with the same name as the instance variable (`@article`) also
|
1125
|
+
automagically leads to the same behavior. This is what is happening here. More details
|
1126
1126
|
can be found in [form_for documentation](http://api.rubyonrails.org/classes/ActionView/Helpers/FormHelper.html#method-i-form_for).
|
1127
1127
|
|
1128
1128
|
Next we need to create the `update` action in
|
@@ -1396,7 +1396,7 @@ class CreateComments < ActiveRecord::Migration
|
|
1396
1396
|
t.text :body
|
1397
1397
|
|
1398
1398
|
# this line adds an integer column called `article_id`.
|
1399
|
-
t.references :article, index: true
|
1399
|
+
t.references :article, index: true
|
1400
1400
|
|
1401
1401
|
t.timestamps
|
1402
1402
|
end
|
@@ -4,7 +4,7 @@
|
|
4
4
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
7
|
-
<meta name="viewport" content="width=device-width, initial-scale=1"
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
8
8
|
|
9
9
|
<title><%= yield(:page_title) || 'Ruby on Rails Guides' %></title>
|
10
10
|
<link rel="stylesheet" type="text/css" href="stylesheets/style.css" />
|
@@ -304,10 +304,13 @@ type, by using the `:body` option to `render`:
|
|
304
304
|
render body: "raw"
|
305
305
|
```
|
306
306
|
|
307
|
-
TIP: This option should be used only if you
|
308
|
-
|
307
|
+
TIP: This option should be used only if you don't care about the content type of
|
308
|
+
the response. Using `:plain` or `:html` might be more appropriate in most of the
|
309
309
|
time.
|
310
310
|
|
311
|
+
NOTE: Unless overriden, your response returned from this render option will be
|
312
|
+
`text/html`, as that is the default content type of Action Dispatch response.
|
313
|
+
|
311
314
|
#### Options for `render`
|
312
315
|
|
313
316
|
Calls to the `render` method generally accept four options:
|
data/guides/source/testing.md
CHANGED
@@ -248,7 +248,7 @@ To see how a test failure is reported, you can add a failing test to the `post_t
|
|
248
248
|
```ruby
|
249
249
|
test "should not save post without title" do
|
250
250
|
post = Post.new
|
251
|
-
|
251
|
+
assert_not post.save
|
252
252
|
end
|
253
253
|
```
|
254
254
|
|
@@ -272,7 +272,7 @@ In the output, `F` denotes a failure. You can see the corresponding trace shown
|
|
272
272
|
```ruby
|
273
273
|
test "should not save post without title" do
|
274
274
|
post = Post.new
|
275
|
-
|
275
|
+
assert_not post.save, "Saved the post without a title"
|
276
276
|
end
|
277
277
|
```
|
278
278
|
|
@@ -943,7 +943,7 @@ class UserMailerTest < ActionMailer::TestCase
|
|
943
943
|
# Send the email, then test that it got queued
|
944
944
|
email = UserMailer.create_invite('me@example.com',
|
945
945
|
'friend@example.com', Time.now).deliver
|
946
|
-
|
946
|
+
assert_not ActionMailer::Base.deliveries.empty?
|
947
947
|
|
948
948
|
# Test the body of the sent email contains what we expect it to
|
949
949
|
assert_equal ['me@example.com'], email.from
|
@@ -111,6 +111,50 @@ in your application, you can add an initializer file with the following content:
|
|
111
111
|
This would transparently migrate your existing `Marshal`-serialized cookies into the
|
112
112
|
new `JSON`-based format.
|
113
113
|
|
114
|
+
When using the `:json` or `:hybrid` serializer, you should beware that not all
|
115
|
+
Ruby objects can be serialized as JSON. For example, `Date` and `Time` objects
|
116
|
+
will be serialized as strings, and `Hash`es will have their keys stringified.
|
117
|
+
|
118
|
+
```ruby
|
119
|
+
class CookiesController < ApplicationController
|
120
|
+
def set_cookie
|
121
|
+
cookies.encrypted[:expiration_date] = Date.tomorrow # => Thu, 20 Mar 2014
|
122
|
+
redirect_to action: 'read_cookie'
|
123
|
+
end
|
124
|
+
|
125
|
+
def read_cookie
|
126
|
+
cookies.encrypted[:expiration_date] # => "2014-03-20"
|
127
|
+
end
|
128
|
+
end
|
129
|
+
```
|
130
|
+
|
131
|
+
It's advisable that you only store simple data (strings and numbers) in cookies.
|
132
|
+
If you have to store complex objects, you would need to handle the conversion
|
133
|
+
manually when reading the values on subsequent requests.
|
134
|
+
|
135
|
+
If you use the cookie session store, this would apply to the `session` and
|
136
|
+
`flash` hash as well.
|
137
|
+
|
138
|
+
### Flash structure changes
|
139
|
+
|
140
|
+
Flash message keys are
|
141
|
+
[normalized to strings](https://github.com/rails/rails/commit/a668beffd64106a1e1fedb71cc25eaaa11baf0c1). They
|
142
|
+
can still be accessed using either symbols or strings. Lopping through the flash
|
143
|
+
will always yield string keys:
|
144
|
+
|
145
|
+
```ruby
|
146
|
+
flash["string"] = "a string"
|
147
|
+
flash[:symbol] = "a symbol"
|
148
|
+
|
149
|
+
# Rails < 4.1
|
150
|
+
flash.keys # => ["string", :symbol]
|
151
|
+
|
152
|
+
# Rails >= 4.1
|
153
|
+
flash.keys # => ["string", "symbol"]
|
154
|
+
```
|
155
|
+
|
156
|
+
Make sure you are comparing Flash message keys against strings.
|
157
|
+
|
114
158
|
### Changes in JSON handling
|
115
159
|
|
116
160
|
There are a few major changes related to JSON handling in Rails 4.1.
|
@@ -315,7 +359,7 @@ To get the previous behavior it is needed to explicitly remove the
|
|
315
359
|
```ruby
|
316
360
|
class User < ActiveRecord::Base
|
317
361
|
default_scope { where state: 'pending' }
|
318
|
-
scope :active, -> {
|
362
|
+
scope :active, -> { unscope(where: :state).where(state: 'active') }
|
319
363
|
scope :inactive, -> { rewhere state: 'inactive' }
|
320
364
|
end
|
321
365
|
|
@@ -669,7 +713,7 @@ Upgrading from Rails 3.1 to Rails 3.2
|
|
669
713
|
|
670
714
|
If your application is currently on any version of Rails older than 3.1.x, you should upgrade to Rails 3.1 before attempting an update to Rails 3.2.
|
671
715
|
|
672
|
-
The following changes are meant for upgrading your application to Rails 3.2.
|
716
|
+
The following changes are meant for upgrading your application to Rails 3.2.17,
|
673
717
|
the last 3.2.x version of Rails.
|
674
718
|
|
675
719
|
### Gemfile
|
@@ -677,7 +721,7 @@ the last 3.2.x version of Rails.
|
|
677
721
|
Make the following changes to your `Gemfile`.
|
678
722
|
|
679
723
|
```ruby
|
680
|
-
gem 'rails', '3.2.
|
724
|
+
gem 'rails', '3.2.17'
|
681
725
|
|
682
726
|
group :assets do
|
683
727
|
gem 'sass-rails', '~> 3.2.6'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.1.0.
|
4
|
+
version: 4.1.0.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,98 +16,98 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 4.1.0.
|
19
|
+
version: 4.1.0.rc2
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 4.1.0.
|
26
|
+
version: 4.1.0.rc2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: actionpack
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 4.1.0.
|
33
|
+
version: 4.1.0.rc2
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 4.1.0.
|
40
|
+
version: 4.1.0.rc2
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: actionview
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 4.1.0.
|
47
|
+
version: 4.1.0.rc2
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 4.1.0.
|
54
|
+
version: 4.1.0.rc2
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: activemodel
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 4.1.0.
|
61
|
+
version: 4.1.0.rc2
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 4.1.0.
|
68
|
+
version: 4.1.0.rc2
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: activerecord
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - '='
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 4.1.0.
|
75
|
+
version: 4.1.0.rc2
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - '='
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 4.1.0.
|
82
|
+
version: 4.1.0.rc2
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: actionmailer
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - '='
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 4.1.0.
|
89
|
+
version: 4.1.0.rc2
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - '='
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 4.1.0.
|
96
|
+
version: 4.1.0.rc2
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: railties
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - '='
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 4.1.0.
|
103
|
+
version: 4.1.0.rc2
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - '='
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 4.1.0.
|
110
|
+
version: 4.1.0.rc2
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: bundler
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -173,7 +173,7 @@ files:
|
|
173
173
|
- guides/assets/images/getting_started/form_with_errors.png
|
174
174
|
- guides/assets/images/getting_started/index_action_with_edit_link.png
|
175
175
|
- guides/assets/images/getting_started/new_article.png
|
176
|
-
- guides/assets/images/getting_started/rails_welcome.
|
176
|
+
- guides/assets/images/getting_started/rails_welcome.png
|
177
177
|
- guides/assets/images/getting_started/routing_error_no_controller.png
|
178
178
|
- guides/assets/images/getting_started/routing_error_no_route_matches.png
|
179
179
|
- guides/assets/images/getting_started/show_action_for_articles.png
|
Binary file
|