whence 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e0e0ad90843f9331e722340fed778e068f9aa007a3a51055f225ce2ac45414c6
4
+ data.tar.gz: f698de1b78899b9c300ec7e0c910750e988250badd34cd1d53dec1dcd18a6124
5
+ SHA512:
6
+ metadata.gz: cdb21ceed9cb5e23931cb7e9aa689bcc9a9b5f6eb64649961154a2f5a2f7b595c558d8ce613684db6fe11ef6cac71db0e6c14970536998cc2d222497fa99a808
7
+ data.tar.gz: 1fd1995391ad349131cf8e4a42380e3c3cb8e3997680cf31b59ac1f20848a58aebe03857035e36649cf2e79cde195ca1ae8a0b3d47d718b73050042b2524e5bf
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.5.3
5
+ before_install: gem install bundler -v 1.15.2
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in whence.gemspec
6
+ gemspec
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # Whence
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/whence`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'whence'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install whence
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/calebthompson/whence.
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "whence"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/lib/whence.rb ADDED
@@ -0,0 +1,86 @@
1
+ require "whence/version"
2
+ require "set"
3
+
4
+ module Whence
5
+ def self.whence
6
+ if $callers == nil
7
+ $callers = []
8
+ end
9
+ $callers << caller
10
+ end
11
+
12
+ def self.tree
13
+ g = Graph.new($callers.length)
14
+ $callers.each do |trace|
15
+ trace.each.inject(g) do |memo, location|
16
+ Vertex.new(location).tap do |child|
17
+ memo << child
18
+ end
19
+ end
20
+ end
21
+ puts g
22
+ end
23
+
24
+ class Edges < SimpleDelegator
25
+ def initialize
26
+ super(Hash.new)
27
+ end
28
+
29
+ def <<(element)
30
+ self[element] ||= 0
31
+ self[element] += 1
32
+ end
33
+ end
34
+
35
+ class Vertex
36
+ attr_reader :location, :name
37
+
38
+ def initialize(location)
39
+ @location = location
40
+ @edges = Edges.new
41
+ end
42
+
43
+ def <<(vertex)
44
+ @edges << vertex
45
+ end
46
+
47
+ def to_s(weight, last = true, indent = [])
48
+ my_indent = indent.dup
49
+ child_indent = indent.dup
50
+ if last
51
+ my_indent.append("└")
52
+ child_indent.append(" ")
53
+ else
54
+ my_indent.append("├")
55
+ child_indent.append("│ ")
56
+ end
57
+
58
+ my_indent.join + " #{location} #{weight}\n" +
59
+ @edges.each_with_index.map do |vertex_and_weight, i|
60
+ vertex, weight = *vertex_and_weight
61
+ vertex.to_s(weight, i == @edges.count - 1, child_indent)
62
+ end.join
63
+ end
64
+ end
65
+
66
+ class WeightedDirectedAcyclicGraph < SimpleDelegator
67
+ def initialize(weight)
68
+ __setobj__ nil
69
+ @weight = weight
70
+ end
71
+
72
+ def <<(vertex)
73
+ if __getobj__
74
+ super
75
+ else
76
+ __setobj__(vertex)
77
+ end
78
+ end
79
+
80
+ def to_s
81
+ __getobj__.to_s(@weight)
82
+ end
83
+ end
84
+
85
+ Graph = WeightedDirectedAcyclicGraph
86
+ end
@@ -0,0 +1,3 @@
1
+ module Whence
2
+ VERSION = "0.1.0"
3
+ end
data/whence.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "whence/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "whence"
8
+ spec.version = Whence::VERSION
9
+ spec.authors = ["Caleb Thompson"]
10
+ spec.email = ["caleb@calebthompson.io"]
11
+
12
+ spec.summary = "Track down object allocations"
13
+ spec.description = "Ask each allocation, does this spark joy? If not, thank it and throw it away."
14
+ spec.homepage = "https://www.calebthompson.io"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
+ f.match(%r{^(test|spec|features)/})
18
+ end
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.15"
24
+ spec.add_development_dependency "rake"
25
+ spec.add_development_dependency "minitest"
26
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: whence
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Caleb Thompson
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-04-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.15'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.15'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Ask each allocation, does this spark joy? If not, thank it and throw
56
+ it away.
57
+ email:
58
+ - caleb@calebthompson.io
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - ".travis.yml"
65
+ - Gemfile
66
+ - README.md
67
+ - Rakefile
68
+ - bin/console
69
+ - bin/setup
70
+ - lib/whence.rb
71
+ - lib/whence/version.rb
72
+ - whence.gemspec
73
+ homepage: https://www.calebthompson.io
74
+ licenses: []
75
+ metadata: {}
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubyforge_project:
92
+ rubygems_version: 2.7.6
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: Track down object allocations
96
+ test_files: []