tests_doc 0.0.3 → 0.0.4
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/.ruby-version +1 -1
- data/examples/rails-4.2.5/Gemfile +0 -1
- data/examples/rails-4.2.5/Gemfile.lock +4 -4
- data/examples/rails-4.2.5/spec/requests/posts_spec.rb +4 -1
- data/examples/rails-4.2.5/spec/requests/users_spec.rb +3 -1
- data/examples/rails-4.2.5/tests-doc/README.md +1 -1
- data/examples/rails-4.2.5/tests-doc/api/posts.md +1 -16
- data/examples/rails-4.2.5/tests-doc/api/posts/@id.md +6 -6
- data/examples/rails-4.2.5/tests-doc/api/posts@with-filter.md +1 -16
- data/examples/rails-4.2.5/tests-doc/api/users.md +1 -16
- data/examples/rails-5.2.3/.gitignore +31 -0
- data/examples/rails-5.2.3/.ruby-version +1 -0
- data/examples/rails-5.2.3/Gemfile +49 -0
- data/examples/rails-5.2.3/Gemfile.lock +235 -0
- data/examples/rails-5.2.3/README.md +24 -0
- data/examples/rails-5.2.3/Rakefile +6 -0
- data/examples/rails-5.2.3/app/assets/config/manifest.js +3 -0
- data/examples/rails-5.2.3/app/assets/images/.keep +0 -0
- data/examples/rails-5.2.3/app/assets/javascripts/application.js +16 -0
- data/examples/rails-5.2.3/app/assets/javascripts/cable.js +13 -0
- data/examples/rails-5.2.3/app/assets/javascripts/channels/.keep +0 -0
- data/examples/rails-5.2.3/app/assets/javascripts/posts.js +2 -0
- data/examples/rails-5.2.3/app/assets/javascripts/users.js +2 -0
- data/examples/rails-5.2.3/app/assets/stylesheets/application.css +15 -0
- data/examples/rails-5.2.3/app/assets/stylesheets/posts.scss +3 -0
- data/examples/rails-5.2.3/app/assets/stylesheets/users.scss +3 -0
- data/examples/rails-5.2.3/app/channels/application_cable/channel.rb +4 -0
- data/examples/rails-5.2.3/app/channels/application_cable/connection.rb +4 -0
- data/examples/rails-5.2.3/app/controllers/application_controller.rb +2 -0
- data/examples/rails-5.2.3/app/controllers/concerns/.keep +0 -0
- data/examples/rails-5.2.3/app/controllers/posts_controller.rb +61 -0
- data/examples/rails-5.2.3/app/controllers/users_controller.rb +59 -0
- data/examples/rails-5.2.3/app/helpers/application_helper.rb +2 -0
- data/examples/rails-5.2.3/app/helpers/posts_helper.rb +2 -0
- data/examples/rails-5.2.3/app/helpers/users_helper.rb +2 -0
- data/examples/rails-5.2.3/app/jobs/application_job.rb +2 -0
- data/examples/rails-5.2.3/app/mailers/application_mailer.rb +4 -0
- data/examples/rails-5.2.3/app/models/application_record.rb +3 -0
- data/examples/rails-5.2.3/app/models/concerns/.keep +0 -0
- data/examples/rails-5.2.3/app/models/post.rb +3 -0
- data/examples/rails-5.2.3/app/models/user.rb +2 -0
- data/examples/rails-5.2.3/app/views/layouts/application.html.erb +15 -0
- data/examples/rails-5.2.3/app/views/layouts/mailer.html.erb +13 -0
- data/examples/rails-5.2.3/app/views/layouts/mailer.text.erb +1 -0
- data/examples/rails-5.2.3/bin/bundle +3 -0
- data/examples/rails-5.2.3/bin/rails +9 -0
- data/examples/rails-5.2.3/bin/rake +9 -0
- data/examples/rails-5.2.3/bin/setup +36 -0
- data/examples/rails-5.2.3/bin/spring +17 -0
- data/examples/rails-5.2.3/bin/update +31 -0
- data/examples/rails-5.2.3/bin/yarn +11 -0
- data/examples/rails-5.2.3/config.ru +5 -0
- data/examples/rails-5.2.3/config/application.rb +19 -0
- data/examples/rails-5.2.3/config/boot.rb +4 -0
- data/examples/rails-5.2.3/config/cable.yml +10 -0
- data/examples/rails-5.2.3/config/credentials.yml.enc +1 -0
- data/examples/rails-5.2.3/config/database.yml +25 -0
- data/examples/rails-5.2.3/config/environment.rb +5 -0
- data/examples/rails-5.2.3/config/environments/development.rb +61 -0
- data/examples/rails-5.2.3/config/environments/production.rb +94 -0
- data/examples/rails-5.2.3/config/environments/test.rb +46 -0
- data/examples/rails-5.2.3/config/initializers/application_controller_renderer.rb +8 -0
- data/examples/rails-5.2.3/config/initializers/assets.rb +14 -0
- data/examples/rails-5.2.3/config/initializers/backtrace_silencers.rb +7 -0
- data/examples/rails-5.2.3/config/initializers/content_security_policy.rb +25 -0
- data/examples/rails-5.2.3/config/initializers/cookies_serializer.rb +5 -0
- data/examples/rails-5.2.3/config/initializers/filter_parameter_logging.rb +4 -0
- data/examples/rails-5.2.3/config/initializers/inflections.rb +16 -0
- data/examples/rails-5.2.3/config/initializers/mime_types.rb +4 -0
- data/examples/rails-5.2.3/config/initializers/wrap_parameters.rb +14 -0
- data/examples/rails-5.2.3/config/locales/en.yml +33 -0
- data/examples/rails-5.2.3/config/puma.rb +34 -0
- data/examples/rails-5.2.3/config/routes.rb +6 -0
- data/examples/rails-5.2.3/config/spring.rb +6 -0
- data/examples/rails-5.2.3/config/storage.yml +34 -0
- data/examples/rails-5.2.3/db/migrate/20190618211257_create_users.rb +11 -0
- data/examples/rails-5.2.3/db/migrate/20190618211325_create_posts.rb +11 -0
- data/examples/rails-5.2.3/db/schema.rb +32 -0
- data/examples/rails-5.2.3/db/seeds.rb +7 -0
- data/examples/rails-5.2.3/lib/assets/.keep +0 -0
- data/examples/rails-5.2.3/lib/tasks/.keep +0 -0
- data/examples/rails-5.2.3/log/.keep +0 -0
- data/examples/rails-5.2.3/package.json +5 -0
- data/examples/rails-5.2.3/public/404.html +67 -0
- data/examples/rails-5.2.3/public/422.html +67 -0
- data/examples/rails-5.2.3/public/500.html +66 -0
- data/examples/rails-5.2.3/public/apple-touch-icon-precomposed.png +0 -0
- data/examples/rails-5.2.3/public/apple-touch-icon.png +0 -0
- data/examples/rails-5.2.3/public/favicon.ico +0 -0
- data/examples/rails-5.2.3/public/robots.txt +1 -0
- data/examples/rails-5.2.3/spec/rails_helper.rb +62 -0
- data/examples/rails-5.2.3/spec/requests/posts_spec.rb +33 -0
- data/examples/rails-5.2.3/spec/requests/users_spec.rb +24 -0
- data/examples/rails-5.2.3/spec/spec_helper.rb +89 -0
- data/examples/rails-5.2.3/storage/.keep +0 -0
- data/examples/rails-5.2.3/tests-doc/README.md +32 -0
- data/examples/rails-5.2.3/tests-doc/api/posts.md +24 -0
- data/examples/rails-5.2.3/tests-doc/api/posts/@id.md +29 -0
- data/examples/rails-5.2.3/tests-doc/api/posts@with-filter.md +25 -0
- data/examples/rails-5.2.3/tests-doc/api/users.md +24 -0
- data/examples/rails-5.2.3/tests-doc/api/users/@id/posts.md +24 -0
- data/examples/rails-5.2.3/tmp/.keep +0 -0
- data/examples/rails-5.2.3/vendor/.keep +0 -0
- data/lib/tests_doc/version.rb +1 -1
- data/tests_doc.gemspec +1 -1
- metadata +100 -7
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# This file was generated by the `rails generate rspec:install` command. Conventionally, all
|
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
|
3
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause this
|
|
4
|
+
# file to always be loaded, without a need to explicitly require it in any files.
|
|
5
|
+
#
|
|
6
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
|
7
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
|
8
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
|
9
|
+
# individual file that may not need all of that loaded. Instead, make a
|
|
10
|
+
# separate helper file that requires this one and then use it only in the specs
|
|
11
|
+
# that actually need it.
|
|
12
|
+
#
|
|
13
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
|
14
|
+
# users commonly want.
|
|
15
|
+
#
|
|
16
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
|
17
|
+
RSpec.configure do |config|
|
|
18
|
+
# The settings below are suggested to provide a good initial experience
|
|
19
|
+
# with RSpec, but feel free to customize to your heart's content.
|
|
20
|
+
=begin
|
|
21
|
+
# These two settings work together to allow you to limit a spec run
|
|
22
|
+
# to individual examples or groups you care about by tagging them with
|
|
23
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
|
24
|
+
# get run.
|
|
25
|
+
config.filter_run :focus
|
|
26
|
+
config.run_all_when_everything_filtered = true
|
|
27
|
+
|
|
28
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
|
29
|
+
# file, and it's useful to allow more verbose output when running an
|
|
30
|
+
# individual spec file.
|
|
31
|
+
if config.files_to_run.one?
|
|
32
|
+
# Use the documentation formatter for detailed output,
|
|
33
|
+
# unless a formatter has already been configured
|
|
34
|
+
# (e.g. via a command-line flag).
|
|
35
|
+
config.default_formatter = 'doc'
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# Print the 10 slowest examples and example groups at the
|
|
39
|
+
# end of the spec run, to help surface which specs are running
|
|
40
|
+
# particularly slow.
|
|
41
|
+
config.profile_examples = 10
|
|
42
|
+
|
|
43
|
+
# Run specs in random order to surface order dependencies. If you find an
|
|
44
|
+
# order dependency and want to debug it, you can fix the order by providing
|
|
45
|
+
# the seed, which is printed after each run.
|
|
46
|
+
# --seed 1234
|
|
47
|
+
config.order = :random
|
|
48
|
+
|
|
49
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
|
50
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
|
51
|
+
# test failures related to randomization by passing the same `--seed` value
|
|
52
|
+
# as the one that triggered the failure.
|
|
53
|
+
Kernel.srand config.seed
|
|
54
|
+
|
|
55
|
+
# rspec-expectations config goes here. You can use an alternate
|
|
56
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
|
57
|
+
# assertions if you prefer.
|
|
58
|
+
config.expect_with :rspec do |expectations|
|
|
59
|
+
# Enable only the newer, non-monkey-patching expect syntax.
|
|
60
|
+
# For more details, see:
|
|
61
|
+
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
|
|
62
|
+
expectations.syntax = :expect
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
|
66
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
|
67
|
+
config.mock_with :rspec do |mocks|
|
|
68
|
+
# Enable only the newer, non-monkey-patching expect syntax.
|
|
69
|
+
# For more details, see:
|
|
70
|
+
# - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
|
71
|
+
mocks.syntax = :expect
|
|
72
|
+
|
|
73
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
|
74
|
+
# a real object. This is generally recommended.
|
|
75
|
+
mocks.verify_partial_doubles = true
|
|
76
|
+
end
|
|
77
|
+
=end
|
|
78
|
+
|
|
79
|
+
config.after :suite do |test|
|
|
80
|
+
# block executed when there is any api interactions were recorded during the rspec
|
|
81
|
+
TestsDoc.with_api_interaction do
|
|
82
|
+
require 'rake'
|
|
83
|
+
require 'tests_doc/tasks'
|
|
84
|
+
|
|
85
|
+
Rake::Task["tests_doc:index:build"].invoke(TestsDoc.configuration.root_folder)
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
end
|
|
File without changes
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Api Interactions
|
|
2
|
+
|
|
3
|
+
This document contains a list of api endpoints tested.
|
|
4
|
+
If one of the api endpoint is modified during the test suite if its a deletion,
|
|
5
|
+
make sure this wont affect any of code consuming the api endpoint.
|
|
6
|
+
|
|
7
|
+
Last modified at: 06/18/2019 11:27PM
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# Endpoints
|
|
11
|
+
|
|
12
|
+
## Api Interactions
|
|
13
|
+
|
|
14
|
+
[/README.md](README.md)
|
|
15
|
+
|
|
16
|
+
## GET posts
|
|
17
|
+
|
|
18
|
+
[/api/posts.md](api/posts.md)
|
|
19
|
+
|
|
20
|
+
[/api/posts@with-filter.md](api/posts@with-filter.md)
|
|
21
|
+
|
|
22
|
+
## GET posts/@id
|
|
23
|
+
|
|
24
|
+
[/api/posts/@id.md](api/posts/@id.md)
|
|
25
|
+
|
|
26
|
+
## GET users
|
|
27
|
+
|
|
28
|
+
[/api/users.md](api/users.md)
|
|
29
|
+
|
|
30
|
+
## GET users/@id/posts
|
|
31
|
+
|
|
32
|
+
[/api/users/@id/posts.md](api/users/@id/posts.md)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# GET posts
|
|
2
|
+
|
|
3
|
+
Rspec description: Posts GET /posts renders posts
|
|
4
|
+
|
|
5
|
+
[spec/requests/posts_spec.rb:5](/spec/requests/posts_spec.rb#L5)
|
|
6
|
+
|
|
7
|
+
# Parameters
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
}
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
# Response
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
HTTP CODE = 200
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
```json
|
|
21
|
+
[
|
|
22
|
+
|
|
23
|
+
]
|
|
24
|
+
```
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# GET posts/@id
|
|
2
|
+
|
|
3
|
+
Rspec description: Posts GET /posts/:id renders posts with id
|
|
4
|
+
|
|
5
|
+
[spec/requests/posts_spec.rb:22](/spec/requests/posts_spec.rb#L22)
|
|
6
|
+
|
|
7
|
+
# Parameters
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
}
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
# Response
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
HTTP CODE = 200
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
```json
|
|
21
|
+
{
|
|
22
|
+
"id": 1,
|
|
23
|
+
"title": null,
|
|
24
|
+
"body": null,
|
|
25
|
+
"user_id": 1,
|
|
26
|
+
"created_at": "2019-06-18T21:27:26.839Z",
|
|
27
|
+
"updated_at": "2019-06-18T21:27:26.839Z"
|
|
28
|
+
}
|
|
29
|
+
```
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# GET posts
|
|
2
|
+
|
|
3
|
+
Rspec description: Posts GET /posts renders posts with filter
|
|
4
|
+
|
|
5
|
+
[spec/requests/posts_spec.rb:12](/spec/requests/posts_spec.rb#L12)
|
|
6
|
+
|
|
7
|
+
# Parameters
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
"published": "true"
|
|
12
|
+
}
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
# Response
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
HTTP CODE = 200
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
```json
|
|
22
|
+
[
|
|
23
|
+
|
|
24
|
+
]
|
|
25
|
+
```
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# GET users
|
|
2
|
+
|
|
3
|
+
Rspec description: Users GET /users renders users
|
|
4
|
+
|
|
5
|
+
[spec/requests/users_spec.rb:5](/spec/requests/users_spec.rb#L5)
|
|
6
|
+
|
|
7
|
+
# Parameters
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
}
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
# Response
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
HTTP CODE = 200
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
```json
|
|
21
|
+
[
|
|
22
|
+
|
|
23
|
+
]
|
|
24
|
+
```
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# GET users/@id/posts
|
|
2
|
+
|
|
3
|
+
Rspec description: Users GET /users/:user_id/posts renders posts
|
|
4
|
+
|
|
5
|
+
[spec/requests/users_spec.rb:14](/spec/requests/users_spec.rb#L14)
|
|
6
|
+
|
|
7
|
+
# Parameters
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
}
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
# Response
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
HTTP CODE = 200
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
```json
|
|
21
|
+
[
|
|
22
|
+
|
|
23
|
+
]
|
|
24
|
+
```
|
|
File without changes
|
|
File without changes
|
data/lib/tests_doc/version.rb
CHANGED
data/tests_doc.gemspec
CHANGED
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
19
|
spec.require_paths = ["lib"]
|
|
20
20
|
|
|
21
|
-
spec.add_dependency "rails", '
|
|
21
|
+
spec.add_dependency "rails", '>= 4'
|
|
22
22
|
spec.add_dependency "rspec", '>= 2.0'
|
|
23
23
|
spec.add_dependency "rspec-rails", '>= 2.0'
|
|
24
24
|
end
|
metadata
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tests_doc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jean-Richard Lai
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-06-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '4
|
|
19
|
+
version: '4'
|
|
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
|
|
26
|
+
version: '4'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rspec
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -120,6 +120,99 @@ files:
|
|
|
120
120
|
- examples/rails-4.2.5/tests-doc/api/posts@with-filter.md
|
|
121
121
|
- examples/rails-4.2.5/tests-doc/api/users.md
|
|
122
122
|
- examples/rails-4.2.5/tests-doc/api/users/@id/posts.md
|
|
123
|
+
- examples/rails-5.2.3/.gitignore
|
|
124
|
+
- examples/rails-5.2.3/.ruby-version
|
|
125
|
+
- examples/rails-5.2.3/Gemfile
|
|
126
|
+
- examples/rails-5.2.3/Gemfile.lock
|
|
127
|
+
- examples/rails-5.2.3/README.md
|
|
128
|
+
- examples/rails-5.2.3/Rakefile
|
|
129
|
+
- examples/rails-5.2.3/app/assets/config/manifest.js
|
|
130
|
+
- examples/rails-5.2.3/app/assets/images/.keep
|
|
131
|
+
- examples/rails-5.2.3/app/assets/javascripts/application.js
|
|
132
|
+
- examples/rails-5.2.3/app/assets/javascripts/cable.js
|
|
133
|
+
- examples/rails-5.2.3/app/assets/javascripts/channels/.keep
|
|
134
|
+
- examples/rails-5.2.3/app/assets/javascripts/posts.js
|
|
135
|
+
- examples/rails-5.2.3/app/assets/javascripts/users.js
|
|
136
|
+
- examples/rails-5.2.3/app/assets/stylesheets/application.css
|
|
137
|
+
- examples/rails-5.2.3/app/assets/stylesheets/posts.scss
|
|
138
|
+
- examples/rails-5.2.3/app/assets/stylesheets/users.scss
|
|
139
|
+
- examples/rails-5.2.3/app/channels/application_cable/channel.rb
|
|
140
|
+
- examples/rails-5.2.3/app/channels/application_cable/connection.rb
|
|
141
|
+
- examples/rails-5.2.3/app/controllers/application_controller.rb
|
|
142
|
+
- examples/rails-5.2.3/app/controllers/concerns/.keep
|
|
143
|
+
- examples/rails-5.2.3/app/controllers/posts_controller.rb
|
|
144
|
+
- examples/rails-5.2.3/app/controllers/users_controller.rb
|
|
145
|
+
- examples/rails-5.2.3/app/helpers/application_helper.rb
|
|
146
|
+
- examples/rails-5.2.3/app/helpers/posts_helper.rb
|
|
147
|
+
- examples/rails-5.2.3/app/helpers/users_helper.rb
|
|
148
|
+
- examples/rails-5.2.3/app/jobs/application_job.rb
|
|
149
|
+
- examples/rails-5.2.3/app/mailers/application_mailer.rb
|
|
150
|
+
- examples/rails-5.2.3/app/models/application_record.rb
|
|
151
|
+
- examples/rails-5.2.3/app/models/concerns/.keep
|
|
152
|
+
- examples/rails-5.2.3/app/models/post.rb
|
|
153
|
+
- examples/rails-5.2.3/app/models/user.rb
|
|
154
|
+
- examples/rails-5.2.3/app/views/layouts/application.html.erb
|
|
155
|
+
- examples/rails-5.2.3/app/views/layouts/mailer.html.erb
|
|
156
|
+
- examples/rails-5.2.3/app/views/layouts/mailer.text.erb
|
|
157
|
+
- examples/rails-5.2.3/bin/bundle
|
|
158
|
+
- examples/rails-5.2.3/bin/rails
|
|
159
|
+
- examples/rails-5.2.3/bin/rake
|
|
160
|
+
- examples/rails-5.2.3/bin/setup
|
|
161
|
+
- examples/rails-5.2.3/bin/spring
|
|
162
|
+
- examples/rails-5.2.3/bin/update
|
|
163
|
+
- examples/rails-5.2.3/bin/yarn
|
|
164
|
+
- examples/rails-5.2.3/config.ru
|
|
165
|
+
- examples/rails-5.2.3/config/application.rb
|
|
166
|
+
- examples/rails-5.2.3/config/boot.rb
|
|
167
|
+
- examples/rails-5.2.3/config/cable.yml
|
|
168
|
+
- examples/rails-5.2.3/config/credentials.yml.enc
|
|
169
|
+
- examples/rails-5.2.3/config/database.yml
|
|
170
|
+
- examples/rails-5.2.3/config/environment.rb
|
|
171
|
+
- examples/rails-5.2.3/config/environments/development.rb
|
|
172
|
+
- examples/rails-5.2.3/config/environments/production.rb
|
|
173
|
+
- examples/rails-5.2.3/config/environments/test.rb
|
|
174
|
+
- examples/rails-5.2.3/config/initializers/application_controller_renderer.rb
|
|
175
|
+
- examples/rails-5.2.3/config/initializers/assets.rb
|
|
176
|
+
- examples/rails-5.2.3/config/initializers/backtrace_silencers.rb
|
|
177
|
+
- examples/rails-5.2.3/config/initializers/content_security_policy.rb
|
|
178
|
+
- examples/rails-5.2.3/config/initializers/cookies_serializer.rb
|
|
179
|
+
- examples/rails-5.2.3/config/initializers/filter_parameter_logging.rb
|
|
180
|
+
- examples/rails-5.2.3/config/initializers/inflections.rb
|
|
181
|
+
- examples/rails-5.2.3/config/initializers/mime_types.rb
|
|
182
|
+
- examples/rails-5.2.3/config/initializers/wrap_parameters.rb
|
|
183
|
+
- examples/rails-5.2.3/config/locales/en.yml
|
|
184
|
+
- examples/rails-5.2.3/config/puma.rb
|
|
185
|
+
- examples/rails-5.2.3/config/routes.rb
|
|
186
|
+
- examples/rails-5.2.3/config/spring.rb
|
|
187
|
+
- examples/rails-5.2.3/config/storage.yml
|
|
188
|
+
- examples/rails-5.2.3/db/migrate/20190618211257_create_users.rb
|
|
189
|
+
- examples/rails-5.2.3/db/migrate/20190618211325_create_posts.rb
|
|
190
|
+
- examples/rails-5.2.3/db/schema.rb
|
|
191
|
+
- examples/rails-5.2.3/db/seeds.rb
|
|
192
|
+
- examples/rails-5.2.3/lib/assets/.keep
|
|
193
|
+
- examples/rails-5.2.3/lib/tasks/.keep
|
|
194
|
+
- examples/rails-5.2.3/log/.keep
|
|
195
|
+
- examples/rails-5.2.3/package.json
|
|
196
|
+
- examples/rails-5.2.3/public/404.html
|
|
197
|
+
- examples/rails-5.2.3/public/422.html
|
|
198
|
+
- examples/rails-5.2.3/public/500.html
|
|
199
|
+
- examples/rails-5.2.3/public/apple-touch-icon-precomposed.png
|
|
200
|
+
- examples/rails-5.2.3/public/apple-touch-icon.png
|
|
201
|
+
- examples/rails-5.2.3/public/favicon.ico
|
|
202
|
+
- examples/rails-5.2.3/public/robots.txt
|
|
203
|
+
- examples/rails-5.2.3/spec/rails_helper.rb
|
|
204
|
+
- examples/rails-5.2.3/spec/requests/posts_spec.rb
|
|
205
|
+
- examples/rails-5.2.3/spec/requests/users_spec.rb
|
|
206
|
+
- examples/rails-5.2.3/spec/spec_helper.rb
|
|
207
|
+
- examples/rails-5.2.3/storage/.keep
|
|
208
|
+
- examples/rails-5.2.3/tests-doc/README.md
|
|
209
|
+
- examples/rails-5.2.3/tests-doc/api/posts.md
|
|
210
|
+
- examples/rails-5.2.3/tests-doc/api/posts/@id.md
|
|
211
|
+
- examples/rails-5.2.3/tests-doc/api/posts@with-filter.md
|
|
212
|
+
- examples/rails-5.2.3/tests-doc/api/users.md
|
|
213
|
+
- examples/rails-5.2.3/tests-doc/api/users/@id/posts.md
|
|
214
|
+
- examples/rails-5.2.3/tmp/.keep
|
|
215
|
+
- examples/rails-5.2.3/vendor/.keep
|
|
123
216
|
- lib/tests_doc.rb
|
|
124
217
|
- lib/tests_doc/configuration.rb
|
|
125
218
|
- lib/tests_doc/disabled_record_spec_helper.rb
|
|
@@ -152,7 +245,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
152
245
|
version: '0'
|
|
153
246
|
requirements: []
|
|
154
247
|
rubyforge_project:
|
|
155
|
-
rubygems_version: 2.2
|
|
248
|
+
rubygems_version: 2.5.2
|
|
156
249
|
signing_key:
|
|
157
250
|
specification_version: 4
|
|
158
251
|
summary: Rspec requests file to markdown
|