This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Undefined symbols for architecture i386: | |
| "_kRNCryptorAES256Settings", referenced from: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| form1 = Formotion::Form.new({ | |
| sections: [{ | |
| title: "Section 1", | |
| key: :section_one, | |
| select_one: true, | |
| rows: [{ | |
| title: "First", | |
| key: :first, | |
| type: :check | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| it "does something" do | |
| @forms.each { |x| f.submit } | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @interface Car | |
| @property(nonatomic, strong) Engine *engine; | |
| @property(nonatomic, strong) Car *car; | |
| @end | |
| @implementation Car | |
| objection_requires(@"car", @"engine") | |
| @synthesize car, engine; | |
| - (void)awakeFromObjection { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Car | |
| include Objection::Compose | |
| compose_with :engine, :brakes | |
| awoken do | |
| App::alert("Awake!") | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| typedef struct JSObjectionPropertyInfo { | |
| __unsafe_unretained id value; | |
| JSObjectionType type; | |
| } JSObjectionPropertyInfo; | |
| @protocol JSObjectionPropertyReflector <NSObject> | |
| - (JSObjectionPropertyInfo)propertyForClass:(Class)theClass andProperty:(NSString *)propertyName; | |
| @end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Program received signal EXC_BAD_ACCESS, Could not access memory. | |
| Reason: KERN_INVALID_ADDRESS at address: 0x706f7274 | |
| 0x3ac44464 in _class_getSuperclass () | |
| (gdb) bt | |
| #0 0x3ac44464 in _class_getSuperclass () | |
| #1 0x005de962 in rb_objc_convert_immediate () | |
| #2 0x002b7d68 in vm_ocval_to_rval () | |
| #3 0x002ba7f0 in __unnamed_1 () | |
| #4 0x002ba7f0 in __unnamed_1 () | |
| #5 0x000a7cb2 in +[JSObjection propertyForClass:andProperty:] (self=0x706f7270, _cmd=<value temporarily unavailable, due to optimizations>, theClass=0x1f9cc7f0, propertyName=0x1f9cd8d0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MBProgressHUD | |
| def rac_command=(command) | |
| self.rac_liftSelector "hud_visible=:", withObjects: rac(command).executing.startWith(command.isExecuting).boolean | |
| end | |
| def hud_visible=(visible) | |
| if visible | |
| self.show true | |
| else | |
| self.hide true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source "https://rubygems.org" | |
| group :test, :development do | |
| gem 'rake' | |
| end | |
| gem 'bubble-wrap' | |
| gem 'teacup' | |
| gem 'motion-cocoapods' | |
| gem 'motion-objection' |