jazzy 0.0.12 → 0.0.13

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e3589f099d7d31f66af15e52f7fd2cdc99d229a3
4
- data.tar.gz: 28f687107e210d26145bfcaae14411cb8d3647d0
3
+ metadata.gz: a743a1183b2ea0e4e08000c6bec4e7dc31550320
4
+ data.tar.gz: 963b1c2d42300f2e7014569e7e11eaf9b6211745
5
5
  SHA512:
6
- metadata.gz: 9e0ec8db07970f373a3a0b7b629a802387b490814e80a4cdca13ebba3233afcc0b80ace8cd83870c914c69d9c234f56a79810f6e3c6d25408ffb02ad3f8ad904
7
- data.tar.gz: da6f296f57fd3078b8737b6b7039304f0706605abf5645fb23a9556db0d3c446549e620550d4df888a95c644b8fd19c9839a796874ed6d75fbf4f4d1bf705f53
6
+ metadata.gz: c0f647e4bb2bcee1ce46463f3d73a1df6b09f62ef752a9fa10ef36b665e2a53a68fee1e7b41acd5bc07bd147c0274882213b97d6bdff1ee9bbd1acc1e3ba105d
7
+ data.tar.gz: 8eacf77a65ffa52f47e40ca0a9e5970cfae1ff78431ceedf97393c70f643e4bdb2deb9a67dbc3a61e899902bbd0473983fde823c4a9b523cb88d6a91d363d367
@@ -1,16 +1,24 @@
1
1
  # This configuration was generated by `rubocop --auto-gen-config`
2
- # on 2014-10-27 13:52:00 -0700 using RuboCop version 0.26.1.
2
+ # on 2014-11-07 20:38:01 -0800 using RuboCop version 0.26.1.
3
3
  # The point is for the user to remove these configuration records
4
4
  # one by one as the offenses are removed from the code base.
5
5
  # Note that changes in the inspected code, or installation of new
6
6
  # versions of RuboCop, may require this file to be generated again.
7
7
 
8
- # Offense count: 19
8
+ # Offense count: 2
9
+ Metrics/CyclomaticComplexity:
10
+ Max: 9
11
+
12
+ # Offense count: 22
9
13
  # Configuration parameters: AllowURI, URISchemes.
10
14
  Metrics/LineLength:
11
15
  Max: 151
12
16
 
13
- # Offense count: 7
17
+ # Offense count: 5
14
18
  # Configuration parameters: CountComments.
15
19
  Metrics/MethodLength:
16
- Max: 50
20
+ Max: 56
21
+
22
+ # Offense count: 2
23
+ Metrics/PerceivedComplexity:
24
+ Max: 9
@@ -1,6 +1,12 @@
1
- os:
2
- - osx
3
- language: ruby
1
+ language: objective-c
2
+ osx_image: xcode61
4
3
  cache: bundler
5
4
  rvm:
6
5
  - system
6
+
7
+ before_install:
8
+ - sudo gem install bundler
9
+
10
+ script:
11
+ - bundle exec rake spec
12
+
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jazzy (0.0.12)
4
+ jazzy (0.0.13)
5
5
  activesupport (~> 4.1)
6
6
  mustache (~> 0.99)
7
7
  nokogiri (~> 1.6)
@@ -10,7 +10,7 @@ PATH
10
10
  GEM
11
11
  remote: http://rubygems.org/
12
12
  specs:
13
- activesupport (4.1.6)
13
+ activesupport (4.1.7)
14
14
  i18n (~> 0.6, >= 0.6.9)
15
15
  json (~> 1.7, >= 1.7.7)
16
16
  minitest (~> 5.1)
@@ -31,15 +31,15 @@ GEM
31
31
  i18n (0.6.9)
32
32
  json (1.8.1)
33
33
  metaclass (0.0.4)
34
- mini_portile (0.6.0)
34
+ mini_portile (0.6.1)
35
35
  minitest (5.4.2)
36
36
  mocha (1.1.0)
37
37
  metaclass (~> 0.0.1)
38
38
  mocha-on-bacon (0.2.2)
39
39
  mocha (>= 0.13.0)
40
40
  mustache (0.99.7)
41
- nokogiri (1.6.3.1)
42
- mini_portile (= 0.6.0)
41
+ nokogiri (1.6.4)
42
+ mini_portile (~> 0.6.0)
43
43
  parser (2.2.0.pre.5)
44
44
  ast (>= 1.1, < 3.0)
45
45
  slop (~> 3.4, >= 3.4.5)
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
  **a soulful way to generate docs for Swift & Objective-C**
3
3
  ![analytics](https://ga-beacon.appspot.com/UA-50247013-2/jazzy/README?pixel)
4
4
 
5
+ ![Test Status](https://travis-ci.org/realm/jazzy.svg?branch=master)
6
+
5
7
  jazzy is a command-line utility that generates documentation for your Swift or
6
8
  Objective-C projects.
7
9
 
Binary file
@@ -24,4 +24,6 @@ Gem::Specification.new do |spec|
24
24
 
25
25
  spec.add_development_dependency 'bundler', '~> 1.7'
26
26
  spec.add_development_dependency 'rake', '~> 10.3'
27
+
28
+ spec.required_ruby_version = '>= 2.0.0'
27
29
  end
@@ -1,3 +1,3 @@
1
1
  module Jazzy
2
- VERSION = '0.0.12' unless defined? Jazzy::VERSION
2
+ VERSION = '0.0.13' unless defined? Jazzy::VERSION
3
3
  end
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.0.12
4
+ version: 0.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - JP Simard
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-11-02 00:00:00.000000000 Z
13
+ date: 2014-11-08 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: mustache
@@ -205,7 +205,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
205
205
  requirements:
206
206
  - - ">="
207
207
  - !ruby/object:Gem::Version
208
- version: '0'
208
+ version: 2.0.0
209
209
  required_rubygems_version: !ruby/object:Gem::Requirement
210
210
  requirements:
211
211
  - - ">="