vlt_wrapper 2.4.18
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.
- data/.gitignore +17 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +31 -0
- data/Rakefile +1 -0
- data/bin/vault/bin/vlt +146 -0
- data/bin/vault/bin/vlt.bat +140 -0
- data/bin/vault/lib/com.day.jcr.vault-2.4.18.jar +0 -0
- data/bin/vault/lib/commons-codec-1.2.jar +0 -0
- data/bin/vault/lib/commons-collections-3.2.1.jar +0 -0
- data/bin/vault/lib/commons-httpclient-3.0.jar +0 -0
- data/bin/vault/lib/commons-io-1.4.jar +0 -0
- data/bin/vault/lib/day-commons-cli-2.0.10.jar +0 -0
- data/bin/vault/lib/day-commons-diff-1.1.2.jar +0 -0
- data/bin/vault/lib/jackrabbit-api-2.3.7.jar +0 -0
- data/bin/vault/lib/jackrabbit-jcr-client-2.3.7.jar +0 -0
- data/bin/vault/lib/jackrabbit-jcr-commons-2.3.7.jar +0 -0
- data/bin/vault/lib/jackrabbit-jcr2spi-2.3.7.jar +0 -0
- data/bin/vault/lib/jackrabbit-spi-2.3.7.jar +0 -0
- data/bin/vault/lib/jackrabbit-spi-commons-2.3.7.jar +0 -0
- data/bin/vault/lib/jackrabbit-spi2dav-2.3.7.jar +0 -0
- data/bin/vault/lib/jackrabbit-webdav-2.3.7.jar +0 -0
- data/bin/vault/lib/jcl-over-slf4j-1.5.8.jar +0 -0
- data/bin/vault/lib/jcr-2.0.jar +0 -0
- data/bin/vault/lib/jline-0.9.94.jar +0 -0
- data/bin/vault/lib/launcher.jar +0 -0
- data/bin/vault/lib/log4j-1.2.12.jar +0 -0
- data/bin/vault/lib/slf4j-api-1.5.8.jar +0 -0
- data/bin/vault/lib/slf4j-log4j12-1.5.8.jar +0 -0
- data/bin/vault/lib/vault-cli-2.4.18.jar +0 -0
- data/bin/vault/lib/vault-davex-2.4.18.jar +0 -0
- data/bin/vault/lib/vault-vlt-2.4.18.jar +0 -0
- data/bin/vlt +4 -0
- data/lib/vlt_wrapper.rb +14 -0
- data/lib/vlt_wrapper/version.rb +3 -0
- data/vlt_wrapper.gemspec +22 -0
- metadata +116 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Jordan Raine
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# VltWrapper
|
2
|
+
|
3
|
+
A wrapper around the VLT executable, allowing easy use within a Ruby project.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
```
|
8
|
+
gem install vlt_wrapper
|
9
|
+
```
|
10
|
+
|
11
|
+
or add the following line to Gemfile:
|
12
|
+
|
13
|
+
```
|
14
|
+
gem 'vlt_wrapper'
|
15
|
+
```
|
16
|
+
|
17
|
+
and run `bundle` from your shell.
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
require 'vlt_wrapper'
|
23
|
+
|
24
|
+
VltWrapper.executable # => /path/to/vlt
|
25
|
+
|
26
|
+
system("#{VltWrapper.executable} --version") # => "Jcr File Vault [version 2.4.18] Copyright 2011 by Adobe Systems Incorporated\n"
|
27
|
+
```
|
28
|
+
|
29
|
+
## License
|
30
|
+
|
31
|
+
This is a repackage of an Adobe product which has been [donated](https://issues.apache.org/jira/browse/JCRVLT-6) to the Jackrabbit project. Please notify me if there is something here that is not currently under an open source license.
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/vault/bin/vlt
ADDED
@@ -0,0 +1,146 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
# ----------------------------------------------------------------------------
|
3
|
+
# File Vault Start Up Batch script
|
4
|
+
#
|
5
|
+
# Required ENV vars:
|
6
|
+
# ------------------
|
7
|
+
# JAVA_HOME - location of a JDK home dir
|
8
|
+
#
|
9
|
+
# Optional ENV vars
|
10
|
+
# -----------------
|
11
|
+
# VLT_HOME - location of vault's installed home dir
|
12
|
+
# VLT_OPTS - parameters passed to the Java VM when running Vault
|
13
|
+
# e.g. to debug vault itself, use
|
14
|
+
# set VLT_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
15
|
+
# ----------------------------------------------------------------------------
|
16
|
+
|
17
|
+
if [ -f /etc/vaultrc ] ; then
|
18
|
+
. /etc/vaultrc
|
19
|
+
fi
|
20
|
+
|
21
|
+
if [ -f "$HOME/.vaultrc" ] ; then
|
22
|
+
. "$HOME/.vaultrc"
|
23
|
+
fi
|
24
|
+
|
25
|
+
# OS specific support. $var _must_ be set to either true or false.
|
26
|
+
cygwin=false;
|
27
|
+
darwin=false;
|
28
|
+
mingw=false
|
29
|
+
case "`uname`" in
|
30
|
+
CYGWIN*) cygwin=true ;;
|
31
|
+
MINGW*) mingw=true;;
|
32
|
+
Darwin*) darwin=true
|
33
|
+
if [ -z "$JAVA_VERSION" ] ; then
|
34
|
+
JAVA_VERSION="CurrentJDK"
|
35
|
+
else
|
36
|
+
echo "Using Java version: $JAVA_VERSION"
|
37
|
+
fi
|
38
|
+
if [ -z "$JAVA_HOME" ] ; then
|
39
|
+
JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/${JAVA_VERSION}/Home
|
40
|
+
fi
|
41
|
+
;;
|
42
|
+
esac
|
43
|
+
|
44
|
+
if [ -z "$JAVA_HOME" ] ; then
|
45
|
+
if [ -r /etc/gentoo-release ] ; then
|
46
|
+
JAVA_HOME=`java-config --jre-home`
|
47
|
+
fi
|
48
|
+
fi
|
49
|
+
|
50
|
+
if [ -z "$VLT_HOME" ] ; then
|
51
|
+
## resolve links - $0 may be a link to vlts home
|
52
|
+
PRG="$0"
|
53
|
+
|
54
|
+
# need this for relative symlinks
|
55
|
+
while [ -h "$PRG" ] ; do
|
56
|
+
ls=`ls -ld "$PRG"`
|
57
|
+
link=`expr "$ls" : '.*-> \(.*\)$'`
|
58
|
+
if expr "$link" : '/.*' > /dev/null; then
|
59
|
+
PRG="$link"
|
60
|
+
else
|
61
|
+
PRG="`dirname "$PRG"`/$link"
|
62
|
+
fi
|
63
|
+
done
|
64
|
+
|
65
|
+
saveddir=`pwd`
|
66
|
+
|
67
|
+
VLT_HOME=`dirname "$PRG"`/..
|
68
|
+
|
69
|
+
# make it fully qualified
|
70
|
+
VLT_HOME=`cd "$VLT_HOME" && pwd`
|
71
|
+
|
72
|
+
cd "$saveddir"
|
73
|
+
fi
|
74
|
+
|
75
|
+
# For Cygwin, ensure paths are in UNIX format before anything is touched
|
76
|
+
if $cygwin ; then
|
77
|
+
[ -n "$VLT_HOME" ] &&
|
78
|
+
VLT_HOME=`cygpath --unix "$VLT_HOME"`
|
79
|
+
[ -n "$JAVA_HOME" ] &&
|
80
|
+
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
|
81
|
+
[ -n "$CLASSPATH" ] &&
|
82
|
+
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
|
83
|
+
fi
|
84
|
+
|
85
|
+
# For Migwn, ensure paths are in UNIX format before anything is touched
|
86
|
+
if $mingw ; then
|
87
|
+
[ -n "$VLT_HOME" ] &&
|
88
|
+
VLT_HOME="`(cd "$VLT_HOME"; pwd)`"
|
89
|
+
[ -n "$JAVA_HOME" ] &&
|
90
|
+
JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
|
91
|
+
fi
|
92
|
+
|
93
|
+
if [ -z "$JAVACMD" ] ; then
|
94
|
+
if [ -n "$JAVA_HOME" ] ; then
|
95
|
+
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
96
|
+
# IBM's JDK on AIX uses strange locations for the executables
|
97
|
+
JAVACMD="$JAVA_HOME/jre/sh/java"
|
98
|
+
else
|
99
|
+
JAVACMD="$JAVA_HOME/bin/java"
|
100
|
+
fi
|
101
|
+
else
|
102
|
+
JAVACMD=java
|
103
|
+
fi
|
104
|
+
fi
|
105
|
+
|
106
|
+
if [ ! -x "$JAVACMD" ] ; then
|
107
|
+
echo "Error: JAVA_HOME is not defined correctly."
|
108
|
+
echo " We cannot execute $JAVACMD"
|
109
|
+
exit 1
|
110
|
+
fi
|
111
|
+
|
112
|
+
if [ -z "$JAVA_HOME" ] ; then
|
113
|
+
echo "Warning: JAVA_HOME environment variable is not set."
|
114
|
+
fi
|
115
|
+
|
116
|
+
# For Cygwin, switch paths to Windows format before running java
|
117
|
+
if $cygwin; then
|
118
|
+
[ -n "$VLT_HOME" ] &&
|
119
|
+
VLT_HOME=`cygpath --path --windows "$VLT_HOME"`
|
120
|
+
[ -n "$JAVA_HOME" ] &&
|
121
|
+
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
|
122
|
+
[ -n "$HOME" ] &&
|
123
|
+
HOME=`cygpath --path --windows "$HOME"`
|
124
|
+
fi
|
125
|
+
|
126
|
+
JVM_OPTS="-Xmx256m -Dvlt.home=${VLT_HOME}"
|
127
|
+
|
128
|
+
# try to determine terminal width
|
129
|
+
COLS=$COLUMNS
|
130
|
+
if [ -x "/bin/stty" ]; then
|
131
|
+
TERM_SIZE=`/bin/stty size 2>/dev/null`
|
132
|
+
for a in ${TERM_SIZE}; do
|
133
|
+
COLS=$a
|
134
|
+
done
|
135
|
+
fi
|
136
|
+
if [ -n "$COLS" ]; then
|
137
|
+
JVM_OPTS="${JVM_OPTS} -Denv.term.width=${COLS}"
|
138
|
+
fi
|
139
|
+
|
140
|
+
MAIN_CLASS="-Dlauncher.main.class=com.day.jcr.vault.cli.VaultFsApp -jar ${VLT_HOME}/lib/launcher.jar"
|
141
|
+
|
142
|
+
exec "$JAVACMD" \
|
143
|
+
$VLT_OPTS \
|
144
|
+
$JVM_OPTS \
|
145
|
+
${MAIN_CLASS} "$@"
|
146
|
+
|
@@ -0,0 +1,140 @@
|
|
1
|
+
@REM ----------------------------------------------------------------------------
|
2
|
+
@REM Vault Start Up Batch script
|
3
|
+
@REM
|
4
|
+
@REM Required ENV vars:
|
5
|
+
@REM JAVA_HOME - location of a JDK home dir
|
6
|
+
@REM
|
7
|
+
@REM Optional ENV vars
|
8
|
+
@REM VLT_HOME - location of vault's installed home dir
|
9
|
+
@REM VLT_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
|
10
|
+
@REM VLT_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending
|
11
|
+
@REM VLT_OPTS - parameters passed to the Java VM when running vlt
|
12
|
+
@REM e.g. to debug vlt itself, use
|
13
|
+
@REM set VLT_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
14
|
+
@REM ----------------------------------------------------------------------------
|
15
|
+
|
16
|
+
@REM Begin all REM lines with '@' in case VLT_BATCH_ECHO is 'on'
|
17
|
+
@echo off
|
18
|
+
@REM enable echoing my setting VLT_BATCH_ECHO to 'on'
|
19
|
+
@if "%VLT_BATCH_ECHO%" == "on" echo %VLT_BATCH_ECHO%
|
20
|
+
|
21
|
+
@REM set %HOME% to equivalent of $HOME
|
22
|
+
if "%HOME%" == "" (set HOME=%HOMEDRIVE%%HOMEPATH%)
|
23
|
+
|
24
|
+
@REM Execute a user defined script before this one
|
25
|
+
if exist "%HOME%\vltrc_pre.bat" call "%HOME%\vltrc_pre.bat"
|
26
|
+
|
27
|
+
set ERROR_CODE=0
|
28
|
+
|
29
|
+
@REM set local scope for the variables with windows NT shell
|
30
|
+
if "%OS%"=="Windows_NT" @setlocal
|
31
|
+
|
32
|
+
@REM ==== START VALIDATION ====
|
33
|
+
if not "%JAVA_HOME%" == "" goto OkJHome
|
34
|
+
|
35
|
+
echo.
|
36
|
+
echo ERROR: JAVA_HOME not found in your environment.
|
37
|
+
echo Please set the JAVA_HOME variable in your environment to match the
|
38
|
+
echo location of your Java installation
|
39
|
+
echo.
|
40
|
+
goto error
|
41
|
+
|
42
|
+
:OkJHome
|
43
|
+
if exist "%JAVA_HOME%\bin\java.exe" goto chkMHome
|
44
|
+
|
45
|
+
echo.
|
46
|
+
echo ERROR: JAVA_HOME is set to an invalid directory.
|
47
|
+
echo JAVA_HOME = %JAVA_HOME%
|
48
|
+
echo Please set the JAVA_HOME variable in your environment to match the
|
49
|
+
echo location of your Java installation
|
50
|
+
echo.
|
51
|
+
goto error
|
52
|
+
|
53
|
+
:chkMHome
|
54
|
+
if not "%VLT_HOME%"=="" goto valMHome
|
55
|
+
|
56
|
+
if "%OS%"=="Windows_NT" SET VLT_HOME=%~dp0\..
|
57
|
+
if not "%VLT_HOME%"=="" goto valMHome
|
58
|
+
|
59
|
+
echo.
|
60
|
+
echo ERROR: VLT_HOME not found in your environment.
|
61
|
+
echo Please set the VLT_HOME variable in your environment to match the
|
62
|
+
echo location of the Vault installation
|
63
|
+
echo.
|
64
|
+
goto error
|
65
|
+
|
66
|
+
:valMHome
|
67
|
+
if exist "%VLT_HOME%\bin\vlt.bat" goto init
|
68
|
+
|
69
|
+
echo.
|
70
|
+
echo ERROR: VLT_HOME is set to an invalid directory.
|
71
|
+
echo VLT_HOME = %VLT_HOME%
|
72
|
+
echo Please set the VLT_HOME variable in your environment to match the
|
73
|
+
echo location of the Vault installation
|
74
|
+
echo.
|
75
|
+
goto error
|
76
|
+
@REM ==== END VALIDATION ====
|
77
|
+
|
78
|
+
:init
|
79
|
+
@REM Decide how to startup depending on the version of windows
|
80
|
+
|
81
|
+
@REM -- Win98ME
|
82
|
+
if NOT "%OS%"=="Windows_NT" goto Win9xArg
|
83
|
+
|
84
|
+
@REM -- 4NT shell
|
85
|
+
if "%@eval[2+2]" == "4" goto 4NTArgs
|
86
|
+
|
87
|
+
@REM -- Regular WinNT shell
|
88
|
+
set VLT_CMD_LINE_ARGS=%*
|
89
|
+
goto endInit
|
90
|
+
|
91
|
+
@REM The 4NT Shell from jp software
|
92
|
+
:4NTArgs
|
93
|
+
set VLT_CMD_LINE_ARGS=%$
|
94
|
+
goto endInit
|
95
|
+
|
96
|
+
:Win9xArg
|
97
|
+
@REM Slurp the command line arguments. This loop allows for an unlimited number
|
98
|
+
@REM of agruments (up to the command line limit, anyway).
|
99
|
+
set VLT_CMD_LINE_ARGS=
|
100
|
+
:Win9xApp
|
101
|
+
if %1a==a goto endInit
|
102
|
+
set VLT_CMD_LINE_ARGS=%VLT_CMD_LINE_ARGS% %1
|
103
|
+
shift
|
104
|
+
goto Win9xApp
|
105
|
+
|
106
|
+
@REM Reaching here means variables are defined and arguments have been captured
|
107
|
+
:endInit
|
108
|
+
SET VLT_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
|
109
|
+
|
110
|
+
@REM Start Vault
|
111
|
+
:runvlt
|
112
|
+
%VLT_JAVA_EXE% -Xmx256m %VLT_OPTS% -Dlauncher.main.class=com.day.jcr.vault.cli.VaultFsApp -jar "%VLT_HOME%"\lib\launcher.jar %VLT_CMD_LINE_ARGS%
|
113
|
+
if ERRORLEVEL 1 goto error
|
114
|
+
goto end
|
115
|
+
|
116
|
+
:error
|
117
|
+
set ERROR_CODE=1
|
118
|
+
|
119
|
+
:end
|
120
|
+
@REM set local scope for the variables with windows NT shell
|
121
|
+
if "%OS%"=="Windows_NT" goto endNT
|
122
|
+
|
123
|
+
@REM For old DOS remove the set variables from ENV - we assume they were not set
|
124
|
+
@REM before we started - at least we don't leave any baggage around
|
125
|
+
set VLT_JAVA_EXE=
|
126
|
+
set VLT_CMD_LINE_ARGS=
|
127
|
+
goto postExec
|
128
|
+
|
129
|
+
:endNT
|
130
|
+
@endlocal
|
131
|
+
|
132
|
+
:postExec
|
133
|
+
if exist "%HOME%\vltrc_post.bat" call "%HOME%\vltrc_post.bat"
|
134
|
+
@REM pause the batch file if VLT_BATCH_PAUSE is set to 'on'
|
135
|
+
if "%VLT_BATCH_PAUSE%" == "on" pause
|
136
|
+
|
137
|
+
if "%VLT_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
|
138
|
+
|
139
|
+
exit /B %ERROR_CODE%
|
140
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/bin/vlt
ADDED
data/lib/vlt_wrapper.rb
ADDED
data/vlt_wrapper.gemspec
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'vlt_wrapper/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "vlt_wrapper"
|
8
|
+
spec.version = VltWrapper::VERSION
|
9
|
+
spec.authors = ["Jordan Raine"]
|
10
|
+
spec.email = ["jnraine@gmail.com"]
|
11
|
+
spec.summary = %q{Makes vlt executable available to Ruby gems.}
|
12
|
+
spec.homepage = ""
|
13
|
+
spec.license = "MIT"
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0")
|
16
|
+
spec.executables = ["vlt"]
|
17
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
|
20
|
+
spec.add_development_dependency "bundler", "~> 1.5"
|
21
|
+
spec.add_development_dependency "rake"
|
22
|
+
end
|
metadata
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: vlt_wrapper
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.4.18
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Jordan Raine
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-02-18 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.5'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.5'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
description:
|
47
|
+
email:
|
48
|
+
- jnraine@gmail.com
|
49
|
+
executables:
|
50
|
+
- vlt
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files: []
|
53
|
+
files:
|
54
|
+
- .gitignore
|
55
|
+
- Gemfile
|
56
|
+
- LICENSE.txt
|
57
|
+
- README.md
|
58
|
+
- Rakefile
|
59
|
+
- bin/vault/bin/vlt
|
60
|
+
- bin/vault/bin/vlt.bat
|
61
|
+
- bin/vault/lib/com.day.jcr.vault-2.4.18.jar
|
62
|
+
- bin/vault/lib/commons-codec-1.2.jar
|
63
|
+
- bin/vault/lib/commons-collections-3.2.1.jar
|
64
|
+
- bin/vault/lib/commons-httpclient-3.0.jar
|
65
|
+
- bin/vault/lib/commons-io-1.4.jar
|
66
|
+
- bin/vault/lib/day-commons-cli-2.0.10.jar
|
67
|
+
- bin/vault/lib/day-commons-diff-1.1.2.jar
|
68
|
+
- bin/vault/lib/jackrabbit-api-2.3.7.jar
|
69
|
+
- bin/vault/lib/jackrabbit-jcr-client-2.3.7.jar
|
70
|
+
- bin/vault/lib/jackrabbit-jcr-commons-2.3.7.jar
|
71
|
+
- bin/vault/lib/jackrabbit-jcr2spi-2.3.7.jar
|
72
|
+
- bin/vault/lib/jackrabbit-spi-2.3.7.jar
|
73
|
+
- bin/vault/lib/jackrabbit-spi-commons-2.3.7.jar
|
74
|
+
- bin/vault/lib/jackrabbit-spi2dav-2.3.7.jar
|
75
|
+
- bin/vault/lib/jackrabbit-webdav-2.3.7.jar
|
76
|
+
- bin/vault/lib/jcl-over-slf4j-1.5.8.jar
|
77
|
+
- bin/vault/lib/jcr-2.0.jar
|
78
|
+
- bin/vault/lib/jline-0.9.94.jar
|
79
|
+
- bin/vault/lib/launcher.jar
|
80
|
+
- bin/vault/lib/log4j-1.2.12.jar
|
81
|
+
- bin/vault/lib/slf4j-api-1.5.8.jar
|
82
|
+
- bin/vault/lib/slf4j-log4j12-1.5.8.jar
|
83
|
+
- bin/vault/lib/vault-cli-2.4.18.jar
|
84
|
+
- bin/vault/lib/vault-davex-2.4.18.jar
|
85
|
+
- bin/vault/lib/vault-vlt-2.4.18.jar
|
86
|
+
- bin/vlt
|
87
|
+
- lib/vlt_wrapper.rb
|
88
|
+
- lib/vlt_wrapper/version.rb
|
89
|
+
- vlt_wrapper.gemspec
|
90
|
+
homepage: ''
|
91
|
+
licenses:
|
92
|
+
- MIT
|
93
|
+
post_install_message:
|
94
|
+
rdoc_options: []
|
95
|
+
require_paths:
|
96
|
+
- lib
|
97
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
98
|
+
none: false
|
99
|
+
requirements:
|
100
|
+
- - ! '>='
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
+
none: false
|
105
|
+
requirements:
|
106
|
+
- - ! '>='
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
109
|
+
requirements: []
|
110
|
+
rubyforge_project:
|
111
|
+
rubygems_version: 1.8.23
|
112
|
+
signing_key:
|
113
|
+
specification_version: 3
|
114
|
+
summary: Makes vlt executable available to Ruby gems.
|
115
|
+
test_files: []
|
116
|
+
has_rdoc:
|