rails 7.0.0 → 7.2.3.2

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +23 -24
  4. metadata +32 -34
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9e9c2c842b4148ed8441bc666df09804a729da0b55f38cbbebcde8c689bb6cd
4
- data.tar.gz: 2e7630b0a78f8f15a2f1b8a2ca60a596ea794e4c3b61ff17eb60acde53ade88c
3
+ metadata.gz: '0475196d658be92affedc1d320c20082a3790d540d3c41a3af8d3a93fe326559'
4
+ data.tar.gz: f6b582521574341769a2b2e9ed8e8e95b885d251cd3eff2255a5831755e1f8a9
5
5
  SHA512:
6
- metadata.gz: 593c7762739e792d3bbab6f59eda611ec5d88071c0a80b7d64ce2c83414ed90559ad94669bb2a0f206e13be82d5d5462d5b1d6938ea795922e817f8924e993dc
7
- data.tar.gz: 930dc238e327feef81d03c55592042b3de4651bed870eaad73b51ed23cf5b3d3afbc31aa3624d2d3e4332d95efa7d4e7dd10013a7d0dca223d5569ab3e949c68
6
+ metadata.gz: c72fdfa94adff1de5eca775b58c837d08dd07b0183fb522bb013906fc46cfc9c77fb171a9d860d2142b1777f410aea4fa914a45906f34b3fb3afc850625888e0
7
+ data.tar.gz: b606a920c12d4eb7dd9e48e65f4c623e93456485542e9a9d85648604d21a4bb3f2633a4cddc05070df463a32cb664527451141bc76e23cddeafa56daf3cd5c94
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) David Heinemeier Hansson
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -1,9 +1,3 @@
1
- <p align="center">
2
- <a href="https://rubyonrails.org/" target="_blank" rel="noopener noreferrer">
3
- <img src="https://rubyonrails.org/images/rails-logo.svg" width="400">
4
- </a>
5
- </p>
6
-
7
1
  # Welcome to Rails
8
2
 
9
3
  ## What's Rails?
@@ -49,37 +43,42 @@ are bundled together in [Action Pack](actionpack/README.rdoc).
49
43
  ## Frameworks and libraries
50
44
 
51
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.
52
- In addition to that, Rails also comes with [Action Mailer](actionmailer/README.rdoc), a library
53
- to generate and send emails; [Action Mailbox](actionmailbox/README.md), a library to receive emails within a Rails application;
54
- [Active Job](activejob/README.md), a framework for declaring jobs and making them run on a variety of queuing
55
- backends; [Action Cable](actioncable/README.md), a framework to
56
- integrate WebSockets with a Rails application; [Active Storage](activestorage/README.md), a library to attach cloud
57
- and local files to Rails applications; [Action Text](actiontext/README.md), a library to handle rich text content;
58
- and [Active Support](activesupport/README.rdoc), a collection
59
- of utility classes and standard library extensions that are useful for Rails,
60
- and may also be used independently outside Rails.
46
+
47
+ In addition to that, Rails also comes with:
48
+
49
+ - [Action Mailer](actionmailer/README.rdoc), a library to generate and send emails
50
+ - [Action Mailbox](actionmailbox/README.md), a library to receive emails within a Rails application
51
+ - [Active Job](activejob/README.md), a framework for declaring jobs and making them run on a variety of queuing backends
52
+ - [Action Cable](actioncable/README.md), a framework to integrate WebSockets with a Rails application
53
+ - [Active Storage](activestorage/README.md), a library to attach cloud and local files to Rails applications
54
+ - [Action Text](actiontext/README.md), a library to handle rich text content
55
+ - [Active Support](activesupport/README.rdoc), a collection of utility classes and standard library extensions that are useful for Rails, and may also be used independently outside Rails
61
56
 
62
57
  ## Getting Started
63
58
 
64
59
  1. Install Rails at the command prompt if you haven't yet:
65
60
 
66
- $ gem install rails
61
+ ```bash
62
+ $ gem install rails
63
+ ```
67
64
 
68
65
  2. At the command prompt, create a new Rails application:
69
66
 
70
- $ rails new myapp
67
+ ```bash
68
+ $ rails new myapp
69
+ ```
71
70
 
72
71
  where "myapp" is the application name.
73
72
 
74
73
  3. Change directory to `myapp` and start the web server:
75
74
 
76
- $ cd myapp
77
- $ bin/rails server
78
-
75
+ ```bash
76
+ $ cd myapp
77
+ $ bin/rails server
78
+ ```
79
79
  Run with `--help` or `-h` for options.
80
80
 
81
- 4. Go to `http://localhost:3000` and you'll see:
82
- "Yay! You’re on Rails!"
81
+ 4. Go to `http://localhost:3000` and you'll see the Rails bootscreen with your Rails and Ruby versions.
83
82
 
