stack_tracy 0.1.0 → 0.1.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.
data/CHANGELOG.rdoc CHANGED
@@ -1,5 +1,9 @@
1
1
  = StackTracy CHANGELOG
2
2
 
3
+ == Version 0.1.1 (August 16, 2012)
4
+
5
+ * Not excluding the last two stack trace events anymore
6
+
3
7
  == Version 0.1.0 (August 16, 2012)
4
8
 
5
9
  * Initial release
data/README.md CHANGED
@@ -1,5 +1,3 @@
1
- **Note: This gem is not available on [http://rubygems.org](http://rubygems.org) yet**
2
-
3
1
  # StackTracy
4
2
 
5
3
  Investigate and detect slow methods within the stack trace of your Ruby (optionally Sinatra) application
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -188,7 +188,7 @@ VALUE stack_tracy_stop(VALUE self) {
188
188
 
189
189
  events = rb_ary_new();
190
190
 
191
- for (i = 0; i < stack_size - 2; i++) {
191
+ for (i = 0; i < stack_size; i++) {
192
192
  method = rb_id2name((ID) stack[i].method);
193
193
  if (method != NULL) {
194
194
  event = rb_funcall(cEventInfo, rb_intern("new"), 0);
@@ -1,7 +1,7 @@
1
1
  module StackTracy #:nodoc:
2
2
  MAJOR = 0
3
3
  MINOR = 1
4
- TINY = 0
4
+ TINY = 1
5
5
 
6
6
  VERSION = [MAJOR, MINOR, TINY].join(".")
7
7
  end
data/stack_tracy.gemspec CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
13
13
  gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
14
14
  gem.name = "stack_tracy"
15
15
  gem.require_paths = ["lib"]
16
- gem.version = "0.1.0"
16
+ gem.version = "0.1.1"
17
17
 
18
18
  gem.add_dependency "rich_support", "~> 0.1.2"
19
19
  gem.add_dependency "launchy", "2.1.0"
@@ -16,7 +16,7 @@ StackTracy = (function() {
16
16
  });
17
17
 
18
18
  return {
19
- version: "0.1.0",
19
+ version: "0.1.1",
20
20
  sort: function(column) {
21
21
  sortation[column] = sortation[column] == "asc" ? "desc" : "asc";
22
22
  $("#cumulatives>.body>div").tsort("span:eq(" + column + ")[abbr]", {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stack_tracy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: