skizm 0.0.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.
- checksums.yaml +7 -0
- data/bin/skizm +27 -0
- metadata +45 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: b0dd1ed9f20b46daa02a0417b50400fa62527531
|
|
4
|
+
data.tar.gz: bbcf79af7492e66054d4c95b44d51eee5500be42
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 9ca48fdd0aa26211bbfc3e906508429342a26e56218c7f62ac78be285aa7a041ab7390dcdea088279d8baef23669e57cf297349df346fa08659cc8a63e851956
|
|
7
|
+
data.tar.gz: ca4faaf01f095edd0e6aa5d7980fe069816596995314fad26686dc13d136d4b0b5689f2a8232609b0e5e8f915c43e08413973b29befa0c4de0d5b8a8638e3c59
|
data/bin/skizm
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#!/usr/bin/ruby
|
|
2
|
+
begin
|
|
3
|
+
case ARGV.shift
|
|
4
|
+
when "init"
|
|
5
|
+
when "build"
|
|
6
|
+
when "vim-install"
|
|
7
|
+
when "vim-uninstall"
|
|
8
|
+
when "home?"
|
|
9
|
+
else
|
|
10
|
+
puts <<HELP
|
|
11
|
+
Usage: skizm MODE [OPTIONS]
|
|
12
|
+
`skizm init [OPTIONS]`
|
|
13
|
+
\tNew project in working directory.
|
|
14
|
+
`skizm build [OPTIONS]`
|
|
15
|
+
\tBuild project in working directory.
|
|
16
|
+
`skizm vim-install [OPTIONS]`
|
|
17
|
+
\tInstall Vim syntax files.
|
|
18
|
+
`skizm vim-uninstall [OPTIONS]`
|
|
19
|
+
\tUninstall Vim syntax files.
|
|
20
|
+
`skizm home?`
|
|
21
|
+
\tDisplay skizm's install directory.
|
|
22
|
+
HELP
|
|
23
|
+
end
|
|
24
|
+
rescue Exception => exception
|
|
25
|
+
puts exception
|
|
26
|
+
exit 1
|
|
27
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: skizm
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- M. Grady Saunders
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2018-02-19 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description:
|
|
14
|
+
email: mgradysaunders@gmail.com
|
|
15
|
+
executables:
|
|
16
|
+
- skizm
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- bin/skizm
|
|
21
|
+
homepage: https://github.com/mgradysaunders/skizm
|
|
22
|
+
licenses:
|
|
23
|
+
- BSD-2-Clause
|
|
24
|
+
metadata: {}
|
|
25
|
+
post_install_message:
|
|
26
|
+
rdoc_options: []
|
|
27
|
+
require_paths:
|
|
28
|
+
- lib
|
|
29
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0'
|
|
39
|
+
requirements: []
|
|
40
|
+
rubyforge_project:
|
|
41
|
+
rubygems_version: 2.5.2.1
|
|
42
|
+
signing_key:
|
|
43
|
+
specification_version: 4
|
|
44
|
+
summary: A literate programming tool for C/C++
|
|
45
|
+
test_files: []
|