rblineprof 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/ext/rblineprof.c +3 -2
- data/rblineprof.gemspec +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
MjI1MzFiNmMxMDdhNGEwYmZkNjU4OWRkNTdhZjExM2I5OGM0NzI0OA==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
NzAxMzljM2U4ODk4NzYwODY1NWVhMzIyNDlhYzliNDU4ODA0YWE1Yw==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
MjliYTMzYWQ5YTRkMjIwMTBhZGFiMjQxMTZiOGI0ZWYwOGIzMzA5ZDViNGM2
|
10
|
+
ZTllOTQ3MzZjZmJhYjllYWM1ZGM5ZjdjOWViZmQ0YTIxODViMmUxOTUxNzkw
|
11
|
+
NjcxMjc3ZmEyNDcwNTM0NTkyNGI5MmFiZmFkZTJiMTNiNjg3OGI=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NDA1ZGU2ZWVjMTMwNDM3NWU2NDJjZWUwYjhiMjJiZGQ5ZDcwNzM4MjVlMmY3
|
14
|
+
YTRlMGI2ODllZjgyNGVlYjNhYzcwNTRmY2YzNGNkN2Q2M2VlMGFhODA2YzU5
|
15
|
+
MmQ2MDY3MTBjNzI3MzIxNmM3NDZiYzZkNzgwYThlY2Q0MWY5MTM=
|
data/ext/rblineprof.c
CHANGED
@@ -6,10 +6,11 @@
|
|
6
6
|
|
7
7
|
#if defined(RUBY_VM)
|
8
8
|
#include <ruby/re.h>
|
9
|
-
#include <ruby/debug.h>
|
10
9
|
#include <ruby/intern.h>
|
11
10
|
|
12
|
-
#if
|
11
|
+
#if defined(HAVE_RB_PROFILE_FRAMES)
|
12
|
+
#include <ruby/debug.h>
|
13
|
+
#else
|
13
14
|
#include <vm_core.h>
|
14
15
|
#include <iseq.h>
|
15
16
|
|
data/rblineprof.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rblineprof
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aman Gupta
|
@@ -14,14 +14,14 @@ dependencies:
|
|
14
14
|
name: debugger-ruby_core_source
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.3'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.3'
|
27
27
|
description: rblineprof shows you lines of code that are slow.
|
@@ -31,7 +31,7 @@ extensions:
|
|
31
31
|
- ext/extconf.rb
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
|
-
-
|
34
|
+
- .gitignore
|
35
35
|
- Gemfile
|
36
36
|
- Gemfile.lock
|
37
37
|
- README.md
|
@@ -52,17 +52,17 @@ require_paths:
|
|
52
52
|
- lib
|
53
53
|
required_ruby_version: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
|
-
- -
|
55
|
+
- - ! '>='
|
56
56
|
- !ruby/object:Gem::Version
|
57
57
|
version: '0'
|
58
58
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
|
-
- -
|
60
|
+
- - ! '>='
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: '0'
|
63
63
|
requirements: []
|
64
64
|
rubyforge_project:
|
65
|
-
rubygems_version: 2.
|
65
|
+
rubygems_version: 2.1.11
|
66
66
|
signing_key:
|
67
67
|
specification_version: 4
|
68
68
|
summary: line-profiler for ruby
|