inch 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 408e155eeff83178d19dfb49b012504702002e86
|
4
|
+
data.tar.gz: 0d780703f11ae384ecb4be4a96be3b64b30ae2c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b14eca931fdf3295dcdee79141f5024874e39f04422dbdc33921ea0c004eca097dbd9507f8b1925073aa60b73b9df305b18dc7b509b76025ce592ba5e5caa2bc
|
7
|
+
data.tar.gz: a77407ec1fa424c19738bf04c033ab8412c00281eff3bd8ebc0d1815b480f3ef86500fb83ad065dcc194e322b6c5ce65f8a057a080da5c941d4d2c4df289bd8b
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Inch [![Build Status](https://travis-ci.org/rrrene/inch.png)](https://travis-ci.org/rrrene/inch) [![Code Climate](https://codeclimate.com/github/rrrene/inch.
|
1
|
+
# Inch [![Build Status](https://travis-ci.org/rrrene/inch.png)](https://travis-ci.org/rrrene/inch) [![Code Climate](https://codeclimate.com/github/rrrene/inch.svg)](https://codeclimate.com/github/rrrene/inch) [![Inline docs](http://inch-ci.org/github/rrrene/inch.svg)](http://inch-ci.org/github/rrrene/inch)
|
2
2
|
|
3
3
|
`inch` gives you hints where to improve your docs. One Inch at a time.
|
4
4
|
|
@@ -57,7 +57,7 @@ module Inch
|
|
57
57
|
if read_dump_file.nil?
|
58
58
|
fail 'Elixir analysis only works with --read-from-dump.'
|
59
59
|
else
|
60
|
-
output = File.read(read_dump_file)
|
60
|
+
output = File.read(read_dump_file, :encoding => 'utf-8')
|
61
61
|
end
|
62
62
|
@parsed_objects = JSON[output]['objects']
|
63
63
|
end
|
@@ -46,7 +46,7 @@ module Inch
|
|
46
46
|
if read_dump_file.nil?
|
47
47
|
fail 'NodeJS analysis only works with --read-from-dump.'
|
48
48
|
else
|
49
|
-
output = File.read(read_dump_file)
|
49
|
+
output = File.read(read_dump_file, :encoding => 'utf-8')
|
50
50
|
end
|
51
51
|
@parsed_objects = JSON[output]['objects']
|
52
52
|
end
|
data/lib/inch/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- René Föhring
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|