html-pipeline-task_list 0.0.1 → 0.0.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/CONTRIBUTING.md +1 -1
- data/README.md +3 -3
- data/html-pipeline-task_list.gemspec +2 -2
- data/lib/html/pipeline/task_list/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9854c4452024d254e5ab45bca2abd20735a71b50e4f2f9bb8662b8719c6ec144
|
|
4
|
+
data.tar.gz: d9da57327bd882448faabd267f0ec8ef08d8e61703deaad39c81580501582d85
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44a2d14c88504f9ba955a0a67586fa74e7d970031296205e67d5ce7e031e72e6a9dde5b77fb8adcdd5f26411d4bb01dfe664c04851308a569c5bfade733d7dac
|
|
7
|
+
data.tar.gz: 3e0f4c16b175be9b659337f25d104622671edfb801e5d4ba4810fe420cb194d1470320e06b0c94a4a4a00364abf2e924f703b2229585395d66e72995fcbf49f0
|
data/CONTRIBUTING.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Contributions Welcome!
|
|
2
2
|
|
|
3
|
-
Hi there! We're thrilled that you'd like to contribute to this project. Before you do, would you mind reading [this license agreement](
|
|
3
|
+
Hi there! We're thrilled that you'd like to contribute to this project. Before you do, would you mind reading [this license agreement](LICENSE)? If you open a PR, we'll assume you agree to it. If you have any hesitation or disagreement, please do open a PR still, but note your concerns as well.
|
|
4
4
|
|
|
5
5
|
Once done, follow these steps:
|
|
6
6
|
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Task
|
|
1
|
+
# Task List
|
|
2
2
|
|
|
3
3
|
This Gem provides various components necessary for integrating
|
|
4
4
|
[Task Lists](https://github.com/blog/1375-task-lists-in-gfm-issues-pulls-comments)
|
|
@@ -82,7 +82,7 @@ For the backend Ruby components, add this line to your application's Gemfile:
|
|
|
82
82
|
And then execute `bundle install`
|
|
83
83
|
|
|
84
84
|
## Development
|
|
85
|
-
|
|
85
|
+
After checking out the repo, run `bundle install && npm install` to install dependencies.
|
|
86
86
|
|
|
87
87
|
To install this gem onto your local machine, run `bundle exec rake install`
|
|
88
88
|
|
|
@@ -91,7 +91,7 @@ To release a new version, update run `bundle exec rake release` to create a git
|
|
|
91
91
|
## Testing
|
|
92
92
|
before beginning testing, be sure to run `bundle install && npm install`
|
|
93
93
|
|
|
94
|
-
Ruby unit tests can be run with `rake test`.
|
|
94
|
+
Ruby unit tests can be run with `bundle exec rake test`.
|
|
95
95
|
Javascript unit tests can be run with `npm test`
|
|
96
96
|
|
|
97
97
|
Functional tests can be run manually in the browser. To do so:
|
|
@@ -19,12 +19,12 @@ Gem::Specification.new do |gem|
|
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
gem.require_paths = ['lib']
|
|
22
|
-
|
|
22
|
+
|
|
23
23
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
24
24
|
|
|
25
25
|
gem.add_dependency 'html-pipeline', '~> 2.12'
|
|
26
26
|
|
|
27
|
-
gem.add_development_dependency 'bundler', '~> 2.1', '>=2.1.4'
|
|
27
|
+
gem.add_development_dependency 'bundler', '~> 2.1', '>= 2.1.4'
|
|
28
28
|
gem.add_development_dependency 'commonmarker', '~> 0.21.0'
|
|
29
29
|
gem.add_development_dependency 'github-markdown', '~> 0.6.9'
|
|
30
30
|
gem.add_development_dependency 'guard', '~> 2.16'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: html-pipeline-task_list
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Codetree
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-04-
|
|
11
|
+
date: 2020-04-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: html-pipeline
|