jruby-readline 1.1.1-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 +7 -0
- data/License.txt +30 -0
- data/Mavenfile +39 -0
- data/README.md +11 -0
- data/lib/readline.jar +0 -0
- data/lib/readline.rb +13 -0
- data/lib/readline/version.rb +6 -0
- metadata +52 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 006e828dda6e9cd5161680a9f27ba919f73b6fcd
|
4
|
+
data.tar.gz: 67675e8245fffb46b2ac24de28779a37c7af43f0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8b760c23327e5aa655d5c127174a6df8d27076a84c608479ba4103d956fe122a22d8ed84932434fbea7b52a546cba81a20ec1c822c8ba6d4d2d188cd39124ab5
|
7
|
+
data.tar.gz: 52faa06b6e4afcbf71a4e57c738e8a3e96b4b51509628f30f14d14ae72fce2bb2cdff15ead05c0da4b438626d8ce43dfeb87736b6a66dc6a9133a984f9b1db37
|
data/License.txt
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
JRuby-OpenSSL is distributed under the same license as JRuby (http://www.jruby.org/).
|
2
|
+
|
3
|
+
Version: EPL 1.0/GPL 2.0/LGPL 2.1
|
4
|
+
|
5
|
+
The contents of this file are subject to the Common Public
|
6
|
+
License Version 1.0 (the "License"); you may not use this file
|
7
|
+
except in compliance with the License. You may obtain a copy of
|
8
|
+
the License at http://www.eclipse.org/legal/cpl-v10.html
|
9
|
+
|
10
|
+
Software distributed under the License is distributed on an "AS
|
11
|
+
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
12
|
+
implied. See the License for the specific language governing
|
13
|
+
rights and limitations under the License.
|
14
|
+
|
15
|
+
Copyright (C) 2007 Ola Bini <ola.bini@gmail.com>
|
16
|
+
|
17
|
+
Alternatively, the contents of this file may be used under the terms of
|
18
|
+
either of the GNU General Public License Version 2 or later (the "GPL"),
|
19
|
+
or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
20
|
+
in which case the provisions of the GPL or the LGPL are applicable instead
|
21
|
+
of those above. If you wish to allow use of your version of this file only
|
22
|
+
under the terms of either the GPL or the LGPL, and not to allow others to
|
23
|
+
use your version of this file under the terms of the EPL, indicate your
|
24
|
+
decision by deleting the provisions above and replace them with the notice
|
25
|
+
and other provisions required by the GPL or the LGPL. If you do not delete
|
26
|
+
the provisions above, a recipient may use your version of this file under
|
27
|
+
the terms of any one of the EPL, the GPL or the LGPL.
|
28
|
+
|
29
|
+
JRuby-OpenSSL includes software by the Legion of the Bouncy Castle
|
30
|
+
(http://bouncycastle.org/license.html).
|
data/Mavenfile
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
#-*- mode: ruby -*-
|
2
|
+
|
3
|
+
gemspec :jar => 'readline.jar'
|
4
|
+
|
5
|
+
parent 'org.jruby:jruby-parent', '9.1.2.0'
|
6
|
+
|
7
|
+
# do not push gem to rubygems.org
|
8
|
+
jruby_plugin! :gem do
|
9
|
+
execute_goals :id => 'default-push', :skip => true
|
10
|
+
end
|
11
|
+
|
12
|
+
# we need the jruby API here, the version should be less important here
|
13
|
+
jar 'org.jruby:jruby:${project.parent.version}', :scope => :provided
|
14
|
+
|
15
|
+
properties 'jruby.plugins.version' => '1.1.5'
|
16
|
+
|
17
|
+
distribution_management do
|
18
|
+
snapshot_repository :id => 'sonatype-nexus-snapshots', :url => 'https://oss.sonatype.org/content/repositories/snapshots'
|
19
|
+
repository :id => 'sonatype-nexus-staging', :url => 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
|
20
|
+
end
|
21
|
+
|
22
|
+
# do not do anything on deploy unless when using the release profile
|
23
|
+
plugin :deploy, '2.8.1' do
|
24
|
+
execute_goals( :deploy, :skip => false )
|
25
|
+
end
|
26
|
+
|
27
|
+
profile :id => 'release' do
|
28
|
+
activation do
|
29
|
+
property :name => 'performRelease', :value => 'true'
|
30
|
+
end
|
31
|
+
build do
|
32
|
+
default_goal :deploy
|
33
|
+
end
|
34
|
+
plugin :gpg, '1.5' do
|
35
|
+
execute_goal 'sign', :id => 'sign-artifacts', :phase => 'verify'
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
# vim: syntax=Ruby
|
data/README.md
ADDED
data/lib/readline.jar
ADDED
Binary file
|
data/lib/readline.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'readline/version'
|
2
|
+
|
3
|
+
require 'jar-dependencies'
|
4
|
+
require_jar( 'jline', 'jline', Readline::Version::JLINE_VERSION )
|
5
|
+
|
6
|
+
require "readline.jar"
|
7
|
+
|
8
|
+
# boot extension
|
9
|
+
begin
|
10
|
+
org.jruby.ext.readline.ReadlineService.new.load(JRuby.runtime, false)
|
11
|
+
rescue NameError => ne
|
12
|
+
raise NameError, "unable to load readline subsystem: #{ne.message}", ne.backtrace
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jruby-readline
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.1
|
5
|
+
platform: java
|
6
|
+
authors:
|
7
|
+
- JRuby contributors
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-09-21 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: readline extension for JRuby
|
14
|
+
email: dev@jruby.org
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- License.txt
|
20
|
+
- Mavenfile
|
21
|
+
- README.md
|
22
|
+
- lib/readline.jar
|
23
|
+
- lib/readline.rb
|
24
|
+
- lib/readline/version.rb
|
25
|
+
homepage: https://github.com/jruby/jruby
|
26
|
+
licenses:
|
27
|
+
- EPL-1.0
|
28
|
+
- GPL-2.0
|
29
|
+
- LGPL-2.1
|
30
|
+
metadata: {}
|
31
|
+
post_install_message:
|
32
|
+
rdoc_options: []
|
33
|
+
require_paths:
|
34
|
+
- lib
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
45
|
+
requirements:
|
46
|
+
- jar jline:jline, 2.11
|
47
|
+
rubyforge_project:
|
48
|
+
rubygems_version: 2.6.4
|
49
|
+
signing_key:
|
50
|
+
specification_version: 4
|
51
|
+
summary: JRuby Readline
|
52
|
+
test_files: []
|