snippetpkg 1.1.29 → 1.1.63
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/1up.js +6 -1
- data/FUNDING.yml +5 -2
- data/README.md +2 -1
- data/package-lock.json +3450 -24
- data/package.json +9 -3
- data/publish.bat +1 -0
- data/snippet.gemspec +2 -2
- metadata +5 -6
- data/snippet-1.1.29.gem +0 -0
- data/snippets-1.1.29.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3206f99b9209678caa5bf7ca877f49d6bc80ede49110aa324a85bcdd7e0f2750
|
4
|
+
data.tar.gz: d774593883e7cb63e5bd0b5d098a5c500a29d9f3991bc4599b833a04e19f2bba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0623f5bfeadf4f998881f745ae513ed27d6628fe9299c97a51af7253b0a31cadcd4ff6a4f89c156cb05e9573b54a536a26339ad82c4014c3a1f8a082c8748ed
|
7
|
+
data.tar.gz: ba15425cbec0fce3e7d144ef44b08c6a2b547d518f794891b7022e47008276bf653f2a0d8de26033f7ec229b6eaed84636439fb576fa52465dfc39265b7a4211
|
data/1up.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
var fs = require('fs')
|
1
|
+
var fs = require('fs'),
|
2
|
+
cP = require('child_process');
|
2
3
|
|
3
4
|
var jsonObj = fs.readFileSync('./package.json').toString();
|
4
5
|
jsonObj = JSON.parse(jsonObj);
|
@@ -19,3 +20,7 @@ var finVer = [
|
|
19
20
|
jsonObj.version = finVer;
|
20
21
|
|
21
22
|
fs.writeFileSync('./package.json', JSON.stringify(jsonObj, null, 2));
|
23
|
+
|
24
|
+
cP.exec('gem build snippet.gemspec');
|
25
|
+
cP.exec('gem push snippet-' + jsonObj.version + '.gem');
|
26
|
+
process.exit(0);
|
data/FUNDING.yml
CHANGED
data/README.md
CHANGED
@@ -6,7 +6,7 @@ Snippet is a library of code snippets/examples. It's made to show people exampl
|
|
6
6
|
## Installation
|
7
7
|
Install `Snippet` with `Yarn` or `NPM`:
|
8
8
|
```
|
9
|
-
yarn
|
9
|
+
yarn add @matrixoc/snippet
|
10
10
|
npm install @matrixoc/snippet
|
11
11
|
```
|
12
12
|
|
@@ -52,4 +52,5 @@ You may add a Snippet and it will be reviewed within the next 48 hours.
|
|
52
52
|
## Contributors
|
53
53
|
The following is a list of all contributors(a-z);
|
54
54
|
- [astronomize](https://github.com/astronomizedev)
|
55
|
+
- [krthr](https://github.com/krthr)
|
55
56
|
- [revelmind](https://github.com/revelmind)
|