rpdoc 0.1.14 → 0.1.16

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6aa96c76973dbdc52d2bf391d6cd1dd9561be44290e83b7a1b81cf02a067f36a
4
- data.tar.gz: 0f93b3d7646b53be728867ce218acc78e7672bae09ae8075657311aa5f43d517
3
+ metadata.gz: 3332b67613587936b3b88b4f35fb1e78621faf65623f35e46b45e73c5b8bb221
4
+ data.tar.gz: 7d1b22cf5313d4ad91f2e470e67c157b61f4e1f00f1bfb9b912c1f357fcf6023
5
5
  SHA512:
6
- metadata.gz: 79ed1646334c6d66e9a144fbe7f3a7212c94184486b0237e162278ad7a89ce1a7699e6b787aa0861083579bcb277cf27a202f0bb4321e2561f38b2724156a00d
7
- data.tar.gz: 1d52b4c71c8188b9e51e07cdbf05a31b26231aa0f0af712b496d89b8c0ce494e50c96f8c5636a0b43dc03685e1cec7d90d183ddfb577e00918d49047ead3e488
6
+ metadata.gz: 3067394739da8951ec0bbab2028c5b765dce497dd34feeca00ea3325d01e6717e3f418a4957936ac81843ffb6212172d2e6a4a85e1a351f62384cba0723251b6
7
+ data.tar.gz: 9b21d3ba8cb79e13f1f5dfef58a155cde0edb1e8f861402f516f68b16dfe7def15e8f59b4b4c89e85e733150b378547b8479cee73ce5ea3795c3231d7c51055c
data/.gitlab/.keep ADDED
File without changes
File without changes
@@ -0,0 +1,9 @@
1
+ ### Deployment Note
2
+ > 1. Release sequence
3
+ > 2. Pre-step (e.g., take care db:migrate step)
4
+ > 3. Post-step (e.g., some rake needs to run)
5
+
6
+ ### Related
7
+ > External link for reference. (e.g., Redmine)
8
+ * url_link
9
+ * end
File without changes
@@ -0,0 +1,9 @@
1
+ ### Description
2
+ > Anything you want to explain to another developer for helpful code review.
3
+
4
+
5
+ ### Reviewers
6
+
7
+ @reviewers
8
+
9
+ Closes `gitlab issue link`
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.1.16] - 2023-06-01
2
+ - Fix default rpdoc_example_folders bug.
3
+
4
+ ## [0.1.15] - 2023-05-18
5
+ - Add gitlab templates.
6
+ - Update gemspec.
7
+
1
8
  ## [0.1.14] - 2023-02-09
2
9
  - Fix File object method `exists` has been removed error at Ruby 3.2.1.
3
10
  - [Removed deprecated Dir.exists? and File.exists?](https://github.com/ruby/ruby/commit/bf97415c02b11a8949f715431aca9eeb6311add2)
data/VERSION.md CHANGED
@@ -1 +1 @@
1
- 0.1.14
1
+ 0.1.16
data/lib/rpdoc/helper.rb CHANGED
@@ -30,7 +30,7 @@ RSpec.shared_context 'rpdoc' do
30
30
  example.metadata[:rpdoc_action_name] ||= controller.action_name
31
31
  example.metadata[:rpdoc_example_key] ||= example.metadata[:description].underscore
32
32
  example.metadata[:rpdoc_example_name] ||= example.metadata[:description]
33
- example.metadata[:rpdoc_example_folders] ||= controller.controller_path.split('/')
33
+ example.metadata[:rpdoc_example_folders] ||= controller.class.controller_path.split('/')
34
34
 
35
35
  postman_response = Rpdoc::PostmanResponse.new(example, request, response)
36
36
  postman_response.save
data/lib/rpdoc/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rpdoc
4
- VERSION = "0.1.14"
4
+ VERSION = "0.1.16"
5
5
  end
data/rpdoc.gemspec CHANGED
@@ -13,6 +13,10 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = "https://github.com/kdan-mobile-software-ltd/rpdoc"
14
14
  spec.license = "MIT"
15
15
  spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
16
+ spec.metadata = {
17
+ "source_code_uri" => "https://github.com/kdan-mobile-software-ltd/rpdoc",
18
+ "changelog_uri" => "https://github.com/kdan-mobile-software-ltd/rpdoc/blob/master/CHANGELOG.md"
19
+ }
16
20
 
17
21
  # Specify which files should be added to the gem when it is released.
18
22
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rpdoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.14
4
+ version: 0.1.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - yuntai
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-02-16 00:00:00.000000000 Z
11
+ date: 2023-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json_requester
@@ -90,6 +90,11 @@ extra_rdoc_files: []
90
90
  files:
91
91
  - ".gitignore"
92
92
  - ".gitlab-ci.yml"
93
+ - ".gitlab/.keep"
94
+ - ".gitlab/issue_templates/.keep"
95
+ - ".gitlab/issue_templates/Default.md"
96
+ - ".gitlab/merge_request_templates/.keep"
97
+ - ".gitlab/merge_request_templates/Default.md"
93
98
  - ".rubocop.yml"
94
99
  - CHANGELOG.md
95
100
  - Gemfile
@@ -113,7 +118,9 @@ files:
113
118
  homepage: https://github.com/kdan-mobile-software-ltd/rpdoc
114
119
  licenses:
115
120
  - MIT
116
- metadata: {}
121
+ metadata:
122
+ source_code_uri: https://github.com/kdan-mobile-software-ltd/rpdoc
123
+ changelog_uri: https://github.com/kdan-mobile-software-ltd/rpdoc/blob/master/CHANGELOG.md
117
124
  post_install_message:
118
125
  rdoc_options: []
119
126
  require_paths: