simple-xspec-wrapper 0.1.0-java → 0.2.0-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 +4 -4
- data/README.md +4 -2
- data/exe/{xspec → simple-xspec} +0 -0
- data/lib/xspec/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66222723675d80eb099870c09b2b2df882d9d8fef4f45e2e20b553fa43ea5e1e
|
|
4
|
+
data.tar.gz: d0a33c5a434dd037940a7c1dac8da100772fa6ad1054aba1826425ec7172c270
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6489af713bb3893bb7014c04dd405a476dbee7f65d5bc946604db06035a661f06050ee32d224b2b78d3df5a7705da25e73e32047667993515c3712b5a09ea0e9
|
|
7
|
+
data.tar.gz: 5a896e62ac085d83bf98c76c1bbcfc29a8bef3e42b88614b82b6b22f9e82c6405defa7cd3dda47fd76e87026a60d1cf1a4bc8f28b756c651f717ae744dcf7181
|
data/README.md
CHANGED
|
@@ -22,13 +22,15 @@ Or install it yourself as:
|
|
|
22
22
|
|
|
23
23
|
## Usage
|
|
24
24
|
|
|
25
|
-
$ xspec /path/to/xspec
|
|
25
|
+
$ simple-xspec /path/to/xspec
|
|
26
26
|
|
|
27
27
|
It will run all `.xspec` files under the path you passed in.
|
|
28
28
|
|
|
29
29
|
If you use Saxon PE or EE, then drop run the command from the directory your `saxon-license.lic` file is in and it'll pick that up and look in the `$SAXON_HOME` environment variable to find your copy of Saxon PE/EE (defaulting to `/opt/saxon` if that isn't set).
|
|
30
30
|
|
|
31
|
-
$ SAXON_HOME=/path/to/saxon_dir xspec /path/to/specs
|
|
31
|
+
$ SAXON_HOME=/path/to/saxon_dir simple-xspec /path/to/specs
|
|
32
|
+
|
|
33
|
+
Each `.xspec` file is run independently - as a separate XSLT transformation. This means that a runtime error in one file won't prevent others from running.
|
|
32
34
|
|
|
33
35
|
## Development
|
|
34
36
|
|
data/exe/{xspec → simple-xspec}
RENAMED
|
File without changes
|
data/lib/xspec/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple-xspec-wrapper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Patterson
|
|
@@ -70,7 +70,7 @@ description:
|
|
|
70
70
|
email:
|
|
71
71
|
- matt@reprocessed.org
|
|
72
72
|
executables:
|
|
73
|
-
- xspec
|
|
73
|
+
- simple-xspec
|
|
74
74
|
extensions: []
|
|
75
75
|
extra_rdoc_files: []
|
|
76
76
|
files:
|
|
@@ -86,7 +86,7 @@ files:
|
|
|
86
86
|
- Rakefile
|
|
87
87
|
- bin/console
|
|
88
88
|
- bin/setup
|
|
89
|
-
- exe/xspec
|
|
89
|
+
- exe/simple-xspec
|
|
90
90
|
- lib/xspec.rb
|
|
91
91
|
- lib/xspec/version.rb
|
|
92
92
|
- simple-xspec-wrapper.gemspec
|