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
data/package.json
CHANGED
@@ -1,11 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "@matrixoc/snippet",
|
3
3
|
"description": "A library of code snippets.",
|
4
|
-
"version": "1.1.
|
4
|
+
"version": "1.1.63",
|
5
5
|
"main": "./package/package.js",
|
6
6
|
"devDependencies": {
|
7
7
|
"colors": "^1.3.3",
|
8
|
-
"glob": "^7.1.4"
|
8
|
+
"glob": "^7.1.4",
|
9
|
+
"ws": ">=3.3.1",
|
10
|
+
"braces": ">=2.3.1",
|
11
|
+
"marked": ">=0.6.1"
|
9
12
|
},
|
10
13
|
"repository": {
|
11
14
|
"type": "git",
|
@@ -16,7 +19,7 @@
|
|
16
19
|
"email": "uiysgamer@gmail.com"
|
17
20
|
},
|
18
21
|
"scripts": {
|
19
|
-
"test": "node ./test/test.js"
|
22
|
+
"test": "node ./test/test.js & ruby ./test/test_ruby.rb"
|
20
23
|
},
|
21
24
|
"keywords": [
|
22
25
|
"snippet",
|
@@ -49,5 +52,8 @@
|
|
49
52
|
],
|
50
53
|
"bin": {
|
51
54
|
"create_language": "./addLanguage.js"
|
55
|
+
},
|
56
|
+
"dependencies": {
|
57
|
+
"docsify-cli": "^4.3.0"
|
52
58
|
}
|
53
59
|
}
|
data/publish.bat
CHANGED
data/snippet.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.name = 'snippetpkg'
|
9
9
|
s.version = version
|
10
10
|
s.licenses = ['MIT']
|
11
|
-
s.summary = "
|
12
|
-
s.description = "
|
11
|
+
s.summary = "A library of code snippets."
|
12
|
+
s.description = "A library of code snippets to make life easier when you are looking for how to do something."
|
13
13
|
s.authors = ["Matrix"]
|
14
14
|
s.email = 'uiysgamer@gmail.com'
|
15
15
|
s.files = Dir.glob("./**")
|
metadata
CHANGED
@@ -1,16 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: snippetpkg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.63
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matrix
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-08-
|
11
|
+
date: 2019-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: A library of code snippets to make life easier when you are looking for
|
14
|
+
how to do something.
|
14
15
|
email: uiysgamer@gmail.com
|
15
16
|
executables: []
|
16
17
|
extensions: []
|
@@ -25,10 +26,8 @@ files:
|
|
25
26
|
- "./package-lock.json"
|
26
27
|
- "./package.json"
|
27
28
|
- "./publish.bat"
|
28
|
-
- "./snippet-1.1.29.gem"
|
29
29
|
- "./snippet.gemspec"
|
30
30
|
- "./snippet_log.js"
|
31
|
-
- "./snippets-1.1.29.gem"
|
32
31
|
homepage: https://github.com/opensource-matrix/snippet
|
33
32
|
licenses:
|
34
33
|
- MIT
|
@@ -53,5 +52,5 @@ rubyforge_project:
|
|
53
52
|
rubygems_version: 2.7.6.2
|
54
53
|
signing_key:
|
55
54
|
specification_version: 4
|
56
|
-
summary:
|
55
|
+
summary: A library of code snippets.
|
57
56
|
test_files: []
|
data/snippet-1.1.29.gem
DELETED
Binary file
|
data/snippets-1.1.29.gem
DELETED
Binary file
|