weakling 0.0.5.pre2-java → 0.0.5.pre3-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/ext/RefqueueService.class +0 -0
- data/ext/org/jruby/ext/RefQueueLibrary$1.class +0 -0
- data/ext/org/jruby/ext/RefQueueLibrary$2.class +0 -0
- data/ext/org/jruby/ext/RefQueueLibrary$RefQueue.class +0 -0
- data/ext/org/jruby/ext/RefQueueLibrary$RubyWeakReference.class +0 -0
- data/ext/org/jruby/ext/RefQueueLibrary$WeakRef.class +0 -0
- data/ext/org/jruby/ext/RefQueueLibrary.class +0 -0
- data/lib/refqueue.jar +0 -0
- data/weakling.gemspec +1 -1
- metadata +9 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5c035401449cb30c14486c8e721fcfba95d687d8ff580f96caf52f0a32a58e9
|
4
|
+
data.tar.gz: bef68695fab647da861b4b0444e484c09d6cd7b30a7f8d4cd1783de4ec2047df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4913a685612cecdcea7adb1705f34ba6ada7d320db58a655be2f2d9f61c844f8f8b294dc00dd974967f11f03686a312185f8fcfb36434dfbf5f5b22536413656
|
7
|
+
data.tar.gz: 129af1005d41a4063d9a4a25327a2c61c210e0e13a8f3b3df32ab3a394dca810c665c7cf4665c799edfc2fb29a347f70f20c4d4b5840488c6fbd1acff7dc2b27
|
data/Rakefile
CHANGED
@@ -11,7 +11,7 @@ end
|
|
11
11
|
desc "Compile the extension"
|
12
12
|
task :compile => "pkg/classes" do |t|
|
13
13
|
ant.javac :srcdir => "ext", :destdir => t.prerequisites.first,
|
14
|
-
:source => "
|
14
|
+
:source => "7", :target => "7", :debug => true,
|
15
15
|
:classpath => "${java.class.path}:${sun.boot.class.path}"
|
16
16
|
end
|
17
17
|
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/refqueue.jar
CHANGED
Binary file
|
data/weakling.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{weakling}
|
5
|
-
s.version = "0.0.5.
|
5
|
+
s.version = "0.0.5.pre3"
|
6
6
|
s.authors = ["Charles Oliver Nutter"]
|
7
7
|
s.date = Time.now.strftime('%Y-%m-%d')
|
8
8
|
s.description = "A modified WeakRef impl for JRuby plus some weakref-related tools"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: weakling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.5.
|
4
|
+
version: 0.0.5.pre3
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Charles Oliver Nutter
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-10-
|
11
|
+
date: 2021-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A modified WeakRef impl for JRuby plus some weakref-related tools
|
14
14
|
email:
|
@@ -22,7 +22,14 @@ files:
|
|
22
22
|
- Rakefile
|
23
23
|
- examples/id_hash.rb
|
24
24
|
- examples/refqueue_use.rb
|
25
|
+
- ext/RefqueueService.class
|
25
26
|
- ext/RefqueueService.java
|
27
|
+
- ext/org/jruby/ext/RefQueueLibrary$1.class
|
28
|
+
- ext/org/jruby/ext/RefQueueLibrary$2.class
|
29
|
+
- ext/org/jruby/ext/RefQueueLibrary$RefQueue.class
|
30
|
+
- ext/org/jruby/ext/RefQueueLibrary$RubyWeakReference.class
|
31
|
+
- ext/org/jruby/ext/RefQueueLibrary$WeakRef.class
|
32
|
+
- ext/org/jruby/ext/RefQueueLibrary.class
|
26
33
|
- ext/org/jruby/ext/RefQueueLibrary.java
|
27
34
|
- lib/refqueue.jar
|
28
35
|
- lib/weakling.rb
|