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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -2
  3. data/RbST.gemspec +3 -3
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb040f492fea5af5b1c799491eba7dc9d443c84bdcb1442021e2f6269b6e2975
4
- data.tar.gz: e763016d684b56fb669531eeff5f8c9c283011832f5eb75efd7ccf042577be59
3
+ metadata.gz: e851228f1e733703a72a0c659aa29ab8b60c63c2caccc7531765449971605059
4
+ data.tar.gz: 37e82848f39b21339f6267b340fcb3254eab9681bb3feb5d80394b3dda74578a
5
5
  SHA512:
6
- metadata.gz: 6a85b3598d54dc0ba2fd9d7bcb1a2e9e242a3829c84e7482cd8496f710faf72701aeaed737b638525a9514b021588ba687764ddf99022c867b4f85ab55d01c16
7
- data.tar.gz: 1a045128fb2c883db9df03df7ac5397544831c8529bf40cc040f417973ab6ff16d454604930ee06b2d1f32e59f83e1ce11fab8baeed03d94134911694833c7ed
6
+ metadata.gz: efcb21f7a0b03df9a3265d65ecf20f7072023dbaf4b33d45c785f8007652a37eb787cdfe81cded1e1a898bb965a59f2d379e46f68fa649235933c66efe3c17e9
7
+ data.tar.gz: 878470406a01a566247507ff887ebc35613344ab846a58a6caf04af207a7a64c1ef1155aefc4777a800a287e1ebb7cce897b6ad3dfc204de473be909b5fefdba
data/README.md CHANGED
@@ -1,17 +1,27 @@
1
1
  # RbST
2
2
 
3
- A simple Ruby wrapper for processing reStructuredText via Python's Docutils.
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.org](http://gemcutter.org/gems/RbST).
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
@@ -2,10 +2,10 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'RbST'
5
- s.version = '0.6.0'
5
+ s.version = '0.6.1'
6
6
  s.licenses = ['MIT']
7
- s.summary = "A simple Ruby wrapper for processing reStructuredText via Python's Docutils"
8
- s.description = "A simple Ruby wrapper for processing reStructuredText via Python's Docutils"
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.0
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 simple Ruby wrapper for processing reStructuredText via Python's Docutils
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 simple Ruby wrapper for processing reStructuredText via Python's Docutils
154
+ summary: A Ruby gem for processing reStructuredText via Python's Docutils.
155
155
  test_files: []