elm-compiler 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/elm/compiler.rb +1 -1
- data/lib/elm/compiler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c3b619b99ad5ff48857c4062bcdea5627896d82
|
4
|
+
data.tar.gz: 02a695886391374ca47cb378f31c99a9ea668565
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84fdab3fc8742cad7bef8e73551c512a6a3e577081f1b7bc3c63772ee8afbdd83b0139b2308e924aad96f775bfe2aece41bb30d81f862e5c179ebafcd3b15583
|
7
|
+
data.tar.gz: a5aa22da7f87a4b50eec7ab5d979ed5c4aba7435bd1c0c62b7d036b178eb9df039e5e2efc105fc806dfa4c8a5e1c32adac884fb87f37cf1f93334366d0e2a501
|
data/lib/elm/compiler.rb
CHANGED
@@ -35,7 +35,7 @@ module Elm
|
|
35
35
|
|
36
36
|
def elm_make(elm_files, output_path)
|
37
37
|
Open3.popen3('elm-make', *elm_files, '--yes', '--output', output_path) do |_stdin, _stdout, stderr, wait_thr|
|
38
|
-
fail CompileError, stderr.gets if wait_thr.value.exitstatus != 0
|
38
|
+
fail CompileError, stderr.gets(nil) if wait_thr.value.exitstatus != 0
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
data/lib/elm/compiler/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elm-compiler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Frank Bonetti
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-12-
|
11
|
+
date: 2015-12-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|