ji2p 0.0.4-universal-java-11 → 0.0.5-universal-java-11
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 +4 -4
- data/.gitignore +11 -0
- data/.jrubyrc +54 -0
- data/Gemfile +27 -0
- data/Gemfile.lock +183 -0
- data/Mavenfile +32 -0
- data/README.md +96 -0
- data/Rakefile +49 -0
- data/bin/bundle +1 -1
- data/clean_compiled.sh +2 -0
- data/config/config.ru +7 -0
- data/config/defaults.yml +13 -0
- data/config/jvm.options +37 -0
- data/config/warble.rb +182 -0
- data/install_gems.sh +2 -0
- data/ji2p.gemspec +64 -0
- data/lib/core_ext.rb +3 -3
- data/lib/ji2p/version.rb +1 -1
- metadata +64 -61
- data/lib/actor_system/actor.rb +0 -10
- data/lib/actor_system/concurrent/processor.rb +0 -21
- data/lib/actor_system/concurrent/worker.rb +0 -13
- data/lib/actor_system/core/minimal.rb +0 -84
- data/lib/actor_system/core/observable_implementation.rb +0 -58
- data/lib/actor_system/core/props.rb +0 -45
- data/lib/actor_system/dispatcher.rb +0 -12
- data/lib/actor_system/mailbox.rb +0 -7
- data/lib/actor_system/message.rb +0 -60
- data/lib/ji2p/rspec.rb +0 -16
- data/lib/net/i2p/client/mstreaming/0.9.43/mstreaming-0.9.43.jar +0 -0
- data/lib/net/i2p/client/streaming/0.9.43/streaming-0.9.43.jar +0 -0
- data/lib/net/i2p/i2p/0.9.43/i2p-0.9.43.jar +0 -0
- data/lib/net/i2p/router/0.9.43/router-0.9.43.jar +0 -0
data/bin/bundle
CHANGED
data/clean_compiled.sh
ADDED
data/config/config.ru
ADDED
data/config/defaults.yml
ADDED
data/config/jvm.options
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
## GC configuration
|
2
|
+
-XX:+UseConcMarkSweepGC
|
3
|
+
-XX:CMSInitiatingOccupancyFraction=75
|
4
|
+
-XX:+UseCMSInitiatingOccupancyOnly
|
5
|
+
|
6
|
+
## Locale
|
7
|
+
# Set the locale language
|
8
|
+
#-Duser.language=en
|
9
|
+
|
10
|
+
# Set the locale country
|
11
|
+
#-Duser.country=US
|
12
|
+
|
13
|
+
# Set the locale variant, if any
|
14
|
+
#-Duser.variant=
|
15
|
+
|
16
|
+
## basic
|
17
|
+
|
18
|
+
# set the I/O temp directory
|
19
|
+
#-Djava.io.tmpdir=$HOME
|
20
|
+
|
21
|
+
# set to headless, just in case
|
22
|
+
-Djava.awt.headless=true
|
23
|
+
|
24
|
+
# ensure UTF-8 encoding by default (e.g. filenames)
|
25
|
+
-Dfile.encoding=UTF-8
|
26
|
+
|
27
|
+
# use our provided JNA always versus the system one
|
28
|
+
#-Djna.nosys=true
|
29
|
+
|
30
|
+
# Turn on JRuby invokedynamic
|
31
|
+
-Djruby.compile.invokedynamic=true
|
32
|
+
# Force Compilation
|
33
|
+
-Djruby.jit.threshold=0
|
34
|
+
# Make sure joni regexp interruptability is enabled
|
35
|
+
-Djruby.regexp.interruptible=true
|
36
|
+
|
37
|
+
|
data/config/warble.rb
ADDED
@@ -0,0 +1,182 @@
|
|
1
|
+
# Disable Rake-environment-task framework detection by uncommenting/setting to false
|
2
|
+
# Warbler.framework_detection = false
|
3
|
+
|
4
|
+
# Warbler web application assembly configuration file
|
5
|
+
Warbler::Config.new do |config|
|
6
|
+
# Features: additional options controlling how the jar is built.
|
7
|
+
# Currently the following features are supported:
|
8
|
+
# - *gemjar*: package the gem repository in a jar file in WEB-INF/lib
|
9
|
+
# - *executable*: embed a web server and make the war executable
|
10
|
+
# - *runnable*: allows to run bin scripts e.g. `java -jar my.war -S rake -T`
|
11
|
+
# - *compiled*: compile .rb files to .class files
|
12
|
+
# config.features = %w(gemjar)
|
13
|
+
|
14
|
+
# Application directories to be included in the webapp.
|
15
|
+
# config.dirs = %w(app config db lib log script vendor tmp)
|
16
|
+
|
17
|
+
# Additional files/directories to include, above those in config.dirs
|
18
|
+
# config.includes = FileList["db"]
|
19
|
+
|
20
|
+
# Additional files/directories to exclude
|
21
|
+
# config.excludes = FileList["lib/tasks/*"]
|
22
|
+
|
23
|
+
# Additional Java .jar files to include. Note that if .jar files are placed
|
24
|
+
# in lib (and not otherwise excluded) then they need not be mentioned here.
|
25
|
+
# JRuby and JRuby-Rack are pre-loaded in this list. Be sure to include your
|
26
|
+
# own versions if you directly set the value
|
27
|
+
# config.java_libs += FileList["lib/java/*.jar"]
|
28
|
+
|
29
|
+
# Loose Java classes and miscellaneous files to be included.
|
30
|
+
# config.java_classes = FileList["target/classes/**.*"]
|
31
|
+
|
32
|
+
# One or more pathmaps defining how the java classes should be copied into
|
33
|
+
# the archive. The example pathmap below accompanies the java_classes
|
34
|
+
# configuration above. See http://rake.rubyforge.org/classes/String.html#M000017
|
35
|
+
# for details of how to specify a pathmap.
|
36
|
+
# config.pathmaps.java_classes << "%{target/classes/,}p"
|
37
|
+
|
38
|
+
# Bundler support is built-in. If Warbler finds a Gemfile in the
|
39
|
+
# project directory, it will be used to collect the gems to bundle
|
40
|
+
# in your application. If you wish to explicitly disable this
|
41
|
+
# functionality, uncomment here.
|
42
|
+
# config.bundler = false
|
43
|
+
|
44
|
+
# An array of Bundler groups to avoid including in the war file.
|
45
|
+
# Defaults to ["development", "test", "assets"].
|
46
|
+
# config.bundle_without = []
|
47
|
+
|
48
|
+
# Other gems to be included. If you don't use Bundler or a gemspec
|
49
|
+
# file, you need to tell Warbler which gems your application needs
|
50
|
+
# so that they can be packaged in the archive.
|
51
|
+
# For Rails applications, the Rails gems are included by default
|
52
|
+
# unless the vendor/rails directory is present.
|
53
|
+
# config.gems += ["activerecord-jdbcmysql-adapter", "jruby-openssl"]
|
54
|
+
# config.gems << "tzinfo"
|
55
|
+
|
56
|
+
# Uncomment this if you don't want to package rails gem.
|
57
|
+
# config.gems -= ["rails"]
|
58
|
+
|
59
|
+
# The most recent versions of gems are used.
|
60
|
+
# You can specify versions of gems by using a hash assignment:
|
61
|
+
# config.gems["rails"] = "4.2.5"
|
62
|
+
|
63
|
+
# You can also use regexps or Gem::Dependency objects for flexibility or
|
64
|
+
# finer-grained control.
|
65
|
+
# config.gems << /^sinatra-/
|
66
|
+
# config.gems << Gem::Dependency.new("sinatra", "= 1.4.7")
|
67
|
+
|
68
|
+
# Include gem dependencies not mentioned specifically. Default is
|
69
|
+
# true, uncomment to turn off.
|
70
|
+
# config.gem_dependencies = false
|
71
|
+
|
72
|
+
# Array of regular expressions matching relative paths in gems to be
|
73
|
+
# excluded from the war. Defaults to empty, but you can set it like
|
74
|
+
# below, which excludes test files.
|
75
|
+
# config.gem_excludes = [/^(test|spec)\//]
|
76
|
+
|
77
|
+
# Pathmaps for controlling how application files are copied into the archive
|
78
|
+
# config.pathmaps.application = ["WEB-INF/%p"]
|
79
|
+
|
80
|
+
# Name of the archive (without the extension). Defaults to the basename
|
81
|
+
# of the project directory.
|
82
|
+
# config.jar_name = "mywar"
|
83
|
+
|
84
|
+
# File extension for the archive. Defaults to either 'jar' or 'war'.
|
85
|
+
# config.jar_extension = "jar"
|
86
|
+
|
87
|
+
# Destionation for the created archive. Defaults to project's root directory.
|
88
|
+
# config.autodeploy_dir = "dist/"
|
89
|
+
|
90
|
+
# Name of the MANIFEST.MF template for the war file. Defaults to a simple
|
91
|
+
# MANIFEST.MF that contains the version of Warbler used to create the war file.
|
92
|
+
# config.manifest_file = "config/MANIFEST.MF"
|
93
|
+
|
94
|
+
# When using the 'compiled' feature and specified, only these Ruby
|
95
|
+
# files will be compiled. Default is to compile all \.rb files in
|
96
|
+
# the application.
|
97
|
+
# config.compiled_ruby_files = FileList['app/**/*.rb']
|
98
|
+
|
99
|
+
# Determines if ruby files in supporting gems will be compiled.
|
100
|
+
# Ignored unless compile feature is used.
|
101
|
+
# config.compile_gems = false
|
102
|
+
|
103
|
+
# When set it specify the bytecode version for compiled class files
|
104
|
+
# config.bytecode_version = "1.6"
|
105
|
+
|
106
|
+
# When set to true, Warbler will override the value of ENV['GEM_HOME'] even it
|
107
|
+
# has already been set. When set to false it will use any existing value of
|
108
|
+
# GEM_HOME if it is set.
|
109
|
+
# config.override_gem_home = true
|
110
|
+
|
111
|
+
# Allows for specifing custom executables
|
112
|
+
# config.executable = ["rake", "bin/rake"]
|
113
|
+
|
114
|
+
# Sets default (prefixed) parameters for the executables
|
115
|
+
# config.executable_params = "do:something"
|
116
|
+
|
117
|
+
# If set to true, moves jar files into WEB-INF/lib. Prior to version 1.4.2 of Warbler this was done
|
118
|
+
# by default. But since 1.4.2 this config defaults to false. It may need to be set to true for
|
119
|
+
# web servers that do not explode the WAR file.
|
120
|
+
# Alternatively, this option can be set to a regular expression, which will
|
121
|
+
# act as a jar selector -- only jar files that match the pattern will be
|
122
|
+
# included in the archive.
|
123
|
+
# config.move_jars_to_webinf_lib = false
|
124
|
+
|
125
|
+
# === War files only below here ===
|
126
|
+
|
127
|
+
# Embedded webserver to use with the 'executable' feature. Currently supported
|
128
|
+
# webservers are:
|
129
|
+
# - *jetty* - Embedded Jetty from Eclipse
|
130
|
+
# config.webserver = 'jetty'
|
131
|
+
|
132
|
+
# Path to the pre-bundled gem directory inside the war file. Default
|
133
|
+
# is 'WEB-INF/gems'. Specify path if gems are already bundled
|
134
|
+
# before running Warbler. This also sets 'gem.path' inside web.xml.
|
135
|
+
# config.gem_path = "WEB-INF/vendor/bundler_gems"
|
136
|
+
|
137
|
+
# Files for WEB-INF directory (next to web.xml). This contains
|
138
|
+
# web.xml by default. If there is an .erb-File it will be processed
|
139
|
+
# with webxml-config. You may want to exclude this file via
|
140
|
+
# config.excludes.
|
141
|
+
# config.webinf_files += FileList["jboss-web.xml"]
|
142
|
+
|
143
|
+
# Files to be included in the root of the webapp. Note that files in public
|
144
|
+
# will have the leading 'public/' part of the path stripped during staging.
|
145
|
+
# config.public_html = FileList["public/**/*", "doc/**/*"]
|
146
|
+
|
147
|
+
# Pathmaps for controlling how public HTML files are copied into the .war
|
148
|
+
# config.pathmaps.public_html = ["%{public/,}p"]
|
149
|
+
|
150
|
+
# Value of RAILS_ENV for the webapp -- default as shown below
|
151
|
+
# config.webxml.rails.env = ENV['RAILS_ENV'] || 'production'
|
152
|
+
|
153
|
+
# Public ROOT mapping, by default assets are copied into .war ROOT directory.
|
154
|
+
# config.public.root = ''
|
155
|
+
|
156
|
+
# Application booter to use, either :rack or :rails (autodetected by default)
|
157
|
+
# config.webxml.booter = :rails
|
158
|
+
|
159
|
+
# When using the :rack booter, "Rackup" script to use.
|
160
|
+
# - For 'rackup.path', the value points to the location of the rackup
|
161
|
+
# script in the web archive file. You need to make sure this file
|
162
|
+
# gets included in the war, possibly by adding it to config.includes
|
163
|
+
# or config.webinf_files above.
|
164
|
+
# - For 'rackup', the rackup script you provide as an inline string
|
165
|
+
# is simply embedded in web.xml.
|
166
|
+
# The script is evaluated in a Rack::Builder to load the application.
|
167
|
+
# Examples:
|
168
|
+
# config.webxml.rackup.path = 'WEB-INF/hello.ru'
|
169
|
+
# config.webxml.rackup = %{require './lib/demo'; run Rack::Adapter::Camping.new(Demo)}
|
170
|
+
# config.webxml.rackup = require 'cgi' && CGI::escapeHTML(File.read("config.ru"))
|
171
|
+
|
172
|
+
# Control the pool of Rails runtimes. Leaving unspecified means
|
173
|
+
# the pool will grow as needed to service requests. It is recommended
|
174
|
+
# that you fix these values when running a production server!
|
175
|
+
# If you're using threadsafe! mode, you probably don't want to set these values,
|
176
|
+
# since 1 runtime(default for threadsafe mode) will be enough.
|
177
|
+
# config.webxml.jruby.min.runtimes = 2
|
178
|
+
# config.webxml.jruby.max.runtimes = 4
|
179
|
+
|
180
|
+
# JNDI data source name
|
181
|
+
# config.webxml.jndi = 'jdbc/rails'
|
182
|
+
end
|
data/install_gems.sh
ADDED
data/ji2p.gemspec
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
lib = File.expand_path('lib', __dir__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require 'date'
|
4
|
+
require 'ji2p'
|
5
|
+
|
6
|
+
i2p_version = '0.9.43'
|
7
|
+
|
8
|
+
Gem::Specification.new do |s|
|
9
|
+
s.name = 'ji2p'
|
10
|
+
s.version = Ji2p::VERSION
|
11
|
+
s.date = Date.today.to_s
|
12
|
+
s.summary = 'JRuby interface for I2P'
|
13
|
+
s.description = 'JRuby interface for I2P'
|
14
|
+
s.authors = ['Mikal Villa']
|
15
|
+
s.email = 'mikalv@mikalv.net'
|
16
|
+
#s.files = Dir['lib/**/*.rb'] + Dir['bin/**'] + Dir['lib/**/*.jar']
|
17
|
+
s.homepage = 'https://github.com/mikalv/ji2p'
|
18
|
+
s.license = 'Apache-2.0'
|
19
|
+
s.metadata['allowed_push_host'] = 'https://rubygems.org'
|
20
|
+
s.platform = Gem::Platform.local #Gem::Platform.new %w[jruby java universal-java-9 universal-java-10 universal-java-11]
|
21
|
+
s.post_install_message = "Thanks for installing!"
|
22
|
+
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
25
|
+
s.files = Dir.chdir(__dir__) do
|
26
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
27
|
+
end
|
28
|
+
s.bindir = 'bin'
|
29
|
+
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
30
|
+
s.require_paths = ['lib']
|
31
|
+
|
32
|
+
# Runtime dependencies
|
33
|
+
s.add_runtime_dependency 'bundler', '~> 2.0'
|
34
|
+
s.add_runtime_dependency 'activesupport', '>= 4.1.11'
|
35
|
+
s.add_runtime_dependency 'httparty', '>= 0.10.0'
|
36
|
+
s.add_runtime_dependency 'activerecord', '>= 3.0.18'
|
37
|
+
s.add_runtime_dependency 'activerecord-jdbc-adapter', '~> 0'
|
38
|
+
s.add_runtime_dependency 'activerecord-jdbcsqlite3-adapter', '~> 0'
|
39
|
+
s.add_runtime_dependency 'sinatra', '~> 2.0.7'
|
40
|
+
s.add_runtime_dependency 'dbi', '~> 0'
|
41
|
+
s.add_runtime_dependency 'dbd-jdbc', '~> 0'
|
42
|
+
s.add_runtime_dependency 'puma', '~> 4.3'
|
43
|
+
s.add_runtime_dependency 'jruby-rack', '~> 0'
|
44
|
+
s.add_runtime_dependency 'rack', '~> 2.0'
|
45
|
+
s.add_runtime_dependency 'jar-dependencies', '~> 0'
|
46
|
+
s.add_runtime_dependency 'rake', '~> 0'
|
47
|
+
s.add_runtime_dependency 'warbler', '~> 0'
|
48
|
+
#s.add_runtime_dependency 'activerecord-jdbcpostgresql-adapter', '~> 0'
|
49
|
+
#s.add_runtime_dependency 'ed25519', '~> 1.2.4'
|
50
|
+
|
51
|
+
# JARs
|
52
|
+
s.requirements << "jar net.i2p.client, streaming, #{i2p_version}"
|
53
|
+
s.requirements << "jar net.i2p.client, mstreaming, #{i2p_version}"
|
54
|
+
s.requirements << "jar net.i2p, i2p, #{i2p_version}"
|
55
|
+
s.requirements << "jar net.i2p, router, #{i2p_version}"
|
56
|
+
# jruby -rjars/installer -e 'Jars::Installer.vendor_jars!'
|
57
|
+
|
58
|
+
# Development dependencies
|
59
|
+
s.add_development_dependency 'awesome_print', '~> 0'
|
60
|
+
s.add_development_dependency 'rspec', '~> 0'
|
61
|
+
s.add_development_dependency 'pry', '~> 0'
|
62
|
+
s.add_development_dependency 'irbtools', '~> 3.0'
|
63
|
+
s.add_development_dependency 'ruby-maven', '~> 3.3'
|
64
|
+
end
|
data/lib/core_ext.rb
CHANGED
data/lib/ji2p/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ji2p
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: universal-java-11
|
6
6
|
authors:
|
7
7
|
- Mikal Villa
|
@@ -17,8 +17,8 @@ dependencies:
|
|
17
17
|
- !ruby/object:Gem::Version
|
18
18
|
version: '2.0'
|
19
19
|
name: bundler
|
20
|
-
prerelease: false
|
21
20
|
type: :runtime
|
21
|
+
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
@@ -31,8 +31,8 @@ dependencies:
|
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 4.1.11
|
33
33
|
name: activesupport
|
34
|
-
prerelease: false
|
35
34
|
type: :runtime
|
35
|
+
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
@@ -45,8 +45,8 @@ dependencies:
|
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: 0.10.0
|
47
47
|
name: httparty
|
48
|
-
prerelease: false
|
49
48
|
type: :runtime
|
49
|
+
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
@@ -59,8 +59,8 @@ dependencies:
|
|
59
59
|
- !ruby/object:Gem::Version
|
60
60
|
version: 3.0.18
|
61
61
|
name: activerecord
|
62
|
-
prerelease: false
|
63
62
|
type: :runtime
|
63
|
+
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - ">="
|
@@ -73,8 +73,8 @@ dependencies:
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
name: activerecord-jdbc-adapter
|
76
|
-
prerelease: false
|
77
76
|
type: :runtime
|
77
|
+
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
@@ -87,13 +87,27 @@ dependencies:
|
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: '0'
|
89
89
|
name: activerecord-jdbcsqlite3-adapter
|
90
|
-
prerelease: false
|
91
90
|
type: :runtime
|
91
|
+
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 2.0.7
|
103
|
+
name: sinatra
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 2.0.7
|
97
111
|
- !ruby/object:Gem::Dependency
|
98
112
|
requirement: !ruby/object:Gem::Requirement
|
99
113
|
requirements:
|
@@ -101,8 +115,8 @@ dependencies:
|
|
101
115
|
- !ruby/object:Gem::Version
|
102
116
|
version: '0'
|
103
117
|
name: dbi
|
104
|
-
prerelease: false
|
105
118
|
type: :runtime
|
119
|
+
prerelease: false
|
106
120
|
version_requirements: !ruby/object:Gem::Requirement
|
107
121
|
requirements:
|
108
122
|
- - "~>"
|
@@ -115,8 +129,8 @@ dependencies:
|
|
115
129
|
- !ruby/object:Gem::Version
|
116
130
|
version: '0'
|
117
131
|
name: dbd-jdbc
|
118
|
-
prerelease: false
|
119
132
|
type: :runtime
|
133
|
+
prerelease: false
|
120
134
|
version_requirements: !ruby/object:Gem::Requirement
|
121
135
|
requirements:
|
122
136
|
- - "~>"
|
@@ -127,15 +141,15 @@ dependencies:
|
|
127
141
|
requirements:
|
128
142
|
- - "~>"
|
129
143
|
- !ruby/object:Gem::Version
|
130
|
-
version: '
|
144
|
+
version: '4.3'
|
131
145
|
name: puma
|
132
|
-
prerelease: false
|
133
146
|
type: :runtime
|
147
|
+
prerelease: false
|
134
148
|
version_requirements: !ruby/object:Gem::Requirement
|
135
149
|
requirements:
|
136
150
|
- - "~>"
|
137
151
|
- !ruby/object:Gem::Version
|
138
|
-
version: '
|
152
|
+
version: '4.3'
|
139
153
|
- !ruby/object:Gem::Dependency
|
140
154
|
requirement: !ruby/object:Gem::Requirement
|
141
155
|
requirements:
|
@@ -143,8 +157,8 @@ dependencies:
|
|
143
157
|
- !ruby/object:Gem::Version
|
144
158
|
version: '0'
|
145
159
|
name: jruby-rack
|
146
|
-
prerelease: false
|
147
160
|
type: :runtime
|
161
|
+
prerelease: false
|
148
162
|
version_requirements: !ruby/object:Gem::Requirement
|
149
163
|
requirements:
|
150
164
|
- - "~>"
|
@@ -155,15 +169,15 @@ dependencies:
|
|
155
169
|
requirements:
|
156
170
|
- - "~>"
|
157
171
|
- !ruby/object:Gem::Version
|
158
|
-
version:
|
172
|
+
version: '2.0'
|
159
173
|
name: rack
|
160
|
-
prerelease: false
|
161
174
|
type: :runtime
|
175
|
+
prerelease: false
|
162
176
|
version_requirements: !ruby/object:Gem::Requirement
|
163
177
|
requirements:
|
164
178
|
- - "~>"
|
165
179
|
- !ruby/object:Gem::Version
|
166
|
-
version:
|
180
|
+
version: '2.0'
|
167
181
|
- !ruby/object:Gem::Dependency
|
168
182
|
requirement: !ruby/object:Gem::Requirement
|
169
183
|
requirements:
|
@@ -171,8 +185,8 @@ dependencies:
|
|
171
185
|
- !ruby/object:Gem::Version
|
172
186
|
version: '0'
|
173
187
|
name: jar-dependencies
|
174
|
-
prerelease: false
|
175
188
|
type: :runtime
|
189
|
+
prerelease: false
|
176
190
|
version_requirements: !ruby/object:Gem::Requirement
|
177
191
|
requirements:
|
178
192
|
- - "~>"
|
@@ -184,9 +198,9 @@ dependencies:
|
|
184
198
|
- - "~>"
|
185
199
|
- !ruby/object:Gem::Version
|
186
200
|
version: '0'
|
187
|
-
name:
|
201
|
+
name: rake
|
202
|
+
type: :runtime
|
188
203
|
prerelease: false
|
189
|
-
type: :development
|
190
204
|
version_requirements: !ruby/object:Gem::Requirement
|
191
205
|
requirements:
|
192
206
|
- - "~>"
|
@@ -198,9 +212,9 @@ dependencies:
|
|
198
212
|
- - "~>"
|
199
213
|
- !ruby/object:Gem::Version
|
200
214
|
version: '0'
|
201
|
-
name:
|
215
|
+
name: warbler
|
216
|
+
type: :runtime
|
202
217
|
prerelease: false
|
203
|
-
type: :development
|
204
218
|
version_requirements: !ruby/object:Gem::Requirement
|
205
219
|
requirements:
|
206
220
|
- - "~>"
|
@@ -212,9 +226,9 @@ dependencies:
|
|
212
226
|
- - "~>"
|
213
227
|
- !ruby/object:Gem::Version
|
214
228
|
version: '0'
|
215
|
-
name:
|
216
|
-
prerelease: false
|
229
|
+
name: awesome_print
|
217
230
|
type: :development
|
231
|
+
prerelease: false
|
218
232
|
version_requirements: !ruby/object:Gem::Requirement
|
219
233
|
requirements:
|
220
234
|
- - "~>"
|
@@ -226,9 +240,9 @@ dependencies:
|
|
226
240
|
- - "~>"
|
227
241
|
- !ruby/object:Gem::Version
|
228
242
|
version: '0'
|
229
|
-
name:
|
230
|
-
prerelease: false
|
243
|
+
name: rspec
|
231
244
|
type: :development
|
245
|
+
prerelease: false
|
232
246
|
version_requirements: !ruby/object:Gem::Requirement
|
233
247
|
requirements:
|
234
248
|
- - "~>"
|
@@ -240,9 +254,9 @@ dependencies:
|
|
240
254
|
- - "~>"
|
241
255
|
- !ruby/object:Gem::Version
|
242
256
|
version: '0'
|
243
|
-
name:
|
244
|
-
prerelease: false
|
257
|
+
name: pry
|
245
258
|
type: :development
|
259
|
+
prerelease: false
|
246
260
|
version_requirements: !ruby/object:Gem::Requirement
|
247
261
|
requirements:
|
248
262
|
- - "~>"
|
@@ -255,27 +269,13 @@ dependencies:
|
|
255
269
|
- !ruby/object:Gem::Version
|
256
270
|
version: '3.0'
|
257
271
|
name: irbtools
|
258
|
-
prerelease: false
|
259
272
|
type: :development
|
260
|
-
version_requirements: !ruby/object:Gem::Requirement
|
261
|
-
requirements:
|
262
|
-
- - "~>"
|
263
|
-
- !ruby/object:Gem::Version
|
264
|
-
version: '3.0'
|
265
|
-
- !ruby/object:Gem::Dependency
|
266
|
-
requirement: !ruby/object:Gem::Requirement
|
267
|
-
requirements:
|
268
|
-
- - "~>"
|
269
|
-
- !ruby/object:Gem::Version
|
270
|
-
version: '0'
|
271
|
-
name: warbler
|
272
273
|
prerelease: false
|
273
|
-
type: :development
|
274
274
|
version_requirements: !ruby/object:Gem::Requirement
|
275
275
|
requirements:
|
276
276
|
- - "~>"
|
277
277
|
- !ruby/object:Gem::Version
|
278
|
-
version: '0'
|
278
|
+
version: '3.0'
|
279
279
|
- !ruby/object:Gem::Dependency
|
280
280
|
requirement: !ruby/object:Gem::Requirement
|
281
281
|
requirements:
|
@@ -283,8 +283,8 @@ dependencies:
|
|
283
283
|
- !ruby/object:Gem::Version
|
284
284
|
version: '3.3'
|
285
285
|
name: ruby-maven
|
286
|
-
prerelease: false
|
287
286
|
type: :development
|
287
|
+
prerelease: false
|
288
288
|
version_requirements: !ruby/object:Gem::Requirement
|
289
289
|
requirements:
|
290
290
|
- - "~>"
|
@@ -292,23 +292,32 @@ dependencies:
|
|
292
292
|
version: '3.3'
|
293
293
|
description: JRuby interface for I2P
|
294
294
|
email: mikalv@mikalv.net
|
295
|
-
executables:
|
295
|
+
executables:
|
296
|
+
- bundle
|
297
|
+
- ctxirb
|
298
|
+
- simple_http_server
|
299
|
+
- simple_outproxy
|
296
300
|
extensions: []
|
297
301
|
extra_rdoc_files: []
|
298
302
|
files:
|
303
|
+
- ".gitignore"
|
304
|
+
- ".jrubyrc"
|
305
|
+
- Gemfile
|
306
|
+
- Gemfile.lock
|
307
|
+
- Mavenfile
|
308
|
+
- README.md
|
309
|
+
- Rakefile
|
299
310
|
- bin/bundle
|
300
311
|
- bin/ctxirb
|
301
312
|
- bin/simple_http_server
|
302
313
|
- bin/simple_outproxy
|
303
|
-
-
|
304
|
-
-
|
305
|
-
-
|
306
|
-
-
|
307
|
-
-
|
308
|
-
-
|
309
|
-
-
|
310
|
-
- lib/actor_system/mailbox.rb
|
311
|
-
- lib/actor_system/message.rb
|
314
|
+
- clean_compiled.sh
|
315
|
+
- config/config.ru
|
316
|
+
- config/defaults.yml
|
317
|
+
- config/jvm.options
|
318
|
+
- config/warble.rb
|
319
|
+
- install_gems.sh
|
320
|
+
- ji2p.gemspec
|
312
321
|
- lib/core_ext.rb
|
313
322
|
- lib/gen_server.rb
|
314
323
|
- lib/ji2p.rb
|
@@ -333,7 +342,6 @@ files:
|
|
333
342
|
- lib/ji2p/package/gemfile.rb
|
334
343
|
- lib/ji2p/package/jar_dependencies.rb
|
335
344
|
- lib/ji2p/package/proxy_support.rb
|
336
|
-
- lib/ji2p/rspec.rb
|
337
345
|
- lib/ji2p/server.rb
|
338
346
|
- lib/ji2p/server/api.rb
|
339
347
|
- lib/ji2p/server/database.rb
|
@@ -356,16 +364,12 @@ files:
|
|
356
364
|
- lib/ji2p/version.rb
|
357
365
|
- lib/ji2p_jars.rb
|
358
366
|
- lib/maybe.rb
|
359
|
-
- lib/net/i2p/client/mstreaming/0.9.43/mstreaming-0.9.43.jar
|
360
|
-
- lib/net/i2p/client/streaming/0.9.43/streaming-0.9.43.jar
|
361
|
-
- lib/net/i2p/i2p/0.9.43/i2p-0.9.43.jar
|
362
|
-
- lib/net/i2p/router/0.9.43/router-0.9.43.jar
|
363
367
|
homepage: https://github.com/mikalv/ji2p
|
364
368
|
licenses:
|
365
369
|
- Apache-2.0
|
366
370
|
metadata:
|
367
371
|
allowed_push_host: https://rubygems.org
|
368
|
-
post_install_message:
|
372
|
+
post_install_message: Thanks for installing!
|
369
373
|
rdoc_options: []
|
370
374
|
require_paths:
|
371
375
|
- lib
|
@@ -384,8 +388,7 @@ requirements:
|
|
384
388
|
- jar net.i2p.client, mstreaming, 0.9.43
|
385
389
|
- jar net.i2p, i2p, 0.9.43
|
386
390
|
- jar net.i2p, router, 0.9.43
|
387
|
-
|
388
|
-
rubygems_version: 2.7.10
|
391
|
+
rubygems_version: 3.0.6
|
389
392
|
signing_key:
|
390
393
|
specification_version: 4
|
391
394
|
summary: JRuby interface for I2P
|