I hereby claim:
- I am henneonrails on github.
- I am holger (https://keybase.io/holger) on keybase.
- I have a public key ASBmRJf_kD6e16yJxT5Va_Kd2wAVwq3RNe3Mkri5QLgfvAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| -(IBAction)Actions:(UIBarButtonItem*)sender | |
| { | |
| if ([activityPopover isPopoverVisible] == YES) | |
| { | |
| [activityPopover dismissPopoverAnimated:YES]; | |
| return; | |
| } | |
| UIActivityViewController *sharing = [[UIActivityViewController alloc] initWithActivityItems:[NSArray arrayWithObject:currentURL] applicationActivities:@[bookmarkActivity]]; |
| @interface NSManagedObject (Serialization) | |
| - (NSDictionary*) toDictionary; | |
| - (void) populateFromDictionary:(NSDictionary*)dict; | |
| + (NSManagedObject*) createManagedObjectFromDictionary:(NSDictionary*)dict | |
| inContext:(NSManagedObjectContext*)context; | |
| @end |
| desc "copy dot files for deployment" | |
| task :copydot do | |
| exclusions = [".", "..", ".DS_Store"] | |
| Dir["#{source_dir}/**/.*"].each do |file| | |
| if (!File.directory?(file) && exclusions.include?(file)) | |
| cp(file, file.gsub(/#{source_dir}/, "#{public_dir}")); | |
| end | |
| end | |
| end |