hitimes 1.1.0-x86-mingw32 → 1.1.1-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY +4 -0
- data/README +2 -1
- data/gemspec.rb +2 -3
- data/lib/hitimes/1.8/hitimes_ext.so +0 -0
- data/lib/hitimes/1.9/hitimes_ext.so +0 -0
- data/lib/hitimes/version.rb +1 -1
- data/tasks/distribution.rake +2 -1
- metadata +8 -7
data/HISTORY
CHANGED
data/README
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
== DESCRIPTION
|
13
13
|
|
14
14
|
Hitimes is a fast, high resolution timer library for recording
|
15
|
-
performance metrics. It uses the appropriate
|
15
|
+
performance metrics. It uses the appropriate low method calls for each
|
16
16
|
system to get the highest granularity time increments possible.
|
17
17
|
|
18
18
|
It currently supports any of the following systems:
|
@@ -20,6 +20,7 @@ It currently supports any of the following systems:
|
|
20
20
|
* any system with the POSIX call <tt>clock_gettime()</tt>,
|
21
21
|
* Mac OS X
|
22
22
|
* Windows
|
23
|
+
* JRuby
|
23
24
|
|
24
25
|
Using Hitimes can be faster than using a series of +Time.new+ calls, and
|
25
26
|
it will have a much higher granularity. It is definitely faster than
|
data/gemspec.rb
CHANGED
@@ -20,9 +20,8 @@ Hitimes::GEM_SPEC = Gem::Specification.new do |spec|
|
|
20
20
|
spec.executables = pkg.files.bin.collect { |b| File.basename(b) }
|
21
21
|
|
22
22
|
# add dependencies here
|
23
|
-
spec.
|
24
|
-
spec.
|
25
|
-
|
23
|
+
spec.add_development_dependency("rake", "~> 0.8.1")
|
24
|
+
spec.add_development_dependency("configuration", " ~> 0.0.5")
|
26
25
|
spec.add_development_dependency( "json", "~> 1.1.3")
|
27
26
|
spec.add_development_dependency( "rake-compiler", "~> 0.5.0")
|
28
27
|
|
Binary file
|
Binary file
|
data/lib/hitimes/version.rb
CHANGED
data/tasks/distribution.rake
CHANGED
@@ -66,7 +66,8 @@ if pkg_config = Configuration.for_if_exist?("packaging") then
|
|
66
66
|
if RUBY_PLATFORM == "java" then
|
67
67
|
desc "package up a jruby gem"
|
68
68
|
task :package_java => "ext:build_java" do
|
69
|
-
Hitimes::GEM_SPEC_JAVA.files += FileList["lib/hitimes
|
69
|
+
Hitimes::GEM_SPEC_JAVA.files += FileList["lib/hitimes/*.jar"]
|
70
|
+
Hitimes::GEM_SPEC_JAVA.files += FileList["ext/java/src/hitimes/*.java"]
|
70
71
|
Gem::Builder.new( Hitimes::GEM_SPEC_JAVA ).build
|
71
72
|
mv Dir["*.gem"].first, "pkg"
|
72
73
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hitimes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
9
|
+
- 1
|
10
|
+
version: 1.1.1
|
11
11
|
platform: x86-mingw32
|
12
12
|
authors:
|
13
13
|
- Jeremy Hinegardner
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-09-06 00:00:00 -06:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
- 8
|
33
33
|
- 1
|
34
34
|
version: 0.8.1
|
35
|
-
type: :
|
35
|
+
type: :development
|
36
36
|
version_requirements: *id001
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: configuration
|
@@ -48,7 +48,7 @@ dependencies:
|
|
48
48
|
- 0
|
49
49
|
- 5
|
50
50
|
version: 0.0.5
|
51
|
-
type: :
|
51
|
+
type: :development
|
52
52
|
version_requirements: *id002
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: json
|
@@ -84,7 +84,7 @@ dependencies:
|
|
84
84
|
version_requirements: *id004
|
85
85
|
description: |-
|
86
86
|
Hitimes is a fast, high resolution timer library for recording
|
87
|
-
performance metrics. It uses the appropriate
|
87
|
+
performance metrics. It uses the appropriate low method calls for each
|
88
88
|
system to get the highest granularity time increments possible.
|
89
89
|
|
90
90
|
It currently supports any of the following systems:
|
@@ -92,6 +92,7 @@ description: |-
|
|
92
92
|
* any system with the POSIX call <tt>clock_gettime()</tt>,
|
93
93
|
* Mac OS X
|
94
94
|
* Windows
|
95
|
+
* JRuby
|
95
96
|
|
96
97
|
Using Hitimes can be faster than using a series of +Time.new+ calls, and
|
97
98
|
it will have a much higher granularity. It is definitely faster than
|