rails 5.0.7.2 → 6.1.7.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +43 -35
- metadata +77 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc356a9193e3a8ab3b7d5ab73c2cc842d08768145928f486618219d88b2ba7fd
|
4
|
+
data.tar.gz: f41dea62a5eea774cebe5589459eda90750e7c2524c4e81869eb99cf4f6a9d9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49a6cdcd130eee6e81445ca82823ebe6229d12b1d0675b0f942430808861646a039ac0cc578a38155fab05606c754718809379093b2b5ab0eb3976f699038060
|
7
|
+
data.tar.gz: d98a9b7fd105fe415bc223ebed7841958c6d5e180f92aa84f646c5b3f43f696c63b45fad79a08cde90ca607223936c409d1d69e67ef68ff635791313a7842613
|
data/README.md
CHANGED
@@ -1,46 +1,55 @@
|
|
1
1
|
# Welcome to Rails
|
2
2
|
|
3
|
+
## What's Rails?
|
4
|
+
|
3
5
|
Rails is a web-application framework that includes everything needed to
|
4
6
|
create database-backed web applications according to the
|
5
|
-
[Model-View-Controller (MVC)](
|
7
|
+
[Model-View-Controller (MVC)](https://en.wikipedia.org/wiki/Model-view-controller)
|
6
8
|
pattern.
|
7
9
|
|
8
10
|
Understanding the MVC pattern is key to understanding Rails. MVC divides your
|
9
|
-
application into three layers, each with a specific responsibility.
|
11
|
+
application into three layers: Model, View, and Controller, each with a specific responsibility.
|
12
|
+
|
13
|
+
## Model layer
|
10
14
|
|
11
|
-
The
|
12
|
-
Person, Post, etc.) and encapsulates the business logic
|
15
|
+
The _**Model layer**_ represents the domain model (such as Account, Product,
|
16
|
+
Person, Post, etc.) and encapsulates the business logic specific to
|
13
17
|
your application. In Rails, database-backed model classes are derived from
|
14
|
-
`ActiveRecord::Base`. Active Record allows you to present the data from
|
18
|
+
`ActiveRecord::Base`. [Active Record](activerecord/README.rdoc) allows you to present the data from
|
15
19
|
database rows as objects and embellish these data objects with business logic
|
16
|
-
methods.
|
20
|
+
methods.
|
17
21
|
Although most Rails models are backed by a database, models can also be ordinary
|
18
22
|
Ruby classes, or Ruby classes that implement a set of interfaces as provided by
|
19
|
-
the Active Model
|
23
|
+
the [Active Model](activemodel/README.rdoc) module.
|
24
|
+
|
25
|
+
## Controller layer
|
20
26
|
|
21
|
-
The
|
22
|
-
providing a suitable response. Usually this means returning HTML, but Rails controllers
|
27
|
+
The _**Controller layer**_ is responsible for handling incoming HTTP requests and
|
28
|
+
providing a suitable response. Usually, this means returning HTML, but Rails controllers
|
23
29
|
can also generate XML, JSON, PDFs, mobile-specific views, and more. Controllers load and
|
24
30
|
manipulate models, and render view templates in order to generate the appropriate HTTP response.
|
25
31
|
In Rails, incoming requests are routed by Action Dispatch to an appropriate controller, and
|
26
32
|
controller classes are derived from `ActionController::Base`. Action Dispatch and Action Controller
|
27
|
-
are bundled together in Action Pack.
|
28
|
-
[README](actionpack/README.rdoc).
|
33
|
+
are bundled together in [Action Pack](actionpack/README.rdoc).
|
29
34
|
|
30
|
-
|
35
|
+
## View layer
|
36
|
+
|
37
|
+
The _**View layer**_ is composed of "templates" that are responsible for providing
|
31
38
|
appropriate representations of your application's resources. Templates can
|
32
39
|
come in a variety of formats, but most view templates are HTML with embedded
|
33
|
-
Ruby code (ERB files). Views are typically rendered to generate a controller response
|
34
|
-
or to generate the body of an email. In Rails, View generation is handled by Action View.
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
to
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
40
|
+
Ruby code (ERB files). Views are typically rendered to generate a controller response
|
41
|
+
or to generate the body of an email. In Rails, View generation is handled by [Action View](actionview/README.rdoc).
|
42
|
+
|
43
|
+
## Frameworks and libraries
|
44
|
+
|
45
|
+
[Active Record](activerecord/README.rdoc), [Active Model](activemodel/README.rdoc), [Action Pack](actionpack/README.rdoc), and [Action View](actionview/README.rdoc) can each be used independently outside Rails.
|
46
|
+
In addition to that, Rails also comes with [Action Mailer](actionmailer/README.rdoc), a library
|
47
|
+
to generate and send emails; [Action Mailbox](actionmailbox/README.md), a library to receive emails within a Rails application;
|
48
|
+
[Active Job](activejob/README.md), a framework for declaring jobs and making them run on a variety of queuing
|
49
|
+
backends; [Action Cable](actioncable/README.md), a framework to
|
50
|
+
integrate WebSockets with a Rails application; [Active Storage](activestorage/README.md), a library to attach cloud
|
51
|
+
and local files to Rails applications; [Action Text](actiontext/README.md), a library to handle rich text content;
|
52
|
+
and [Active Support](activesupport/README.rdoc), a collection
|
44
53
|
of utility classes and standard library extensions that are useful for Rails,
|
45
54
|
and may also be used independently outside Rails.
|
46
55
|
|
@@ -59,31 +68,30 @@ and may also be used independently outside Rails.
|
|
59
68
|
3. Change directory to `myapp` and start the web server:
|
60
69
|
|
61
70
|
$ cd myapp
|
62
|
-
$ rails server
|
71
|
+
$ bin/rails server
|
63
72
|
|
64
73
|
Run with `--help` or `-h` for options.
|
65
74
|
|
66
|
-
4.
|
75
|
+
4. Go to `http://localhost:3000` and you'll see:
|
67
76
|
"Yay! You’re on Rails!"
|
68
77
|
|
69
78
|
5. Follow the guidelines to start developing your application. You may find
|
70
79
|
the following resources handy:
|
71
|
-
* [Getting Started with Rails](
|
72
|
-
* [Ruby on Rails Guides](
|
73
|
-
* [The API Documentation](
|
74
|
-
* [Ruby on Rails Tutorial](http://www.railstutorial.org/book)
|
80
|
+
* [Getting Started with Rails](https://guides.rubyonrails.org/getting_started.html)
|
81
|
+
* [Ruby on Rails Guides](https://guides.rubyonrails.org)
|
82
|
+
* [The API Documentation](https://api.rubyonrails.org)
|
75
83
|
|
76
84
|
## Contributing
|
77
85
|
|
78
86
|
We encourage you to contribute to Ruby on Rails! Please check out the
|
79
|
-
[Contributing to Ruby on Rails guide](
|
80
|
-
|
81
|
-
Everyone interacting in Rails and its sub-projects' codebases, issue trackers, chat rooms, and mailing lists is expected to follow the Rails [code of conduct](http://rubyonrails.org/conduct/).
|
87
|
+
[Contributing to Ruby on Rails guide](https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html) for guidelines about how to proceed. [Join us!](https://contributors.rubyonrails.org)
|
82
88
|
|
83
|
-
|
89
|
+
Trying to report a possible security vulnerability in Rails? Please
|
90
|
+
check out our [security policy](https://rubyonrails.org/security/) for
|
91
|
+
guidelines about how to proceed.
|
84
92
|
|
85
|
-
[
|
93
|
+
Everyone interacting in Rails and its sub-projects' codebases, issue trackers, chat rooms, and mailing lists is expected to follow the Rails [code of conduct](https://rubyonrails.org/conduct/).
|
86
94
|
|
87
95
|
## License
|
88
96
|
|
89
|
-
Ruby on Rails is released under the [MIT License](
|
97
|
+
Ruby on Rails is released under the [MIT License](https://opensource.org/licenses/MIT).
|
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
|
+
version: 6.1.7.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,140 +16,182 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 6.1.7.7
|
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:
|
26
|
+
version: 6.1.7.7
|
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:
|
33
|
+
version: 6.1.7.7
|
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:
|
40
|
+
version: 6.1.7.7
|
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:
|
47
|
+
version: 6.1.7.7
|
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:
|
54
|
+
version: 6.1.7.7
|
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:
|
61
|
+
version: 6.1.7.7
|
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:
|
68
|
+
version: 6.1.7.7
|
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:
|
75
|
+
version: 6.1.7.7
|
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:
|
82
|
+
version: 6.1.7.7
|
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:
|
89
|
+
version: 6.1.7.7
|
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:
|
96
|
+
version: 6.1.7.7
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: activejob
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - '='
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version:
|
103
|
+
version: 6.1.7.7
|
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:
|
110
|
+
version: 6.1.7.7
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: actioncable
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
115
|
- - '='
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version:
|
117
|
+
version: 6.1.7.7
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - '='
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
124
|
+
version: 6.1.7.7
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: activestorage
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 6.1.7.7
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 6.1.7.7
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: actionmailbox
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - '='
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 6.1.7.7
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - '='
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 6.1.7.7
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: actiontext
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - '='
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: 6.1.7.7
|
160
|
+
type: :runtime
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - '='
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: 6.1.7.7
|
125
167
|
- !ruby/object:Gem::Dependency
|
126
168
|
name: railties
|
127
169
|
requirement: !ruby/object:Gem::Requirement
|
128
170
|
requirements:
|
129
171
|
- - '='
|
130
172
|
- !ruby/object:Gem::Version
|
131
|
-
version:
|
173
|
+
version: 6.1.7.7
|
132
174
|
type: :runtime
|
133
175
|
prerelease: false
|
134
176
|
version_requirements: !ruby/object:Gem::Requirement
|
135
177
|
requirements:
|
136
178
|
- - '='
|
137
179
|
- !ruby/object:Gem::Version
|
138
|
-
version:
|
180
|
+
version: 6.1.7.7
|
139
181
|
- !ruby/object:Gem::Dependency
|
140
182
|
name: bundler
|
141
183
|
requirement: !ruby/object:Gem::Requirement
|
142
184
|
requirements:
|
143
185
|
- - ">="
|
144
186
|
- !ruby/object:Gem::Version
|
145
|
-
version: 1.
|
187
|
+
version: 1.15.0
|
146
188
|
type: :runtime
|
147
189
|
prerelease: false
|
148
190
|
version_requirements: !ruby/object:Gem::Requirement
|
149
191
|
requirements:
|
150
192
|
- - ">="
|
151
193
|
- !ruby/object:Gem::Version
|
152
|
-
version: 1.
|
194
|
+
version: 1.15.0
|
153
195
|
- !ruby/object:Gem::Dependency
|
154
196
|
name: sprockets-rails
|
155
197
|
requirement: !ruby/object:Gem::Requirement
|
@@ -173,11 +215,17 @@ extensions: []
|
|
173
215
|
extra_rdoc_files: []
|
174
216
|
files:
|
175
217
|
- README.md
|
176
|
-
homepage:
|
218
|
+
homepage: https://rubyonrails.org
|
177
219
|
licenses:
|
178
220
|
- MIT
|
179
|
-
metadata:
|
180
|
-
|
221
|
+
metadata:
|
222
|
+
bug_tracker_uri: https://github.com/rails/rails/issues
|
223
|
+
changelog_uri: https://github.com/rails/rails/releases/tag/v6.1.7.7
|
224
|
+
documentation_uri: https://api.rubyonrails.org/v6.1.7.7/
|
225
|
+
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
226
|
+
source_code_uri: https://github.com/rails/rails/tree/v6.1.7.7
|
227
|
+
rubygems_mfa_required: 'true'
|
228
|
+
post_install_message:
|
181
229
|
rdoc_options: []
|
182
230
|
require_paths:
|
183
231
|
- lib
|
@@ -185,15 +233,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
185
233
|
requirements:
|
186
234
|
- - ">="
|
187
235
|
- !ruby/object:Gem::Version
|
188
|
-
version: 2.
|
236
|
+
version: 2.5.0
|
189
237
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
190
238
|
requirements:
|
191
239
|
- - ">="
|
192
240
|
- !ruby/object:Gem::Version
|
193
241
|
version: 1.8.11
|
194
242
|
requirements: []
|
195
|
-
rubygems_version: 3.
|
196
|
-
signing_key:
|
243
|
+
rubygems_version: 3.2.22
|
244
|
+
signing_key:
|
197
245
|
specification_version: 4
|
198
246
|
summary: Full-stack web application framework.
|
199
247
|
test_files: []
|