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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59fb650ce7dfbe85ab7d1c06f48632a84651c62875c83c8961cd6e69c7600349
4
- data.tar.gz: 342abd9361c4f09071068bbdcb4e9a6b027ecb68626f24c01119ecfc66cb6c41
3
+ metadata.gz: 3206f99b9209678caa5bf7ca877f49d6bc80ede49110aa324a85bcdd7e0f2750
4
+ data.tar.gz: d774593883e7cb63e5bd0b5d098a5c500a29d9f3991bc4599b833a04e19f2bba
5
5
  SHA512:
6
- metadata.gz: 99706d6e9c61ebcb852bc3624d56f2fdae1aa0ff35b9b373d99dc5622d269480305e9806f94510dd91ab688e8b5f3374182458eb5b50dca2bd5d971b2686f339
7
- data.tar.gz: e73800abf36e8a80dc841a7ccd2a04350fafc1954972deedee82769e020d28b8828d9d89fe169e9efc92bdf0aa63d18f22ceb4964837dec58d9da4fb03f25f41
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
@@ -1,2 +1,5 @@
1
- github: RevelMind
2
- tidelift: npm/@matrixoc/snippet
1
+ community_bridge: snippetjs
2
+ github: ["RevelMind"]
3
+
4
+
5
+ tidelift: npm/@matrixoc%2Fsnippet/
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 install @matrixoc/snippet
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)