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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 247a7c56eb718a7a9b4e5b8a4a2d22ba5a0bdf66
4
- data.tar.gz: 169c0a12c52adabb7b5cc16967e987db1f19bb16
3
+ metadata.gz: bfb944b3dbe7e7a75db303add144963dd330253c
4
+ data.tar.gz: a90c08c9f0fad68fd0163d94aa161d0533cdc45a
5
5
  SHA512:
6
- metadata.gz: dcabd09d081af6ef0d3f14c4552979092d55e726d93607b7005a9567d342d45f8dc93fef664817de7876720f65636e39deb5dc7a3bd9f49b2efaced8d3367096
7
- data.tar.gz: e3ea47fb0e09a2509e4289e2bfd93389ae77a9124b97551851760692278c100df885004c3285115f112abc614c1e8af23e785916d03e8f2352bd52d1deeecdb1
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
Binary file
@@ -31,7 +31,7 @@ module Snuffle
31
31
  path = root_path
32
32
  path << "/" + summary.path_to_results if summary
33
33
  FileUtils.mkpath(path)
34
- @output_path = root_path
34
+ @output_path = path
35
35
  end
36
36
 
37
37
  def path_to_results
@@ -1,3 +1,3 @@
1
1
  module Snuffle
2
- VERSION = "0.12.1"
2
+ VERSION = "0.12.2"
3
3
  end
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.2"
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.1
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.2
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.2
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