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 +4 -4
- data/CHANGELOG.md +7 -3
- data/Gemfile.lock +2 -2
- data/lib/referee/renderables/viewcontroller.rb +1 -1
- data/lib/referee/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 55b08fe096ee8770355d5567eafd1591669e7bda
|
|
4
|
+
data.tar.gz: 39abbccfb1d5e13cb429c52980f395f57b088efa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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/
|
|
21
|
-
[0.2.0]: https://github.com/
|
|
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.
|
|
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.
|
|
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: \"#{@
|
|
27
|
+
body = "UIStoryboard(name: \"#{@storyboard}\", bundle: #{bundle})." \
|
|
28
28
|
"instantiateViewControllerWithIdentifier(\"#{@name}\")"
|
|
29
29
|
simple_swift_method @name, body
|
|
30
30
|
end
|
data/lib/referee/version.rb
CHANGED