ruby-prof 0.7.2-x86-mswin32-60 → 0.7.3-x86-mswin32-60

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/CHANGES CHANGED
@@ -1,3 +1,8 @@
1
+ 0.7.3 (2008-12-09)
2
+ ========================
3
+ * Fixed compile error with new x86_64 code using GCC.
4
+
5
+
1
6
  0.7.2 (2008-12-08)
2
7
  ========================
3
8
  * Fixed major bug in printing child methods in graph reports.
@@ -33,6 +33,8 @@ static unsigned long long cpu_frequency;
33
33
 
34
34
  #if defined(__GNUC__)
35
35
 
36
+ #include <stdint.h>
37
+
36
38
  static prof_measure_t
37
39
  measure_cpu_time()
38
40
  {
Binary file
@@ -1,4 +1,4 @@
1
- #define RUBY_PROF_VERSION "0.7.2"
1
+ #define RUBY_PROF_VERSION "0.7.3"
2
2
  #define RUBY_PROF_VERSION_MAJ 0
3
3
  #define RUBY_PROF_VERSION_MIN 7
4
- #define RUBY_PROF_VERSION_MIC 2
4
+ #define RUBY_PROF_VERSION_MIC 3
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-prof
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  platform: x86-mswin32-60
6
6
  authors:
7
7
  - Shugo Maeda and Charlie Savage
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-12-08 00:00:00 -07:00
12
+ date: 2008-12-09 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -64,7 +64,6 @@ files:
64
64
  - rails/environment/profile.rb
65
65
  - rails/example
66
66
  - rails/example/example_test.rb
67
- - rails/example/example_test.rb.html
68
67
  - rails/profile_test_helper.rb
69
68
  - test/aggregate_test.rb
70
69
  - test/basic_test.rb
@@ -1,14 +0,0 @@
1
- <!-- Generator: GNU source-highlight 2.9
2
- by Lorenzo Bettini
3
- http://www.lorenzobettini.it
4
- http://www.gnu.org/software/src-highlite -->
5
- <pre><tt><span style="font-weight: bold"><span style="color: #000080">require</span></span> File<span style="color: #990000">.</span>dirname<span style="color: #990000">(</span><span style="font-weight: bold"><span style="color: #0000FF">__FILE__</span></span><span style="color: #990000">)</span> <span style="color: #990000">+</span> <span style="color: #FF0000">'../profile_test_helper'</span>
6
-
7
- <span style="font-weight: bold"><span style="color: #0000FF">class</span></span> ExampleTest <span style="color: #990000">&lt;</span> Test<span style="color: #990000">::</span>Unit<span style="color: #990000">::</span>TestCase
8
- <span style="font-weight: bold"><span style="color: #0000FF">include</span></span> RubyProf<span style="color: #990000">::</span>Test
9
-
10
- <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_stuff
11
- puts <span style="color: #FF0000">"Test method"</span>
12
- <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>
13
- <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>
14
- </tt></pre>