hitimes 1.1.0-java → 1.1.1-java
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/version.rb +1 -1
- metadata +7 -6
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
|
|
data/lib/hitimes/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 1.1.
|
8
|
+
- 1
|
9
|
+
version: 1.1.1
|
10
10
|
platform: java
|
11
11
|
authors:
|
12
12
|
- Jeremy Hinegardner
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-09-06 00:00:00 -06:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
- 8
|
30
30
|
- 1
|
31
31
|
version: 0.8.1
|
32
|
-
type: :
|
32
|
+
type: :development
|
33
33
|
version_requirements: *id001
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: configuration
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
- 0
|
44
44
|
- 5
|
45
45
|
version: 0.0.5
|
46
|
-
type: :
|
46
|
+
type: :development
|
47
47
|
version_requirements: *id002
|
48
48
|
- !ruby/object:Gem::Dependency
|
49
49
|
name: json
|
@@ -75,7 +75,7 @@ dependencies:
|
|
75
75
|
version_requirements: *id004
|
76
76
|
description: |-
|
77
77
|
Hitimes is a fast, high resolution timer library for recording
|
78
|
-
performance metrics. It uses the appropriate
|
78
|
+
performance metrics. It uses the appropriate low method calls for each
|
79
79
|
system to get the highest granularity time increments possible.
|
80
80
|
|
81
81
|
It currently supports any of the following systems:
|
@@ -83,6 +83,7 @@ description: |-
|
|
83
83
|
* any system with the POSIX call <tt>clock_gettime()</tt>,
|
84
84
|
* Mac OS X
|
85
85
|
* Windows
|
86
|
+
* JRuby
|
86
87
|
|
87
88
|
Using Hitimes can be faster than using a series of +Time.new+ calls, and
|
88
89
|
it will have a much higher granularity. It is definitely faster than
|