Skip to content

Commit

Permalink
jruby 1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ferventcoder committed Jun 22, 2013
1 parent 1fcce7d commit 1636813
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
23 changes: 23 additions & 0 deletions jruby/jruby.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>jruby</id>
<title>JRuby</title>
<version>1.7.4</version>
<authors>Charles Oliver Nutter, Thomas Enebo, Nick Sieger, Ola Bini</authors>
<owners>Mike Dellanoce, Rob Reynolds</owners>
<summary>JRuby is a 100% Java implementation of the Ruby programming language.</summary>
<description>JRuby is a 100% Java implementation of the Ruby programming language. It is Ruby for the JVM.</description>
<projectUrl>http://jruby.org</projectUrl>
<tags>jruby ruby java jvm admin</tags>
<!--<copyright></copyright>
<licenseUrl>__REPLACE__</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://raw.github.com/ferventcoder/nugetpackages/master/jruby/jruby.gif</iconUrl>-->
<releaseNotes></releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
<!--<file src="content\**" target="content" />-->
</files>
</package>
8 changes: 8 additions & 0 deletions jruby/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$packageName = 'jruby'
$installerType = 'exe'
$url = 'http://jruby.org.s3.amazonaws.com/downloads/1.7.4/jruby_windows_1_7_4.exe'
$url64 = 'http://jruby.org.s3.amazonaws.com/downloads/1.7.4/jruby_windows_x64_1_7_4.exe'
$silentArgs = '-q'
$validExitCodes = @(0)

Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" "$url64" -validExitCodes $validExitCodes

0 comments on commit 1636813

Please sign in to comment.