weakling 0.0.5.pre2-java → 0.0.5.pre3-java

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 265732f562df69db98caa7c62389bed8e04aceaedc30b6ff9a0b9a5d49c0e813
4
- data.tar.gz: 1b8fdfb8909ea95f4f497c78e2426f74138c656e41ba98497321dca546929eda
3
+ metadata.gz: c5c035401449cb30c14486c8e721fcfba95d687d8ff580f96caf52f0a32a58e9
4
+ data.tar.gz: bef68695fab647da861b4b0444e484c09d6cd7b30a7f8d4cd1783de4ec2047df
5
5
  SHA512:
6
- metadata.gz: 13c7b1ec7957722f2d7b5780d009b66407fb66cf1aac75cbf2d96d614ae03a6ed133d1b1b35174df1c27032994d167d61936f85d9f1bb1f6a8e54808ae77b440
7
- data.tar.gz: 3c54564888b4a9142a62d83b7ada5f7b887eed379481c0ee1b15e5f212d2f4ac9e930409fceb5b1f5f34fad602a3dd0d314e93cc3009c599b1dfd530ba97e2d9
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 => "1.5", :target => "1.5", :debug => true,
14
+ :source => "7", :target => "7", :debug => true,
15
15
  :classpath => "${java.class.path}:${sun.boot.class.path}"
16
16
  end
17
17
 
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.pre2"
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.pre2
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 00:00:00.000000000 Z
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