Update of ruby nwrfc library to 0.0.1

I have update the gem and git repo for the new version of the nwrfc gem, which I announced recently.
Two terrible bugs fixed are:
Path to the nwrfc so/dll is fixed (pointed to my home directory!)
Iconv conversion UTF-8 <-> UTF-16LE fixed for Windows
There is a little better type support and some re-factoring of the code included.
The tests pass for me on the following Ruby platforms:
ruby 1.8.7 (2011-06-30 patchlevel 352) [i686-linux]
ruby 1.8.7 (2011-12-28 patchlevel 357) [i386-mingw32]
To update the gem, just issue (sudo) gem update nwrfc on your system.

..and did you try downloading from the Purchase tab?
If so and it still errors.. contact Apple directly for help..
http://www.apple.com/contact/

Similar Messages

  • Error on gem update sqlite3-ruby

    Hi,
    I followed the instructions on upgrading rails to 2.0.2 per http://developer.apple.com/tools/developonrailsleopard.html
    everything went fine until I tried to update sqlite3-ruby at which point I received an error installing sqlite3-ruby:
    ERROR: Failed to build gem native extension.
    /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb update sqlite3-ruby
    can't find header files for ruby.
    This update was applied following the Security Update 2008-002. Rails 1.2.6 was and is running on mongrel server on dedicated site. The gem list shows rails updated to 2.0.2 and sqlite3-ruby at 1.2.1.
    Same result after restarting server 10.5.2.
    What actions do I take now or what am I missing? Does mongrel have to come offline? Your assistance appreciated.
    Harry

    Silly me. I see a folder in the dock with an xcode icon on startup, so I thought xcode was installed. Folder changes to utilities I think after the server is up and running. Anyway, Xcode Tools has to be installed for the upgrade to sqlite3-ruby to work. The headers are located with Xcode Tools.
    I found the answer at http://trac.macosforge.org/projects/ruby/wiki/Troubleshooting.
    Following the installation of Xcode Tools to /Developer I was able to
    sudo gem update sqlite3-ruby
    and all went according to plan.
    BTW - I noticed there are a ton of items in the Xcode Tools install.
    Once again, a little systems viewpoint would help in keeping the pieces tightly wrapped.
    Hope this helps someone else,
    Harry

  • The video library is empty in iMovie on iOS after update to iCloud photo library

    I updated to iCloud photo library and all of my photos and videos are now in the cloud instead of my iDevice. When I open iMovie in iDevice, the photo/video library is empty. How can I use my videos in projects?

    iCloud photo library will be introduced as beta in an iOS 8 update scheduled for October.  Read under "Pricing & Availability" here: http://www.apple.com/pr/library/2014/09/09Apple-Announces-iOS-8-Available-Septem ber-17.html.

  • Iphoto 9.5 won't import photos from iPhoto 7.5.  Library will not update using the iPhoto library upgraded application.

    iphoto 9.5 won't import photos from iPhoto 7.5.  Library will not update using the iPhoto library upgrader application.  Repeatedly says it can't locate photos even when told to cancel.  I think the photos in question are in Nikon RAW format.

    iPhoto 9.5 immediately tries to "upgrade" my library using the upgrader.
    iPhoto 9.5 asks you to run the upgrader to prepare the library for 9.5. It then will update the library to its format.
    You need to do the following:
    1 - go to your Applications/Utilities folder and double click on the iPhoto Library Upgrader 1.1 application. 
    2 - select Choose Library, navigate to your iPhoto library, select it and let the upgrader do its thing.
    3 - launch iPhoto 9.5 to open and finish the conversion of the library.
    OT

  • My ipod touch is not getting recognised after the update in my itunes library. the library is updated. and it shows the connect to itunes sign.

    my ipod touch is not getting recognised after the update in my itunes library. i have updated my library as well. but it shows the connect to itunes sign on my ipod.

    If it happened after updating iTunes on the computer see:
    iOS: Device not recognized in iTunes for Windows
    or
    iPhone, iPad, iPod touch: Device not recognized in iTunes for Mac OS X
    If after updating the iOS on your iPod:
    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • Do I need to enable MySite or have a MySite created in order to follow content and get updates from Team Site library/Newsfeed?

    Hello, we are migrating to SharePoint 2013. In the current SharePoint 2007 implementation we have disabled MySite for several reasons. Question: Do we need to enable MySite or have a MySite created in order to follow content and get updates from Team
    Site library/Newsfeed?

    Hi,
    According to your description, my understanding is that you want to know if the MySite is needed for following content and getting updates of the followed content.
    When users follow documents, sites, or tags, status updates from documents, conversations on sites, and notifications of tag use show up in users’ newsfeed, so users need to their MySite to view the updates in Newsfeed by OOB and you need
    to migrate the MySite to SharePoint 2013.
    However, we can also use APIs to programmatically follow content, please refer to the link below:
    http://msdn.microsoft.com/en-us/library/office/jj163217(v=office.15).aspx
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • How do I update columns in a library using PowerShell during a file upload?

    I am trying to put together a script that will do a bulk upload of files along with associated metadata into a SP library. The first part of the requirement is to upload .pdf files while grabbing the metadata from the file name. Currently, my script does
    the uploads, but it it does not update the fields with the metadata it is getting from the file names. Here is what my script curently looks like
    if((Get-PSSnapin "Microsoft.SharePoint.PowerShell") -eq $null)
    Add-PSSnapin Microsoft.SharePoint.PowerShell
    #Script settings
    $webUrl = "http://llc-hdc-spfe1d:19500/sites/SampleRecordCenter/"
    $docLibraryName = "My Library"
    $docLibraryUrlName = "MyLibrary"
    $localFolderPath = get-childitem "C:\test" -recurse
    #Open web and library
    $web = Get-SPWeb $webUrl
    $docLibrary = $web.Lists[$docLibraryName]
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    ForEach($file in $files)
    if ($localFolderPath | where {$_.extension -eq ".pdf"})
    #Open file
    $fileStream = ([System.IO.FileInfo] (Get-Item $file.FullName)).OpenRead()
    # Gather the file name
    $FileName = $File.Name
    #remove file extension
    $NewName = [IO.Path]::GetFileNameWithoutExtension($FileName)
    #split the file name by the "-" character
    $FileNameArray = $NewName.split("_")
    $check = $FileNameArray.Length
    $myArray = @()
    foreach ($MetaDataString in $FileNameArray)
    #Add file
    $folder = $web.getfolder($docLibraryUrlName)
    write-host "Copying file " $file.Name " to " $folder.ServerRelativeUrl "..."
    $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stream]$fileStream, $true)
    if ($FileNameArray.Length -eq 3)
    #populate columns
    $spItem = $docLibrary.AddItem()
    $spItem["FirstColumn"] = $myArray[0]
    $spItem["SecondColumn"] = $myArray[1]
    $spItem["ThirdColumn"] = $myArray[2]
    $spItem.Update()
    elseif ($myArray.Length -eq 4)
    #populate columns
    $spItem = $docLibrary.AddItem()
    $spItem["FirstColumn"] = $myArray[0]
    $spItem["SecondColumn"] = $myArray[1]
    $spItem["ThirdColumn"] = $myArray[2]
    $spItem["FourthColumn"] = $myArray[3]
    $spItem.Update()
    #Close file stream
    $fileStream.Close();
    #Dispose web
    $web.Dispose()
    The .pdf files have the same naming convention like "first_second_third.pdf" and "first_second_third_fourth.pdf"...I want to grab each part of the file name, and put that data in the associated column in the library. Right now, am getting
    my file name and storing that information in an array, but my code isn't updating each column as I hope it will. What am I doing wrong here?
    Thanks for the help.

    Just figured out what was wrong with my logic...this does the trick.
    if ($localFolderPath | where {$_.extension -eq ".pdf"})
    $fileStream = ([System.IO.FileInfo] (Get-Item $file.FullName)).OpenRead()
    $FileName = $File.Name
    $NewName = [IO.Path]::GetFileNameWithoutExtension($FileName)
    $FileNameArray = $NewName.split("_")
    $folder = $web.getfolder($docLibraryUrlName)
    $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stream]$fileStream, $true)
    $spItem = $spFile.Item
    if ($FileNameArray.Length -eq 3)
    $spItem["FirstColumn"] = $FileNameArray[0].ToString()
    $spItem["SecondColumn"] = $FileNameArray[1].ToString()
    $spItem["ThirdColumn"] = $FileNameArray[2].ToString()
    $spItem.Update()
    elseif ($FileNameArray.Length -eq 4)
    $spItem["FirstColumn"] = $FileNameArray[0]
    $spItem["SecondColumn"] = $FileNameArray[1]
    $spItem["ThirdColumn"] = $FileNameArray[2]
    $spItem["FourthColumn"] = $FileNameArray[3]
    $spItem.Update()
    $fileStream.Close();

  • ITunes Updates Keeps Modifying the Library

    The last two iTunes updates I have allowed to run (9.1x and today, version 10) have mangled my library. The 9.1x download wiped about 2 hours of user-input cover art. The Apple cover art function is awful, to be kind. When I spend hours updating the holes and mistakes it leaves behind, I don't appreciate the next version wiping it out during the update.
    I reluctant;y put in Version 10 today. Immediately afterward, I opened my library to find that not only did this version randomly delete my cover art AGAIN, it also randomly separated my albums into multiple entries. Now I get to spend 2 to 3 hours scouring my library for the missing and wrongly assigned cover art, I also have to knit entries back into single albums.
    Who does your software QA? If I put the cover art in manually, LEAVE IT. Don't rearrange my library entries. Don't break up albums into multiple new albums. Next time you feel the need to make an iTunes upgrade, think Hippocratic, and first do no harm. AND GIVE ME A BLOCK ALL UPGRADES OPTION. I really don't need your help any more.

    SAme problem here. Did you ge tany fixes, other than manual?

  • How to share and update one iTunes master library on an external HD between an iMac and iBook

    Hi.  I am in the process of consolidating and switching gears from storing my iTunes libraries (which have roughly the same files) on both my iMac and iBook (both OS 10.7.5) to creating one master library on an external hard drive (Canvio Connect 2TB) and sharing that between both computers, updating the laptop (which I use less frequently) when necessary. I wanted to know if this is possible and if so, how to go about doing this in a way where I don't lose any data and am able to maintain it efficiently.  Thanks!

    There is a library file on the external drive that contains a list of all the tracks you have put into iTunes.  The list points to media files iTunes plays are on the external drive too.  Using the instructions I provided you tell the iTunes application on each computer to start up using the library file on the external drive.  If you add a file to iTunes while using computer #1 the file will be copied to the media folder on the external drive and the library file on the external drive will be updated to show there is a new file.  When you plug the same drive into computer #2 and start iTunes it takes the file listing from the library file on the external drive.  You are using the one library with each computer and it exists only on the external drive which both computers use.  They are truly sharing the same single copy of the  library.
    I have a box with objects inside and a list inside with an updated inventory of the objects. I give the box to you. You take some objects out and put some in and make a note in the list of what you have done, then put the list back inside and hand the box to me.  How do I know what changes you have done?  Simple.  I open the box and look at the list.  It's the same list that was in your hands only moments before.  I add a few objects and update the list, put it back inside the box and hand the box to you.  How do you know what changes have been made? Simple.  Open the box and read the list which was the one I updated moments before.  The only copy of the list is in the box so neither of us is needing to keep our own copy of the list updated.
    Everything iTunes needs to generate your library listing is in the iTunes folder, but it doesn't have to be on the computer.  In your case it will all be on the external drive and each copy of the iTunes application on each computer will look and use the same identical library file on the external drive as you pass it from computer to computer.  Once you have set this up you can delete the entire iTunes folder in Music from your computer because the application will no longer be using it.  The only thing "iTunes" left on the computer will be the application itself, but each copy will have been told to use the library on the external drive.
    Okay, enough.  I've said the same thing about 4 ways now.

  • Cannot See 'Updated' projects in iMovie Library

    Recently updated to iMovie 10.01 and then 10.02.  Originally had the Updated Projects event and the Finalized Movies Event showing in the iMovie Library, but they are no longer there.  I can 'see' them in the finder, looking at the iMovie and the show package contents....
    Is there way to get iMovie to 'see' these events again?
    PS: more info,  this orginated while I was cleaning up some of my events and clips, putting them in the trash.  I mistakenly put these in the trash, but hit the undo button and they seemed to reappear. Next opening of iMovie they were gone (but still in the finder as above).

    Try to find them in your medialibrary. iMovie folder, your library, right mouse click - &quot;open a contents package&quot;

  • Nano won't update new songs from library

    When I first connected nano, my itunes copied all my songs to the ipod very well. But if I add new song to my library, connect ipod nano to my computer, it says updating, done. But the song isn't in my nano. Whats going on? PC user.

    Have you tried Restoring iPod to factory settings with the Latest iPod Updater?

  • IPhoto update deleted my photo library

    Recently i was asked to update iPhoto to 9.5.1 by software update. I unfortunately did so. When I try to open iPhoto now there is an error message that says that I do not have access rights to my iPhoto library. I cannot find the library anymore and it seems that the library was deleted. Cmd + alt does not help. 15.000 photos are gone. Thank you for this great update!
    Is there any help?

    I found a solution: Instead of cmd + alt, I just tried to create a new library by starting iPhoto holding the alt-key. A dialog opened that gave as one option "open other library". I searched for my library and saw that it was in a hidden folder (no idea why this folder is hidden). I selected the library. Then the program sad that the library has to be updated and that I will not be able to use it with former iPhoto versions. Then the update bar appeared and after a while all my pictures appeared again. Yeahhhh.
    But now, I will do frequent backups that I didi not in the past!!!

  • Aperture 3 failing to update your Aperture 2 library?  Please read!

    Hello all,
    This is for those who are not running the trial version - the trial version CANNOT upgrade an existing library.
    Like many others here I ran into a snag when upgrading my Aperture 2 library with Aperture 3. I kept getting "Warning: Update Failed" box immediately after choosing to upgrade the library for the new features in A3 (I tried with the box checked and unchecked). I rebuilt and did a permissions fix using A2 (holding down Option + Command while launching A2) but still no avail. I checked the library file itself to see if I (username for my OS X account) had read & write privileges - I did. I even tried to re-install A3 to see if that would fix anything - it didn't.
    I keep my library on an external hard drive in a folder called "pictures". Within this folder are both my Aperture and iPhoto libraries. I then thought to check to see if I (username for my OS X account) had read & write privileges for the "pictures" folder and was partially relieved to see that I didn't. I changed that and A3 started the update/upgrading procedures.
    So, if anyone else out there is experiencing this same problem check to make sure you have read & write privileges along the entire path to your Aperture library.
    Please note, me not having these privileges on my "pictures" folder did not affect A2 in any way (I could launch my library without any issues), just A3.
    Cheers.

    Quit Aperture and double-click the library you want upgraded. Aperture will open and upgrade it. Once you've upgraded it you can import it into your other library.

  • Updated iTunes and my library is gone now...

    I updated my iTunes on my iMac to the 10.3.1 version.  When I went to reuse it again after rebooting, I noticed my desk top was wiped clean and placed into a folder called "Desktop" in my HD.
    Then when I went to open iTunes, it opened as if I had never had iTunes installed on my comp before.  My music was wiped out, playlists gone, etc..  I found my music on my HD, however I could not get iTunes to load up with my personal information.  What did I do wrong?  Or what can I do to get my iTunes back to what it was (with playlists, play counts, music, album art, etc.) 
    **I think I made a mistake by dragging my music from  my HD into iTunes...**
    I also noticed that my desktop was restored with my files and folders again when I rebooting my computer for the second time...and these items were no longer placed in a "Desktop" folder on the HD. 
    Not sure what's going on with that iTunes update.
    I also have a Time Machine...so if need be I can restore my computer back to what it was before I updated iTunes, right?  And if I do...how do I prevent this whole issue from happening again when I update iTunes?
    Thanks so much for your time everyone...hope someone can help!

    Sounds like Itunes lost your Library file right after update for some reason. You should not have copied the music again. Quit Itunes, In finder go to where your music is stored and drag the Itunes library file from there to the desktop. In the Itunes Folder, open the Previous Music library sub -folder and see the library file w/the date of when you upgraded Itunes (not the one where you dragged the music back in). Drag this file from this inside folder to the Itunes Folder and name it Itunes Library. Now open Itunes and it should be all there.If  it it did not help, may yyou used the wrong "previous library file" You could check your library files to find the one you need--Quit Itunes and launch it while holding Option button, click on Choose library and navigate to the Music/Itunes folder and go inside the Previous Music and try one of those library files to see if they have your staff as you remember it. If you find the correct one, you would need to switch your Itunes Library file w/the one you found (drage the original out of there and then put the one you found in its place adn name it Itunes library) and then switch Itunes library back to it.

  • Updating iTunes damaged my library file

    I left iTunes to update, and after restarting my computer, I got a message that popped up saying that the library file had been damaged.
    The only advice I got came from this article:
    http://support.apple.com/kb/TS1967
    ...which says to revert back to an older backed up library. Unfortunately, the latest library I have comes from November of last year. If someone knows how I can restore a more recent version of my library from say... last week, please say.
    If I can't do that, I'd rather just have iTunes scan and add my music over again, losing whatever song ratings/playlists I have. (I'm not sure how to do that either, thank you.)
    I still have all of the damaged files in my recycle bin, as well as an iPod which is synced with the ideal library, if there is a way to make use of those.

    Thanks, but recreating the library from the xml file didn't really do it either. I looked into CopyTrans, but I'm not sure I want to pay 20$ for something I'll only end up using once. I might just delete the entire library and then start re-adding everything, assuming I'll be able to access my purchases again.
    I thought that iTunes had an option that scans and adds all of the music on your computer automatically. Does that exist or do I need to add my albums one by one?
    Also, can someone tell me how to authorize the library to have access to my purchases so that I don't have to rebuy them?

Maybe you are looking for