Created
November 3, 2010 17:15
-
-
Save mariochavez/661379 to your computer and use it in GitHub Desktop.
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
<?xml version="1.0"?> | |
<configuration> | |
<configSections> | |
<!-- custom configuration section for DLR hosting --> | |
<section name="microsoft.scripting" type="Microsoft.Scripting.Hosting.Configuration.Section, Microsoft.Scripting" requirePermission="false"/> | |
</configSections> | |
<system.webServer> | |
<handlers> | |
<!-- clear all other handlers first. Don't do this if you have other handlers you want to run --> | |
<clear/> | |
<!-- This hooks up the HttpHandler which will dispatch all requests to Rack --> | |
<add name="IronRuby" path="*" verb="*" type="IronRuby.Rack.HttpHandlerFactory, IronRuby.Rack" resourceType="Unspecified" requireAccess="Read" preCondition="integratedMode"/> | |
</handlers> | |
</system.webServer> | |
<system.web> | |
<!-- make this true if you want to debug any of the DLR code, IronRuby.Rack, or your own managed code --> | |
<compilation debug="true"/> | |
<!--<httpHandlers> | |
<clear/> | |
<add path="*" verb="*" type="IronRuby.Rack.HttpHandlerFactory, IronRuby.Rack" /> | |
</httpHandlers>--> | |
</system.web> | |
<!-- DLR configuration. Set debugMode to "true" if you want to debug your dynamic language code with VS --> | |
<microsoft.scripting debugMode="false"> | |
<options> | |
<!-- Library paths: make sure these paths are correct --> | |
<!--<set option="LibraryPaths" value="..\..\..\Languages\Ruby\libs\; | |
..\..\..\..\External.LCA_RESTRICTED\Languages\Ruby\ruby-1.8.6p368\lib\ruby\site_ruby\1.8\; | |
..\..\..\..\External.LCA_RESTRICTED\Languages\Ruby\ruby-1.8.6p368\lib\ruby\1.8\"/>--> | |
<set option="LibraryPaths" value=";C:\ironruby\lib\IronRuby\;C:\ironruby\lib\ruby\site_ruby\1.8\;C:\ironruby\lib\ruby\1.8\"/> | |
</options> | |
</microsoft.scripting> | |
<appSettings> | |
<add key="AppRoot" value="..\."/> | |
<add key="Log" value="ironrack.log"/> | |
<!-- <add key="GemPath" value="..\..\..\..\External.LCA_RESTRICTED\Languages\Ruby\ruby-1.8.6p368\lib\ruby\gems\1.8"/> --> | |
<add key="GemPath" value="C:\IronRuby\Lib\ironruby\gems\1.8"/> | |
<add key="RackEnv" value="development"/> | |
</appSettings> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment