pptxt 0.2.4 → 0.2.5
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/bin/pptxt +1 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9094d1beceb39792aa47ec1c66d936e6a183284b
|
|
4
|
+
data.tar.gz: 6ad4dbc734f1d2a6f5819a7a1a17590583aadc07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bae0e59541f0ce05895dbb03c3058a44954cd3b03cca63c06d98cd82e84bc5f43bf936c2d1388173554281db25bd6480a6a970dd36697224dc7f555dcd65a8cd
|
|
7
|
+
data.tar.gz: 5e1a79703ec7ea72d86f96966c2aaeb796ec53146c9a3a795969e7711f2161697dae4d53fae0c6a6b1ded27319a8b03ec64a6b500fcb389df6ec6e970d541872
|
data/bin/pptxt
CHANGED
|
@@ -12,7 +12,6 @@ class PPtxtExit
|
|
|
12
12
|
MISSING_ARGUMENT = 3
|
|
13
13
|
EXTRA_ARGUMENTS = 4
|
|
14
14
|
FILE_DOES_NOT_EXIST = 5
|
|
15
|
-
MISSING_UTILITY = 6
|
|
16
15
|
end
|
|
17
16
|
|
|
18
17
|
def parse(args)
|
|
@@ -23,7 +22,7 @@ def parse(args)
|
|
|
23
22
|
options["slideshow"] = false
|
|
24
23
|
|
|
25
24
|
parser = OptionParser.new do |opts|
|
|
26
|
-
opts.banner = "Usage: #{File.basename($0)} [OPTIONS]
|
|
25
|
+
opts.banner = "Usage: #{File.basename($0)} [OPTIONS] <pptx>"
|
|
27
26
|
|
|
28
27
|
opts.on(
|
|
29
28
|
"-c",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pptxt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Miles Whittaker
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-02-
|
|
11
|
+
date: 2016-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: minitest
|
|
@@ -39,7 +39,7 @@ dependencies:
|
|
|
39
39
|
version: '0.1'
|
|
40
40
|
- - ">="
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.1.
|
|
42
|
+
version: 0.1.2
|
|
43
43
|
type: :runtime
|
|
44
44
|
prerelease: false
|
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -49,7 +49,7 @@ dependencies:
|
|
|
49
49
|
version: '0.1'
|
|
50
50
|
- - ">="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
|
-
version: 0.1.
|
|
52
|
+
version: 0.1.2
|
|
53
53
|
description: This gem can extract the xml info from a pptx file and convert it to
|
|
54
54
|
human-readable text. It was intended to be used with git for seeing changes between
|
|
55
55
|
revisions.
|