-
-
Save ellneal/f12858c5d8ab7d13aaea to your computer and use it in GitHub Desktop.
Revisions
-
brianstorti revised this gist
Dec 4, 2012 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -22,6 +22,11 @@ <description></description> <defaultValue></defaultValue> </hudson.model.StringParameterDefinition> <hudson.model.StringParameterDefinition> <name>JANKY_BRANCH</name> <description></description> <defaultValue></defaultValue> </hudson.model.StringParameterDefinition> </parameterDefinitions> </hudson.model.ParametersDefinitionProperty> <com.tikal.hudson.plugins.notification.HudsonNotificationProperty> -
sr revised this gist
Mar 1, 2012 . 3 changed files with 4 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,2 @@ require File.expand_path("../config/environment", __FILE__) require "janky/tasks" 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,2 @@ require File.expand_path("../config/environment", __FILE__) run Janky.app 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ require "janky" Janky.setup(ENV) -
sr revised this gist
Mar 1, 2012 . 1 changed file with 0 additions and 63 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,63 +0,0 @@ -
sr revised this gist
Feb 10, 2012 . 2 changed files with 64 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ source "http://rubygems.org" gem "janky", "~>0.9" gem "pg" gem "thin" 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,63 @@ <?xml version='1.0' encoding='UTF-8'?> <project> <actions/> <name><%= name %></name> <logRotator> <daysToKeep>-1</daysToKeep> <numToKeep>-1</numToKeep> <artifactDaysToKeep>-1</artifactDaysToKeep> <artifactNumToKeep>-1</artifactNumToKeep> </logRotator> <keepDependencies>false</keepDependencies> <properties> <hudson.model.ParametersDefinitionProperty> <parameterDefinitions> <hudson.model.StringParameterDefinition> <name>JANKY_SHA1</name> <description></description> <defaultValue></defaultValue> </hudson.model.StringParameterDefinition> <hudson.model.StringParameterDefinition> <name>JANKY_ID</name> <description></description> <defaultValue></defaultValue> </hudson.model.StringParameterDefinition> </parameterDefinitions> </hudson.model.ParametersDefinitionProperty> <com.tikal.hudson.plugins.notification.HudsonNotificationProperty> <endpoints> <com.tikal.hudson.plugins.notification.Endpoint> <protocol>HTTP</protocol> <url><%= callback_url %></url> </com.tikal.hudson.plugins.notification.Endpoint> </endpoints> </com.tikal.hudson.plugins.notification.HudsonNotificationProperty> </properties> <scm class="hudson.scm.NullSCM"/> <assignedNode>master</assignedNode> <canRoam>false</canRoam> <disabled>false</disabled> <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding> <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding> <triggers class="vector"/> <concurrentBuild>false</concurrentBuild> <builders> <hudson.tasks.Shell> <command> if [ ! -d "./.git" ]; then git init git remote add origin <%= repo %> fi git fetch -q origin git reset -q --hard $JANKY_SHA1 if [ -f script/cibuild ]; then script/cibuild else bundle install --path vendor/gems --binstubs bundle exec rake fi</command> </hudson.tasks.Shell> </builders> <publishers/> <buildWrappers/> </project> -
sr revised this gist
Dec 19, 2011 . 1 changed file with 0 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,3 @@ require "janky" Janky.setup(ENV) run Janky.app -
sr revised this gist
Dec 19, 2011 . 35 changed files with 0 additions and 85 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,85 +0,0 @@ Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown. -
sr revised this gist
Dec 19, 2011 . 40 changed files with 164 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ source "http://rubygems.org" gem "janky", "=0.9.0" gem "pg" gem "thin" 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,85 @@ GEM remote: http://rubygems.org/ specs: activemodel (3.1.3) activesupport (= 3.1.3) builder (~> 3.0.0) i18n (~> 0.6) activerecord (3.1.3) activemodel (= 3.1.3) activesupport (= 3.1.3) arel (~> 2.2.1) tzinfo (~> 0.3.29) activesupport (3.1.3) multi_json (~> 1.0) addressable (2.2.6) arel (2.2.1) broach (0.2.1) json (~> 1.4) nap (~> 0.3) builder (3.0.0) daemons (1.1.4) eventmachine (0.12.10) faraday (0.6.1) addressable (~> 2.2.4) multipart-post (~> 1.1.0) rack (>= 1.1.0, < 2) i18n (0.6.0) janky (0.9.0) activerecord (~> 3.1.0) broach (~> 0.2) mustache (~> 0.11) rake (~> 0.9.2) replicate (~> 1.4) sinatra (~> 1.3) sinatra_auth_github (~> 0.1.5) yajl-ruby (~> 0.8) json (1.6.3) mime-types (1.17.2) multi_json (1.0.4) multipart-post (1.1.4) mustache (0.99.4) nap (0.4) oauth2 (0.4.1) faraday (~> 0.6.1) multi_json (>= 0.0.5) pg (0.12.0) rake-compiler (~> 0.7) rack (1.3.5) rack-protection (1.1.4) rack rake (0.9.2.2) rake-compiler (0.7.9) rake replicate (1.4) rest-client (1.6.7) mime-types (>= 1.16) sinatra (1.3.1) rack (~> 1.3, >= 1.3.4) rack-protection (~> 1.1, >= 1.1.2) tilt (~> 1.3, >= 1.3.3) sinatra_auth_github (0.1.5) rest-client (~> 1.6.1) sinatra (~> 1.0) warden-github (~> 0.1.1) thin (1.3.1) daemons (>= 1.0.9) eventmachine (>= 0.12.6) rack (>= 1.0.0) tilt (1.3.3) tzinfo (0.3.31) warden (1.0.6) rack (>= 1.0) warden-github (0.1.2) json (~> 1.5) oauth2 (~> 0.4.1) warden (~> 1.0.4) yajl-ruby (0.8.3) PLATFORMS ruby DEPENDENCIES janky (= 0.9.0) pg thin 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ web: bundle exec thin start -p $PORT 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ require "janky" Janky.setup(ENV) require "janky/tasks" 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ require "janky" Janky.setup(ENV) Janky::App.enable :static puts Janky::App.public_folder puts Janky::App.static puts Janky::App.root puts Janky::App.app_file run Janky.app 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,63 @@ <?xml version='1.0' encoding='UTF-8'?> <project> <actions/> <name><%= name %></name> <logRotator> <daysToKeep>-1</daysToKeep> <numToKeep>-1</numToKeep> <artifactDaysToKeep>-1</artifactDaysToKeep> <artifactNumToKeep>-1</artifactNumToKeep> </logRotator> <keepDependencies>false</keepDependencies> <properties> <hudson.model.ParametersDefinitionProperty> <parameterDefinitions> <hudson.model.StringParameterDefinition> <name>JANKY_SHA1</name> <description></description> <defaultValue></defaultValue> </hudson.model.StringParameterDefinition> <hudson.model.StringParameterDefinition> <name>JANKY_ID</name> <description></description> <defaultValue></defaultValue> </hudson.model.StringParameterDefinition> </parameterDefinitions> </hudson.model.ParametersDefinitionProperty> <com.tikal.hudson.plugins.notification.HudsonNotificationProperty> <endpoints> <com.tikal.hudson.plugins.notification.Endpoint> <protocol>HTTP</protocol> <url><%= callback_url %></url> </com.tikal.hudson.plugins.notification.Endpoint> </endpoints> </com.tikal.hudson.plugins.notification.HudsonNotificationProperty> </properties> <scm class="hudson.scm.NullSCM"/> <assignedNode>master</assignedNode> <canRoam>false</canRoam> <disabled>false</disabled> <blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding> <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding> <triggers class="vector"/> <concurrentBuild>false</concurrentBuild> <builders> <hudson.tasks.Shell> <command> if [ ! -d "./.git" ]; then git init git remote add origin <%= repo %> fi git fetch -q origin git reset -q --hard $JANKY_SHA1 if [ -f script/cibuild ]; then script/cibuild else bundle install --path vendor/gems --binstubs bundle exec rake fi</command> </hudson.tasks.Shell> </builders> <publishers/> <buildWrappers/> </project> Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown.Binary file not shown. -
sr created this gist
Dec 19, 2011 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ # Janky on Heroku This is an Heroku app for [Janky][], a continuous integration server. [Janky]: https://github.com/github/janky