RbST 0.6.0 → 0.6.1
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 +12 -2
- data/RbST.gemspec +3 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e851228f1e733703a72a0c659aa29ab8b60c63c2caccc7531765449971605059
|
4
|
+
data.tar.gz: 37e82848f39b21339f6267b340fcb3254eab9681bb3feb5d80394b3dda74578a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efcb21f7a0b03df9a3265d65ecf20f7072023dbaf4b33d45c785f8007652a37eb787cdfe81cded1e1a898bb965a59f2d379e46f68fa649235933c66efe3c17e9
|
7
|
+
data.tar.gz: 878470406a01a566247507ff887ebc35613344ab846a58a6caf04af207a7a64c1ef1155aefc4777a800a287e1ebb7cce897b6ad3dfc204de473be909b5fefdba
|
data/README.md
CHANGED
@@ -1,17 +1,27 @@
|
|
1
1
|
# RbST
|
2
2
|
|
3
|
-
A
|
3
|
+
A Ruby gem for processing
|
4
|
+
[reStructuredText](https://en.wikipedia.org/wiki/ReStructuredText) via Python's
|
5
|
+
[Docutils](https://pypi.org/project/docutils/).
|
4
6
|
|
5
7
|
## Installation
|
6
8
|
|
7
9
|
Python 2.3+ (or 3.3+) is required.
|
8
10
|
|
9
|
-
RbST is available on [RubyGems
|
11
|
+
RbST is available on [RubyGems](https://rubygems.org/gems/RbST):
|
10
12
|
|
11
13
|
```bash
|
12
14
|
gem install RbST
|
13
15
|
```
|
14
16
|
|
17
|
+
To install with [Bundler](https://bundler.io/), add the following to your Gemfile:
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
gem 'RbST'
|
21
|
+
```
|
22
|
+
|
23
|
+
Then run `bundle install`
|
24
|
+
|
15
25
|
## Usage
|
16
26
|
|
17
27
|
```ruby
|
data/RbST.gemspec
CHANGED
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'RbST'
|
5
|
-
s.version = '0.6.
|
5
|
+
s.version = '0.6.1'
|
6
6
|
s.licenses = ['MIT']
|
7
|
-
s.summary = "A
|
8
|
-
s.description = "A
|
7
|
+
s.summary = "A Ruby gem for processing reStructuredText via Python's Docutils."
|
8
|
+
s.description = "A Ruby gem for processing reStructuredText via Python's Docutils."
|
9
9
|
s.authors = ['William Melody']
|
10
10
|
s.email = 'hi@williammelody.com'
|
11
11
|
s.date = '2020-03-18'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: RbST
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- William Melody
|
@@ -104,7 +104,7 @@ dependencies:
|
|
104
104
|
- - ">="
|
105
105
|
- !ruby/object:Gem::Version
|
106
106
|
version: 0.49.0
|
107
|
-
description: A
|
107
|
+
description: A Ruby gem for processing reStructuredText via Python's Docutils.
|
108
108
|
email: hi@williammelody.com
|
109
109
|
executables: []
|
110
110
|
extensions: []
|
@@ -151,5 +151,5 @@ requirements: []
|
|
151
151
|
rubygems_version: 3.1.2
|
152
152
|
signing_key:
|
153
153
|
specification_version: 4
|
154
|
-
summary: A
|
154
|
+
summary: A Ruby gem for processing reStructuredText via Python's Docutils.
|
155
155
|
test_files: []
|