jazzy 0.1.3 → 0.1.4

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: f2baa2074d45fd8acf5c3a9afcaf52f9f4614608
4
- data.tar.gz: 57e138cb29858db55c158aa6006114f9f09a2fa2
3
+ metadata.gz: 5b83f8dc3227f45a0f4156e140265c8445b8d7eb
4
+ data.tar.gz: 61edb7324ec5883e3f022759210ec2ede2b029c7
5
5
  SHA512:
6
- metadata.gz: d14e639dda30299184b75472b051bba215675390e7f99b302de680987bf7dbfc2a8f324148f38ad1b22fd272e17cdc447bcdcc5d39c4ff5d8b804a051103139c
7
- data.tar.gz: 7540ba48abfb300b5787b96afc56350c0a79e7434cb194cc47a9aeb2694143b06640db746d2c208c835f528bd833da115fc8ce5b04590ae68ea826785d831166
6
+ metadata.gz: 61ae7e0e7849c72777099b4956d5cf5451e4d672bdd5e04d0e292ced2a9f17d83952f97905ecba2c1dadaa50795cc1d5037251237e2a40fd37d1743723561e48
7
+ data.tar.gz: 73e8bd30e2ee9d8c67cf997ca56cf52363420d97c8113484afad862fab4dc0b4defe755112377dc703e2a56dda61d2905c99685415babc80ba9490abb13eff65
@@ -1,3 +1,20 @@
1
+ ## 0.1.4
2
+
3
+ ##### Breaking
4
+
5
+ * None.
6
+
7
+ ##### Enhancements
8
+
9
+ * None.
10
+
11
+ ##### Bug Fixes
12
+
13
+ * No longer count undocumented externally declared tokens as undocumented.
14
+ [JP Simard](https://github.com/jpsim)
15
+ [#188](https://github.com/realm/jazzy/issues/188)
16
+
17
+
1
18
  ## 0.1.3
2
19
 
3
20
  ##### Breaking
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jazzy (0.1.3)
4
+ jazzy (0.1.4)
5
5
  activesupport (~> 4.1)
6
6
  cocoapods (~> 0.36.0.rc.1)
7
7
  mustache (~> 0.99)
@@ -1,3 +1,3 @@
1
1
  module Jazzy
2
- VERSION = '0.1.3' unless defined? Jazzy::VERSION
2
+ VERSION = '0.1.4' unless defined? Jazzy::VERSION
3
3
  end
@@ -114,7 +114,7 @@ module Jazzy
114
114
  def self.process_undocumented_token(doc, declaration)
115
115
  source_directory = Config.instance.source_directory.to_s
116
116
  filepath = doc['key.filepath']
117
- if !filepath || filepath.start_with?(source_directory)
117
+ if filepath && filepath.start_with?(source_directory)
118
118
  @undocumented_tokens << doc
119
119
  end
120
120
  return nil if !documented_child?(doc) && @skip_undocumented
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jazzy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - JP Simard