rblineprof 0.3.4 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +13 -5
  2. data/ext/rblineprof.c +3 -2
  3. data/rblineprof.gemspec +1 -1
  4. metadata +7 -7
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: e2bb81f2a803b8a375c254cc50f1f99fc6543aec
4
- data.tar.gz: fd550bdb92020900a16ff8c9611f7656e90caaa9
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MjI1MzFiNmMxMDdhNGEwYmZkNjU4OWRkNTdhZjExM2I5OGM0NzI0OA==
5
+ data.tar.gz: !binary |-
6
+ NzAxMzljM2U4ODk4NzYwODY1NWVhMzIyNDlhYzliNDU4ODA0YWE1Yw==
5
7
  SHA512:
6
- metadata.gz: 73b93fc9929152ea4dcfaecd865acf6ceae35c27c62a9e5972169e87e6077cb1e19da90394f3bb714d1e05df6a2b57e7b6780c720ab02e0fa2dd197af779c7ba
7
- data.tar.gz: f681fc2605a0cb6a36e3bbf207212eff2f153420279b063617c9555bbe257213e429004b85cce4d0c95bb463b30f1a2b212b0e0a100a1245cc5c83f485a5ffd5
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 !defined(HAVE_RB_PROFILE_FRAMES)
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'rblineprof'
3
- s.version = '0.3.4'
3
+ s.version = '0.3.5'
4
4
  s.homepage = 'http://github.com/tmm1/rblineprof'
5
5
 
6
6
  s.authors = 'Aman Gupta'
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
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
- - ".gitignore"
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.2.0.rc.1
65
+ rubygems_version: 2.1.11
66
66
  signing_key:
67
67
  specification_version: 4
68
68
  summary: line-profiler for ruby