epubcheck-ruby 4.0.2 → 4.0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -0
- data/Rakefile +9 -1
- data/epubcheck-ruby.gemspec +1 -0
- data/exe/epubcheck +1 -0
- data/lib/epubcheck/ruby/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3495c17263a904b3601c8b19e2c3fa2ca4785a5
|
4
|
+
data.tar.gz: 2596caff1ebfcc9b10c2120099ef62d3e013d4b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8521a89d11d356cfd1325cfca16ae0ee1ee54f0bf4e0284a6b04d0f5cab212e33c9cf65c8e636c7671c4d4023032aa76798d6e61bc6b4190de6dde512bacf782
|
7
|
+
data.tar.gz: f894644579cc5e610d3deb07a54283fae9d8c28ca884b216b141d3eb3f56f813d5953ef3fcf310e1203bb6a98b5b5590aa9f0d87ce4dc4e832a36b109be5d2a1
|
data/README.md
CHANGED
@@ -31,6 +31,17 @@ After checking out the repo, run `bin/setup` to install dependencies. You can al
|
|
31
31
|
|
32
32
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
33
33
|
|
34
|
+
## History
|
35
|
+
|
36
|
+
### v4.0.2.1
|
37
|
+
|
38
|
+
* exit with original epubcheck command status (thx @hanachin)
|
39
|
+
* add tests with test-unit
|
40
|
+
|
41
|
+
### v4.0.2
|
42
|
+
|
43
|
+
* initial release
|
44
|
+
|
34
45
|
## Contributing
|
35
46
|
|
36
47
|
Bug reports and pull requests are welcome on GitHub at https://github.com/takahashim/epubcheck-ruby.
|
data/Rakefile
CHANGED
data/epubcheck-ruby.gemspec
CHANGED
data/exe/epubcheck
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: epubcheck-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.2
|
4
|
+
version: 4.0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- takahashim
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-03-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: test-unit
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
41
55
|
description: wrapper command of epubcheck (IDPF)
|
42
56
|
email:
|
43
57
|
- takahashimm@gmail.com
|