emconvert 1.0.1 → 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.
- checksums.yaml +4 -4
- data/Gemfile +0 -1
- data/Gemfile.lock +1 -3
- data/bin/emconvert +2 -4
- data/lib/emconvert/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9c9783eb9cf0d13afca5ce13415bec6d4ac0109
|
4
|
+
data.tar.gz: f467e3ca655d9333865ce7e85fa440d3ac093f48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8a90dd3d6928ae479d41849ed7d3189d6cd0424ca724f54f72d4632759c9a7df71581a17c422096d406aed254deb64eaf87240358e0d1509c1e44f214071643
|
7
|
+
data.tar.gz: 93b84e142164b3b820aafbd20194f1d7d4b5e6cb0c5614f175db2a480f16a8d22755b30043b36a6a6408dcbd4944b7ea0b7e2df6802f04a08a64265b0649615a
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,12 +1,11 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
emconvert (1.0.
|
4
|
+
emconvert (1.0.2)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
byebug (6.0.2)
|
10
9
|
rake (10.4.2)
|
11
10
|
|
12
11
|
PLATFORMS
|
@@ -14,6 +13,5 @@ PLATFORMS
|
|
14
13
|
|
15
14
|
DEPENDENCIES
|
16
15
|
bundler (~> 1.9)
|
17
|
-
byebug
|
18
16
|
emconvert!
|
19
17
|
rake (~> 10.0)
|
data/bin/emconvert
CHANGED
@@ -25,11 +25,9 @@ end
|
|
25
25
|
|
26
26
|
|
27
27
|
parser.parse!
|
28
|
-
|
29
|
-
raise "Need to specify a set of files to process" unless filename
|
30
|
-
files = Dir.glob(filename)
|
28
|
+
raise "Need to specify a set of files to process" unless ARGV.length >= 1
|
31
29
|
|
32
|
-
|
30
|
+
ARGV.each do |file|
|
33
31
|
content = File.read(file)
|
34
32
|
puts "Checking file #{file}..." if options[:verbose]
|
35
33
|
converter = Converter.new(content)
|
data/lib/emconvert/version.rb
CHANGED