Hi all, Does anyone has instructions on how to install the Hpricot port to .net called IronRuby-hpricot? https://github.com/nrk/ironruby-hpricot is the git, the download link is: http://github.com/nrk/ironruby-hpricot/downloads I get it, but I don''t know how to install or copy the files in the specific directories in order to be used as a gem... Thank you in advance Eduardo -- Posted via http://www.ruby-forum.com/.
On Fri, Dec 3, 2010 at 02:32, Eduardo Blumenfeld <lists at ruby-forum.com> wrote:> Does anyone has instructions on how to install > the Hpricot port to .net called IronRuby-hpricot?You should just copy the contents of the directory from one of those compressed file (e.g. everything contained inside the ironruby-hpricot_v0.8.1_dotnet4.0-bin/ directory from ironruby-hpricot_v0.8.1_dotnet4.0-bin.zip) into a path where IronRuby looks for libraries.> I get it, but I don''t know how to install or copy > the files in the specific directories in order to > be used as a gem...Unfortunately I haven''t yet bundled the library into a gem file, and I still need to find the time to test if it still works with the latest release of IronRuby (1.1.1) or the current master branch on Git :-( -- Daniele Alessandri http://clorophilla.net/ http://twitter.com/JoL1hAHN
Hi Daniele, Thank you for the quick response, Unfortunately it is not workin with the version 1.1 of IronRuby, It seems to me that the problem has to do with a hard-coded reference to the 1.0 libraries in IronRuby.Hpricot.csproj : <ItemGroup> <Reference Include="IronRuby, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\deps\IronRuby.dll</HintPath> </Reference> <Reference Include="IronRuby.Libraries, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\deps\IronRuby.Libraries.dll</HintPath> </Reference> <Reference Include="Microsoft.Dynamic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\deps\Microsoft.Dynamic.dll</HintPath> </Reference> <Reference Include="Microsoft.Scripting, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\deps\Microsoft.Scripting.dll</HintPath> </Reference> <Reference Include="Microsoft.Scripting.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\deps\Microsoft.Scripting.Core.dll</HintPath> </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Xml" /> </ItemGroup> Unfortunately I don''t know too much about git and how to branch, compile and contribute. Thank you anyways. Eduardo Daniele Alessandri wrote in post #965909:> On Fri, Dec 3, 2010 at 02:32, Eduardo Blumenfeld <lists at ruby-forum.com> > wrote: > >> Does anyone has instructions on how to install >> the Hpricot port to .net called IronRuby-hpricot? > > You should just copy the contents of the directory from one of those > compressed file (e.g. everything contained inside the > ironruby-hpricot_v0.8.1_dotnet4.0-bin/ directory from > ironruby-hpricot_v0.8.1_dotnet4.0-bin.zip) into a path where IronRuby > looks for libraries. > >> I get it, but I don''t know how to install or copy >> the files in the specific directories in order to >> be used as a gem... > > Unfortunately I haven''t yet bundled the library into a gem file, and I > still need to find the time to test if it still works with the latest > release of IronRuby (1.1.1) or the current master branch on Git :-( > > -- > Daniele Alessandri > http://clorophilla.net/ > http://twitter.com/JoL1hAHN-- Posted via http://www.ruby-forum.com/.
You can still update those version numbers to unblock yourself. If you don''t know how to contribute, either ask the author or open a bug on the IronRuby.Hpricot site. On Fri, Dec 3, 2010 at 9:05 AM, Eduardo Blumenfeld <lists at ruby-forum.com>wrote:> Hi Daniele, > > Thank you for the quick response, > > Unfortunately it is not workin with the version 1.1 of IronRuby, > It seems to me that the problem has to do with a hard-coded reference > to the 1.0 libraries in IronRuby.Hpricot.csproj : > <ItemGroup> > <Reference Include="IronRuby, Version=1.0.0.0, Culture=neutral, > PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> > <SpecificVersion>False</SpecificVersion> > <HintPath>..\deps\IronRuby.dll</HintPath> > </Reference> > <Reference Include="IronRuby.Libraries, Version=1.0.0.0, > Culture=neutral, PublicKeyToken=31bf3856ad364e35, > processorArchitecture=MSIL"> > <SpecificVersion>False</SpecificVersion> > <HintPath>..\deps\IronRuby.Libraries.dll</HintPath> > </Reference> > <Reference Include="Microsoft.Dynamic, Version=1.0.0.0, > Culture=neutral, PublicKeyToken=31bf3856ad364e35, > processorArchitecture=MSIL"> > <SpecificVersion>False</SpecificVersion> > <HintPath>..\deps\Microsoft.Dynamic.dll</HintPath> > </Reference> > <Reference Include="Microsoft.Scripting, Version=1.0.0.0, > Culture=neutral, PublicKeyToken=31bf3856ad364e35, > processorArchitecture=MSIL"> > <SpecificVersion>False</SpecificVersion> > <HintPath>..\deps\Microsoft.Scripting.dll</HintPath> > </Reference> > <Reference Include="Microsoft.Scripting.Core, Version=1.0.0.0, > Culture=neutral, PublicKeyToken=31bf3856ad364e35, > processorArchitecture=MSIL"> > <SpecificVersion>False</SpecificVersion> > <HintPath>..\deps\Microsoft.Scripting.Core.dll</HintPath> > </Reference> > <Reference Include="System" /> > <Reference Include="System.Data" /> > <Reference Include="System.Xml" /> > </ItemGroup> > > Unfortunately I don''t know too much about git and how to branch, compile > and contribute. > > Thank you anyways. > > Eduardo > > Daniele Alessandri wrote in post #965909: > > On Fri, Dec 3, 2010 at 02:32, Eduardo Blumenfeld <lists at ruby-forum.com> > > wrote: > > > >> Does anyone has instructions on how to install > >> the Hpricot port to .net called IronRuby-hpricot? > > > > You should just copy the contents of the directory from one of those > > compressed file (e.g. everything contained inside the > > ironruby-hpricot_v0.8.1_dotnet4.0-bin/ directory from > > ironruby-hpricot_v0.8.1_dotnet4.0-bin.zip) into a path where IronRuby > > looks for libraries. > > > >> I get it, but I don''t know how to install or copy > >> the files in the specific directories in order to > >> be used as a gem... > > > > Unfortunately I haven''t yet bundled the library into a gem file, and I > > still need to find the time to test if it still works with the latest > > release of IronRuby (1.1.1) or the current master branch on Git :-( > > > > -- > > Daniele Alessandri > > http://clorophilla.net/ > > http://twitter.com/JoL1hAHN > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20101203/808a04fb/attachment-0001.html>