snuffle 0.12.1 → 0.12.2
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/README.md +6 -5
- data/images/detail.png +0 -0
- data/images/overview.png +0 -0
- data/lib/snuffle/formatters/base.rb +1 -1
- data/lib/snuffle/version.rb +1 -1
- data/snuffle.gemspec +2 -2
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bfb944b3dbe7e7a75db303add144963dd330253c
|
4
|
+
data.tar.gz: a90c08c9f0fad68fd0163d94aa161d0533cdc45a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 466fdec3cb56f99598973f66c86b69bad2b0590feabff9522b461cbb8217c0576c99e6943e4bec5941be8df4307641c2708d7f6e94c4eea2db769c9473284d03
|
7
|
+
data.tar.gz: 18c3e37695dee843820a17cb7e41094f8a9361510ac4d11b224a041e35202c07529ca9c20460ffd958e13a105ab13df2fc3a902a112eeab4dd9f094c79d6564b
|
data/README.md
CHANGED
@@ -12,11 +12,6 @@ tell you that you might want to extract those methods to a latent Address class.
|
|
12
12
|
Please note that Snuffle is still pre-release and will not be ready for serious
|
13
13
|
use until it hits version 1.0.0.
|
14
14
|
|
15
|
-
## TODO
|
16
|
-
|
17
|
-
* Ignore data clumps called in "loose" class methods (e.g. attr_accessor)
|
18
|
-
* Output files in folder hierarchy that mirrors source files
|
19
|
-
|
20
15
|
## Installation
|
21
16
|
|
22
17
|
Add this line to your application's Gemfile:
|
@@ -38,6 +33,12 @@ Or install it yourself as:
|
|
38
33
|
Checking lib/example.rb...
|
39
34
|
Results written to doc/snuffle/index.htm
|
40
35
|
|
36
|
+
## Sample Output
|
37
|
+
|
38
|
+
[!Overview](images/overview.png)
|
39
|
+
|
40
|
+
[!Detail](images/detail.png)
|
41
|
+
|
41
42
|
## Contributing
|
42
43
|
|
43
44
|
Please note that this project is released with a [Contributor Code of Conduct](https://gitlab.com/coraline/snuffle/blob/master/CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.
|
data/images/detail.png
ADDED
Binary file
|
data/images/overview.png
ADDED
Binary file
|
data/lib/snuffle/version.rb
CHANGED
data/snuffle.gemspec
CHANGED
@@ -13,14 +13,14 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.homepage = "https://gitlab.com/coraline/snuffle/tree/master"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
|
-
spec.files = `git ls-files -z`.split("\x0")
|
16
|
+
spec.files = `git ls-files -z`.split("\x0") - %w(images)
|
17
17
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
21
|
spec.add_dependency "parser"
|
22
22
|
spec.add_dependency "thor"
|
23
|
-
spec.add_dependency "ephemeral", "~> 2.3.
|
23
|
+
spec.add_dependency "ephemeral", "~> 2.3.3"
|
24
24
|
spec.add_dependency "poro_plus"
|
25
25
|
spec.add_dependency "rouge"
|
26
26
|
spec.add_dependency "text-table"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: snuffle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.
|
4
|
+
version: 0.12.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Coraline Ada Ehmke
|
@@ -45,14 +45,14 @@ dependencies:
|
|
45
45
|
requirements:
|
46
46
|
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 2.3.
|
48
|
+
version: 2.3.3
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 2.3.
|
55
|
+
version: 2.3.3
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: poro_plus
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
@@ -196,6 +196,8 @@ files:
|
|
196
196
|
- README.md
|
197
197
|
- Rakefile
|
198
198
|
- bin/snuffle
|
199
|
+
- images/detail.png
|
200
|
+
- images/overview.png
|
199
201
|
- lib/snuffle.rb
|
200
202
|
- lib/snuffle/cli.rb
|
201
203
|
- lib/snuffle/cohort.rb
|