objc-referee 0.2.0 → 0.2.1

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: f60008ff9e0157920cdbf6c4404e6414e56893a8
4
- data.tar.gz: cde3171f49c6a231cb1df75c098fe3672151c016
3
+ metadata.gz: 55b08fe096ee8770355d5567eafd1591669e7bda
4
+ data.tar.gz: 39abbccfb1d5e13cb429c52980f395f57b088efa
5
5
  SHA512:
6
- metadata.gz: 52d9458d5bc961f6d7aebcdb5dd5e90f81b1fd93cd45b64a8cb6f4f31240df2b92cbcdd7cbde8db1792bd77e026323df646aa0c2ed2c394103b1890070b3d30b
7
- data.tar.gz: 5361f120a1d0acd261a9011b856696f66b963490febcffcf86b4e30f8b4a77d146a763b05d505640fc9e4187d3bc60c8ea427b2928f93ccb88f8918877e8c37c
6
+ metadata.gz: 2b2f483cebf3f2834e12ebdc3f705798758d8c22514e209c07b63e173e1cff8f4f5fba4169190c8711576b4cf224bcc1bf34129888858ef6da7eae63053cd6ee
7
+ data.tar.gz: ec060e4c599c19c64f9d250ce8f6cf4b97c465274897bbdec311e34bc7b6754f8961c014b893f433fad511fdcf273b106cf0cc02fadff734eff8cd2d255dcf55
data/CHANGELOG.md CHANGED
@@ -5,7 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/) and this file
5
5
  ## [Unreleased][unreleased]
6
6
  Coming soon.
7
7
 
8
- ## [0.2.0] - 2015-09-02
8
+ ## [0.2.1] - 2015-11-04
9
+ ### Added
10
+ - Immediate rollout bug fix for typo in Swift language `UIViewController` implementation.
11
+
12
+ ## [0.2.0] - 2015-11-04
9
13
  ### Added
10
14
  - Ensures Gemspec has a minimum Ruby version. Choosing 2.x, as this is default on Yosemite machines.
11
15
  - Adds in Swift code generation via `--language swift`. To keep compatibility with older versions, the default is still `objc`. Swift code generation will output a file `Resources.swift`.
@@ -17,6 +21,6 @@ Coming soon.
17
21
  ## [0.1.1] - 2015-09-02
18
22
  Initial public release.
19
23
 
20
- [unreleased]: https://github.com/dynamit/referee/compare/0.2.0...HEAD
21
- [0.2.0]: https://github.com/dynamit/referee/compare/0.2.0...HEAD
24
+ [unreleased]: https://github.com/dynamit/referee/compare/v0.2.0...HEAD
25
+ [0.2.0]: https://github.com/Dynamit/referee/tree/v0.2.0
22
26
  [0.1.1]: https://github.com/Dynamit/referee/tree/0.1.1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- objc-referee (0.1.1)
4
+ objc-referee (0.2.0)
5
5
  mustache (~> 1.0, >= 1.0.2)
6
6
  nokogiri (~> 1.6, >= 1.6.6.2)
7
7
  xcodeproj (~> 0.20.1)
@@ -24,7 +24,7 @@ GEM
24
24
  json (1.8.3)
25
25
  method_source (0.8.2)
26
26
  mini_portile (0.6.2)
27
- minitest (5.8.0)
27
+ minitest (5.8.2)
28
28
  mustache (1.0.2)
29
29
  nokogiri (1.6.6.2)
30
30
  mini_portile (~> 0.6.0)
@@ -24,7 +24,7 @@ module Referee
24
24
 
25
25
  def swift_implementation
26
26
  bundle = swift_bundle_accessor(@config.bundle_id)
27
- body = "UIStoryboard(name: \"#{@name}\", bundle: #{bundle})." \
27
+ body = "UIStoryboard(name: \"#{@storyboard}\", bundle: #{bundle})." \
28
28
  "instantiateViewControllerWithIdentifier(\"#{@name}\")"
29
29
  simple_swift_method @name, body
30
30
  end
@@ -1,4 +1,4 @@
1
1
  # Version information.
2
2
  module Referee
3
- VERSION = '0.2.0'
3
+ VERSION = '0.2.1'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: objc-referee
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Colin Drake