84
83
  5. Follow the guidelines to start developing your application. You may find
85
84
  the following resources handy:
@@ -93,10 +92,10 @@ We encourage you to contribute to Ruby on Rails! Please check out the
93
92
  [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)
94
93
 
95
94
  Trying to report a possible security vulnerability in Rails? Please
96
- check out our [security policy](https://rubyonrails.org/security/) for
95
+ check out our [security policy](https://rubyonrails.org/security) for
97
96
  guidelines about how to proceed.
98
97
 
99
- 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/).
98
+ 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).
100
99
 
101
100
  ## License
102
101
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0
4
+ version: 7.2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2021-12-15 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: activesupport
@@ -16,168 +15,168 @@ dependencies:
16
15
  requirements:
17
16
  - - '='
18
17
  - !ruby/object:Gem::Version
19
- version: 7.0.0
18
+ version: 7.2.3.2
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - '='
25
24
  - !ruby/object:Gem::Version
26
- version: 7.0.0
25
+ version: 7.2.3.2
27
26
  - !ruby/object:Gem::Dependency
28
27
  name: actionpack
29
28
  requirement: !ruby/object:Gem::Requirement
30
29
  requirements:
31
30
  - - '='
32
31
  - !ruby/object:Gem::Version
33
- version: 7.0.0
32
+ version: 7.2.3.2
34
33
  type: :runtime
35
34
  prerelease: false
36
35
  version_requirements: !ruby/object:Gem::Requirement
37
36
  requirements:
38
37
  - - '='
39
38
  - !ruby/object:Gem::Version
40
- version: 7.0.0
39
+ version: 7.2.3.2
41
40
  - !ruby/object:Gem::Dependency
42
41
  name: actionview
43
42
  requirement: !ruby/object:Gem::Requirement
44
43
  requirements:
45
44
  - - '='
46
45
  - !ruby/object:Gem::Version
47
- version: 7.0.0
46
+ version: 7.2.3.2
48
47
  type: :runtime
49
48
  prerelease: false
50
49
  version_requirements: !ruby/object:Gem::Requirement
51
50
  requirements:
52
51
  - - '='
53
52
  - !ruby/object:Gem::Version
54
- version: 7.0.0
53
+ version: 7.2.3.2
55
54
  - !ruby/object:Gem::Dependency
56
55
  name: activemodel
57
56
  requirement: !ruby/object:Gem::Requirement
58
57
  requirements:
59
58
  - - '='
60
59
  - !ruby/object:Gem::Version
61
- version: 7.0.0
60
+ version: 7.2.3.2
62
61
  type: :runtime
63
62
  prerelease: false
64
63
  version_requirements: !ruby/object:Gem::Requirement
65
64
  requirements:
66
65
  - - '='
67
66
  - !ruby/object:Gem::Version
68
- version: 7.0.0
67
+ version: 7.2.3.2
69
68
  - !ruby/object:Gem::Dependency
70
69
  name: activerecord
71
70
  requirement: !ruby/object:Gem::Requirement
72
71
  requirements:
73
72
  - - '='
74
73
  - !ruby/object:Gem::Version
75
- version: 7.0.0
74
+ version: 7.2.3.2
76
75
  type: :runtime
77
76
  prerelease: false
78
77
  version_requirements: !ruby/object:Gem::Requirement
79
78
  requirements:
80
79
  - - '='
81
80
  - !ruby/object:Gem::Version
82
- version: 7.0.0
81
+ version: 7.2.3.2
83
82
  - !ruby/object:Gem::Dependency
84
83
  name: actionmailer
85
84
  requirement: !ruby/object:Gem::Requirement
86
85
  requirements:
87
86
  - - '='
88
87
  - !ruby/object:Gem::Version
89
- version: 7.0.0
88
+ version: 7.2.3.2
90
89
  type: :runtime
91
90
  prerelease: false
92
91
  version_requirements: !ruby/object:Gem::Requirement
93
92
  requirements:
94
93
  - - '='
95
94
  - !ruby/object:Gem::Version
96
- version: 7.0.0
95
+ version: 7.2.3.2
97
96
  - !ruby/object:Gem::Dependency
98
97
  name: activejob
99
98
  requirement: !ruby/object:Gem::Requirement
100
99
  requirements:
101
100
  - - '='
102
101
  - !ruby/object:Gem::Version
103
- version: 7.0.0
102
+ version: 7.2.3.2
104
103
  type: :runtime
105
104
  prerelease: false
106
105
  version_requirements: !ruby/object:Gem::Requirement
107
106
  requirements:
108
107
  - - '='
109
108
  - !ruby/object:Gem::Version
110
- version: 7.0.0
109
+ version: 7.2.3.2
111
110
  - !ruby/object:Gem::Dependency
112
111
  name: actioncable
113
112
  requirement: !ruby/object:Gem::Requirement
