shiba 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/CODE_OF_CONDUCT.md +3 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +24 -0
- data/README.md +53 -0
- data/Rakefile +2 -0
- data/TODO +12 -0
- data/bin/analyze +116 -0
- data/bin/check +0 -0
- data/bin/console +14 -0
- data/bin/explain +105 -0
- data/bin/fingerprint +10 -0
- data/bin/inspect +0 -0
- data/bin/parse +0 -0
- data/bin/redmine/sample_redmine.rb +165 -0
- data/bin/release +6 -0
- data/bin/setup +8 -0
- data/bin/shiba +40 -0
- data/bin/watch.rb +19 -0
- data/cmd/builds/fingerprint.darwin-amd64 +0 -0
- data/cmd/builds/fingerprint.linux-amd64 +0 -0
- data/cmd/check.go +138 -0
- data/cmd/fingerprint.go +28 -0
- data/cmd/inspect.go +92 -0
- data/cmd/parse.go +79 -0
- data/lib/shiba.rb +21 -0
- data/lib/shiba/analyzer.rb +100 -0
- data/lib/shiba/configure.rb +31 -0
- data/lib/shiba/explain.rb +234 -0
- data/lib/shiba/index.rb +159 -0
- data/lib/shiba/output.rb +67 -0
- data/lib/shiba/output/tags.yaml +44 -0
- data/lib/shiba/query.rb +34 -0
- data/lib/shiba/query_watcher.rb +79 -0
- data/lib/shiba/railtie.rb +20 -0
- data/lib/shiba/version.rb +3 -0
- data/shiba.gemspec +38 -0
- data/web/bootstrap.min.css +7 -0
- data/web/dist/bundle.js +167 -0
- data/web/main.css +18 -0
- data/web/main.js +5 -0
- data/web/package-lock.json +4100 -0
- data/web/package.json +19 -0
- data/web/results.html.erb +199 -0
- data/web/vue.js +11055 -0
- data/web/webpack.config.js +14 -0
- metadata +121 -0
metadata
ADDED
@@ -0,0 +1,121 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: shiba
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ben Osheroff
|
8
|
+
- Eric Chapweske
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2019-02-05 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '2.0'
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '2.0'
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: rake
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '10.0'
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '10.0'
|
42
|
+
description: ''
|
43
|
+
email:
|
44
|
+
- ben@gimbo.net
|
45
|
+
- ben.osheroff@gmail.com
|
46
|
+
executables:
|
47
|
+
- shiba
|
48
|
+
extensions: []
|
49
|
+
extra_rdoc_files: []
|
50
|
+
files:
|
51
|
+
- ".gitignore"
|
52
|
+
- CODE_OF_CONDUCT.md
|
53
|
+
- Gemfile
|
54
|
+
- Gemfile.lock
|
55
|
+
- README.md
|
56
|
+
- Rakefile
|
57
|
+
- TODO
|
58
|
+
- bin/analyze
|
59
|
+
- bin/check
|
60
|
+
- bin/console
|
61
|
+
- bin/explain
|
62
|
+
- bin/fingerprint
|
63
|
+
- bin/inspect
|
64
|
+
- bin/parse
|
65
|
+
- bin/redmine/sample_redmine.rb
|
66
|
+
- bin/release
|
67
|
+
- bin/setup
|
68
|
+
- bin/shiba
|
69
|
+
- bin/watch.rb
|
70
|
+
- cmd/builds/fingerprint.darwin-amd64
|
71
|
+
- cmd/builds/fingerprint.linux-amd64
|
72
|
+
- cmd/check.go
|
73
|
+
- cmd/fingerprint.go
|
74
|
+
- cmd/inspect.go
|
75
|
+
- cmd/parse.go
|
76
|
+
- lib/shiba.rb
|
77
|
+
- lib/shiba/analyzer.rb
|
78
|
+
- lib/shiba/configure.rb
|
79
|
+
- lib/shiba/explain.rb
|
80
|
+
- lib/shiba/index.rb
|
81
|
+
- lib/shiba/output.rb
|
82
|
+
- lib/shiba/output/tags.yaml
|
83
|
+
- lib/shiba/query.rb
|
84
|
+
- lib/shiba/query_watcher.rb
|
85
|
+
- lib/shiba/railtie.rb
|
86
|
+
- lib/shiba/version.rb
|
87
|
+
- shiba.gemspec
|
88
|
+
- web/bootstrap.min.css
|
89
|
+
- web/dist/bundle.js
|
90
|
+
- web/main.css
|
91
|
+
- web/main.js
|
92
|
+
- web/package-lock.json
|
93
|
+
- web/package.json
|
94
|
+
- web/results.html.erb
|
95
|
+
- web/vue.js
|
96
|
+
- web/webpack.config.js
|
97
|
+
homepage: https://github.com/burrito-brothers/shiba
|
98
|
+
licenses: []
|
99
|
+
metadata:
|
100
|
+
homepage_uri: https://github.com/burrito-brothers/shiba
|
101
|
+
post_install_message:
|
102
|
+
rdoc_options: []
|
103
|
+
require_paths:
|
104
|
+
- lib
|
105
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
|
+
requirements:
|
112
|
+
- - ">="
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: '0'
|
115
|
+
requirements: []
|
116
|
+
rubyforge_project:
|
117
|
+
rubygems_version: 2.5.1
|
118
|
+
signing_key:
|
119
|
+
specification_version: 4
|
120
|
+
summary: A gem that attempts to find bad queries before you shoot self in foot
|
121
|
+
test_files: []
|