sdoc_live 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +9 -1
- data/lib/sdoc_live/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f4770d2843dbc87024c36f53de0113996c507f1f36db1e3226598c894a33b572
|
|
4
|
+
data.tar.gz: 0d0f93d361d31f2e47334498a2f0660672a4b8c848d902b2ff16b4f02eb1f9af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57b61894564f2d5d577074bd86255d57b24c2467285e52197120b82bf656a6c4c66294aaeeeb2e54656e214f6c58d7de5c734b619315904f7946096b4e714e68
|
|
7
|
+
data.tar.gz: d4873ec6319260b21d64178da1a0f758f6fb4becbe34836384c13d778a7bacff7eac36b8caa3e10d8759023aa385316082765cd881ffb242b61fde90d4201813
|
data/README.md
CHANGED
|
@@ -16,6 +16,14 @@ gem "sdoc_live"
|
|
|
16
16
|
|
|
17
17
|
Then run `bundle install`.
|
|
18
18
|
|
|
19
|
+
> **Note:** If you're using Ruby 4.0+, you'll need to add the following to your Gemfile until a new version of sdoc is released with the fix ([rails/sdoc#379](https://github.com/rails/sdoc/pull/379)):
|
|
20
|
+
>
|
|
21
|
+
> ```ruby
|
|
22
|
+
> group :development do
|
|
23
|
+
> gem "sdoc", github: "zzak/sdoc", branch: "re-379"
|
|
24
|
+
> end
|
|
25
|
+
> ```
|
|
26
|
+
|
|
19
27
|
## Usage
|
|
20
28
|
|
|
21
29
|
### 1. Puma Plugin (Development Watch Mode)
|
|
@@ -63,7 +71,7 @@ SdocLive.configure do |config|
|
|
|
63
71
|
|
|
64
72
|
# Additional RDoc options passed to the SDoc generator
|
|
65
73
|
# config.rdoc_options = ["--all", "--hyperlink-all"]
|
|
66
|
-
end
|
|
74
|
+
end if defined?(SdocLive)
|
|
67
75
|
```
|
|
68
76
|
|
|
69
77
|
## How It Works
|
data/lib/sdoc_live/version.rb
CHANGED