114
113
  requirements:
115
114
  - - '='
116
115
  - !ruby/object:Gem::Version
117
- version: 7.0.0
116
+ version: 7.2.3.2
118
117
  type: :runtime
119
118
  prerelease: false
120
119
  version_requirements: !ruby/object:Gem::Requirement
121
120
  requirements:
122
121
  - - '='
123
122
  - !ruby/object:Gem::Version
124
- version: 7.0.0
123
+ version: 7.2.3.2
125
124
  - !ruby/object:Gem::Dependency
126
125
  name: activestorage
127
126
  requirement: !ruby/object:Gem::Requirement
128
127
  requirements:
129
128
  - - '='
130
129
  - !ruby/object:Gem::Version
131
- version: 7.0.0
130
+ version: 7.2.3.2
132
131
  type: :runtime
133
132
  prerelease: false
134
133
  version_requirements: !ruby/object:Gem::Requirement
135
134
  requirements:
136
135
  - - '='
137
136
  - !ruby/object:Gem::Version
138
- version: 7.0.0
137
+ version: 7.2.3.2
139
138
  - !ruby/object:Gem::Dependency
140
139
  name: actionmailbox
141
140
  requirement: !ruby/object:Gem::Requirement
142
141
  requirements:
143
142
  - - '='
144
143
  - !ruby/object:Gem::Version
145
- version: 7.0.0
144
+ version: 7.2.3.2
146
145
  type: :runtime
147
146
  prerelease: false
148
147
  version_requirements: !ruby/object:Gem::Requirement
149
148
  requirements:
150
149
  - - '='
151
150
  - !ruby/object:Gem::Version
152
- version: 7.0.0
151
+ version: 7.2.3.2
153
152
  - !ruby/object:Gem::Dependency
154
153
  name: actiontext
155
154
  requirement: !ruby/object:Gem::Requirement
156
155
  requirements:
157
156
  - - '='
158
157
  - !ruby/object:Gem::Version
159
- version: 7.0.0
158
+ version: 7.2.3.2
160
159
  type: :runtime
161
160
  prerelease: false
162
161
  version_requirements: !ruby/object:Gem::Requirement
163
162
  requirements:
164
163
  - - '='
165
164
  - !ruby/object:Gem::Version
166
- version: 7.0.0
165
+ version: 7.2.3.2
167
166
  - !ruby/object:Gem::Dependency
168
167
  name: railties
169
168
  requirement: !ruby/object:Gem::Requirement
170
169
  requirements:
171
170
  - - '='
172
171
  - !ruby/object:Gem::Version
173
- version: 7.0.0
172
+ version: 7.2.3.2
174
173
  type: :runtime
175
174
  prerelease: false
176
175
  version_requirements: !ruby/object:Gem::Requirement
177
176
  requirements:
178
177
  - - '='
179
178
  - !ruby/object:Gem::Version
180
- version: 7.0.0
179
+ version: 7.2.3.2
181
180
  - !ruby/object:Gem::Dependency
182
181
  name: bundler
183
182
  requirement: !ruby/object:Gem::Requirement
@@ -200,18 +199,18 @@ executables: []
200
199
  extensions: []
201
200
  extra_rdoc_files: []
202
201
  files:
202
+ - MIT-LICENSE
203
203
  - README.md
204
204
  homepage: https://rubyonrails.org
205
205
  licenses:
206
206
  - MIT
207
207
  metadata:
208
208
  bug_tracker_uri: https://github.com/rails/rails/issues
209
- changelog_uri: https://github.com/rails/rails/releases/tag/v7.0.0
210
- documentation_uri: https://api.rubyonrails.org/v7.0.0/
209
+ changelog_uri: https://github.com/rails/rails/releases/tag/v7.2.3.2
210
+ documentation_uri: https://api.rubyonrails.org/v7.2.3.2/
211
211
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
212
- source_code_uri: https://github.com/rails/rails/tree/v7.0.0
212
+ source_code_uri: https://github.com/rails/rails/tree/v7.2.3.2
213
213
  rubygems_mfa_required: 'true'
214
- post_install_message:
215
214
  rdoc_options: []
216
215
  require_paths:
217
216
  - lib
@@ -219,15 +218,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
219
218
  requirements:
220
219
  - - ">="
221
220
  - !ruby/object:Gem::Version
222
- version: 2.7.0
221
+ version: 3.1.0
223
222
  required_rubygems_version: !ruby/object:Gem::Requirement
224
223
  requirements:
225
224
  - - ">="
226
225
  - !ruby/object:Gem::Version
227
226
  version: 1.8.11
228
227
  requirements: []
229
- rubygems_version: 3.2.32
230
- signing_key:
228
+ rubygems_version: 4.0.16
231
229
  specification_version: 4
232
230
  summary: Full-stack web application framework.
233
231
  test_files: []