Sebastian Wramba
Sebastian Wramba
This would be interesting as I faced the same problem here. Using the `load_and_authorize_resource` in another `before_filter` does not work, as it's not a method you can call.
edit: Ah I'm sorry, mixed up this one with another issue. Of course, nested resource with shallow routing is the way to go.
@stellard Looks like a great solution, but this unfortunately does not work. I still get `Couldn't find ParentObject with id=` and an `ActiveRecord::RecordNotFound` exception, when accessing the nested resource's edit...
No, shallow is set to true for this method. The parent object should be loaded not by ID in the URL but through the nested object's reference. But it's related...
Done, see pull request here: https://github.com/typhoon-framework/Typhoon-Swift-Example/pull/3 Very optimistic since it just unwraps Optionals most of the time. Had to change the behavior of the `sequentialTheme` method. Hope it is still...
First result on Google: http://openweathermap.org/api Should I try this one out and update the Swift project? Maybe I can also do the screencast in the next days. I'm a little...
The current version works fine. Or is it using v1 API that becomes deprecated soon? Is that the reason for an API change?
I just had a similar problem. The content of the cell seems to extend the cell's `contentView`. Adding some extra pixel to the `portraitSize` worked. I just still don't understand...
Sorry for bothering you on multiple channels, @cnstoll I just found this and think GitHub is the best place to discuss this issue. For a simple master-detail view, I would...
Honestly, I'd simple use the `UIImageView` category from https://github.com/AFNetworking/AFNetworking. This is clearly a violation of layer boundaries but it is nicely abstracted and if you really don't need any custom...