jpreg 0.1 → 0.2
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/Rakefile +1 -1
- data/bin/jpreg +1 -5
- data/jpreg.gemspec +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
data/bin/jpreg
CHANGED
|
@@ -13,13 +13,9 @@ options = {
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
parser = OptionParser.new do |opts|
|
|
16
|
-
opts.version = "0.
|
|
16
|
+
opts.version = "0.2"
|
|
17
17
|
opts.banner = "Usage: jpreg [-h] [-o /path/to/output] [-q] [-v] FILE"
|
|
18
18
|
|
|
19
|
-
opts.separator ""
|
|
20
|
-
opts.separator " FILES can be listed out, like `file1.jpg file2.jpg`, or it"
|
|
21
|
-
opts.separator " can be a normal shell glob, like `*.jpg`."
|
|
22
|
-
|
|
23
19
|
opts.separator ""
|
|
24
20
|
opts.separator "Options:"
|
|
25
21
|
|
data/jpreg.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
## If your rubyforge_project name is different, then edit it and comment out
|
|
14
14
|
## the sub! line in the Rakefile
|
|
15
15
|
s.name = 'jpreg'
|
|
16
|
-
s.version = '0.
|
|
16
|
+
s.version = '0.2'
|
|
17
17
|
s.date = '2013-04-16'
|
|
18
18
|
# s.rubyforge_project = 'jpreg'
|
|
19
19
|
|