use rake-pipeline
This commit is contained in:
parent
767476a8c9
commit
c8246efab6
60
AssetFile
60
AssetFile
|
@ -0,0 +1,60 @@
|
|||
require 'rake-pipeline-web-filters'
|
||||
|
||||
output 'public/javascripts'
|
||||
input 'assets/javascripts' do
|
||||
match 'vendor/**/*.js' do
|
||||
files = %w(
|
||||
vendor/minispade.js
|
||||
vendor/jquery.min.js
|
||||
vendor/handlebars.js
|
||||
vendor/ember.js
|
||||
vendor/ember-data.js
|
||||
vendor/ansiparse.js
|
||||
vendor/i18n.js
|
||||
vendor/jquery.timeago.js
|
||||
)
|
||||
concat files, 'vendor.js'
|
||||
end
|
||||
|
||||
match '**/*.coffee' do
|
||||
coffee_script
|
||||
end
|
||||
|
||||
match '**/*.hbs' do
|
||||
handlebars
|
||||
end
|
||||
|
||||
match '{app,config,lib}/**/*.js' do
|
||||
minispade(
|
||||
string: true,
|
||||
rewrite_requires: true,
|
||||
module_id_generator: proc { |input|
|
||||
path = input.path.sub(%r(^(app|config|lib)/), '').sub(/\.js$/, '')
|
||||
# path = input.path.sub(/\\.js$/, '')
|
||||
p path
|
||||
path
|
||||
}
|
||||
)
|
||||
concat 'application.js'
|
||||
end
|
||||
end
|
||||
|
||||
output 'public/stylesheets'
|
||||
input 'assets/stylesheets' do
|
||||
match '**/*.scss' do
|
||||
filter(Rake::Pipeline::Web::Filters::TiltFilter) do |input|
|
||||
input.sub /\.scss$/, 'css'
|
||||
end
|
||||
end
|
||||
|
||||
match '**/*.css' do
|
||||
copy
|
||||
end
|
||||
end
|
||||
|
||||
output 'public'
|
||||
input 'assets', 'index.html.erb' do
|
||||
filter(Rake::Pipeline::Web::Filters::TiltFilter) do |input|
|
||||
input.sub /\.erb$/, ''
|
||||
end
|
||||
end
|
2
Gemfile
2
Gemfile
|
@ -1,2 +1,4 @@
|
|||
gem 'rake-pipeline', github: 'livingsocial/rake-pipeline'
|
||||
gem 'rake-pipeline-web-filters', github: 'wycats/rake-pipeline-web-filters'
|
||||
gem 'coffee-script'
|
||||
gem 'tilt'
|
||||
|
|
10
Gemfile.lock
10
Gemfile.lock
|
@ -16,13 +16,23 @@ GIT
|
|||
|
||||
GEM
|
||||
specs:
|
||||
coffee-script (2.2.0)
|
||||
coffee-script-source
|
||||
execjs
|
||||
coffee-script-source (1.3.3)
|
||||
execjs (1.4.0)
|
||||
multi_json (~> 1.0)
|
||||
multi_json (1.3.6)
|
||||
rack (1.4.1)
|
||||
rake (0.9.2.2)
|
||||
thor (0.15.2)
|
||||
tilt (1.3.3)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
coffee-script
|
||||
rake-pipeline!
|
||||
rake-pipeline-web-filters!
|
||||
tilt
|
||||
|
|
6
Rakefile
6
Rakefile
|
@ -1,7 +1 @@
|
|||
#!/usr/bin/env rake
|
||||
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
||||
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
||||
|
||||
require File.expand_path('../config/application', __FILE__)
|
||||
|
||||
TravisEmber::Application.load_tasks
|
||||
|
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
17
assets/index.html.erb
Normal file
17
assets/index.html.erb
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Travis CI - Distributed Continuous Integration Platform for the Open Source Community</title>
|
||||
<link rel="stylesheet" href="stylesheets/application.css">
|
||||
<script src="javascripts/vendor.js"></script>
|
||||
<script src="javascripts/application.js"></script>
|
||||
<script>
|
||||
minispade.require('app')
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<%= 'FOO' %>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
require 'routes'
|
||||
#= require_tree ./helpers
|
||||
#= require_tree ./models
|
||||
#= require_tree ./templates
|
File diff suppressed because it is too large
Load Diff
4
assets/javascripts/vendor/jquery.min.js
vendored
Normal file
4
assets/javascripts/vendor/jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
55
assets/javascripts/vendor/minispade.js
vendored
Normal file
55
assets/javascripts/vendor/minispade.js
vendored
Normal file
|
@ -0,0 +1,55 @@
|
|||
/*jshint evil:true*/
|
||||
|
||||
minispade = {
|
||||
root: null,
|
||||
modules: {},
|
||||
loaded: {},
|
||||
|
||||
globalEval: function(data) {
|
||||
if ( data ) {
|
||||
// We use execScript on Internet Explorer
|
||||
// We use an anonymous function so that context is window
|
||||
// rather than jQuery in Firefox
|
||||
( window.execScript || function( data ) {
|
||||
window[ "eval" ].call( window, data );
|
||||
} )( data );
|
||||
}
|
||||
},
|
||||
|
||||
require: function(name) {
|
||||
var loaded = minispade.loaded[name];
|
||||
var mod = minispade.modules[name];
|
||||
|
||||
if (!loaded) {
|
||||
if (mod) {
|
||||
minispade.loaded[name] = true;
|
||||
|
||||
if (typeof mod === "string") {
|
||||
this.globalEval(mod);
|
||||
} else {
|
||||
mod();
|
||||
}
|
||||
} else {
|
||||
if (minispade.root && name.substr(0,minispade.root.length) !== minispade.root) {
|
||||
return minispade.require(minispade.root+name);
|
||||
} else {
|
||||
throw "The module '" + name + "' could not be found";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return loaded;
|
||||
},
|
||||
|
||||
requireAll: function(regex) {
|
||||
for (var module in this.modules) {
|
||||
if (!this.modules.hasOwnProperty(module)) { continue; }
|
||||
if (regex && !regex.test(module)) { continue; }
|
||||
minispade.require(module);
|
||||
}
|
||||
},
|
||||
|
||||
register: function(name, callback) {
|
||||
minispade.modules[name] = callback;
|
||||
}
|
||||
};
|
|
@ -4,7 +4,11 @@
|
|||
<meta charset="UTF-8">
|
||||
<title>Travis CI - Distributed Continuous Integration Platform for the Open Source Community</title>
|
||||
<link rel="stylesheet" href="stylesheets/application.css">
|
||||
<script src="javascripts/vendor.js"></script>
|
||||
<script src="javascripts/application.js"></script>
|
||||
<script>
|
||||
minispade.require('app')
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
FOO
|
1
public/javascripts/app/templates/application.hbs
Normal file
1
public/javascripts/app/templates/application.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
Ember.TEMPLATES['application']=Ember.Handlebars.compile("<div id=\"head\">\n <a href=\"/\">Travis CI</a>\n <a href=\"#\">#</a>\n</div>\n\n<div id=\"left\">\n {{outlet left}}\n</div>\n\n<div id=\"main\">\n {{outlet main}}\n</div>\n");
|
1
public/javascripts/app/templates/builds/list.hbs
Normal file
1
public/javascripts/app/templates/builds/list.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
Ember.TEMPLATES['list']=Ember.Handlebars.compile("<table id=\"builds\">\n <thead>\n <tr>\n <th>{{t builds.name}}</th>\n <th>{{t builds.commit}}</th>\n <th>{{t builds.message}}</th>\n <th>{{t builds.duration}}</th>\n <th>{{t builds.finished_at}}</th>\n </tr>\n </thead>\n\n {{#collection tagName=\"tbody\" contentBinding=\"content\" itemViewClass=\"Travis.BuildsItemView\" itemClassBinding=\"color\"}}\n {{#with view.content}}\n <td class=\"number\"><a {{action viewBuild href=true context=\"content\"}}>{{number}}</a></td>\n <td class=\"commit\"><a {{bindAttr href=\"urlGithubCommit\"}}>{{formatCommit commit}}</a> {{commit.sha}}</td>\n <td class=\"message\">{{{formatMessage commit.message short=\"true\"}}}</td>\n <td class=\"duration\" {{bindAttr title=\"started_at\"}}>{{formatDuration duration}}</td>\n <td class=\"finished_at timeago\" {{bindAttr title=\"finished_at\"}}>{{formatTime finished_at}}</td>\n {{/with}}\n {{/collection}}\n</table>\n\n<p>\n <button {{action showMore on=\"click\" target=\"builds\" isVisibleBinding=\"hasMore\"}}>\n {{t builds.show_more}}\n </button>\n</p>\n");
|
1
public/javascripts/app/templates/builds/show.hbs
Normal file
1
public/javascripts/app/templates/builds/show.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
Ember.TEMPLATES['show']=Ember.Handlebars.compile("<div {{bindAttr class=\"classes\"}}>\n <dl class=\"summary clearfix\">\n <div class=\"left\">\n <dt>{{t builds.name}}</dt>\n <dd class=\"number\"><a {{bindAttr href=\"urlBuild\"}}>{{number}}</a></dd>\n <dt class=\"finished_at_label\">{{t builds.finished_at}}</dt>\n <dd class=\"finished_at timeago\" {{bindAttr title=\"finished_at\"}}>{{formatTime finished_at}}</dd>\n <dt>{{t builds.duration}}</dt>\n <dd class=\"duration\" {{bindAttr title=\"started_at\"}}>{{formatDuration duration}}</dd>\n </div>\n\n <div class=\"right\">\n <dt>{{t builds.commit}}</dt>\n <dd class=\"commit-hash\"><a {{bindAttr href=\"urlGithubCommit\"}}>{{formatCommit commit}}</a></dd>\n {{#if commit.compare_url}}\n <dt>{{t builds.compare}}</dt>\n <dd class=\"compare_view\"><a {{bindAttr href=\"commit.compare_url\"}}>{{pathFrom commit.compare_url}}</a></dd>\n {{/if}}\n {{#if commit.author_name}}\n <dt>{{t builds.author}}</dt>\n <dd class=\"author\"><a {{bindAttr href=\"view.urlAuthor\"}}>{{commit.author_name}}</a></dd>\n {{/if}}\n {{#if commit.committer_name}}\n <dt>{{t builds.committer}}</dt>\n <dd class=\"committer\"><a {{bindAttr href=\"urlCommitter\"}}>{{commit.committer_name}}</a></dd>\n {{/if}}\n </div>\n\n <dt>{{t builds.message}}</dt>\n <dd class=\"commit-message\">{{{formatMessage commit.message}}}</dd>\n\n {{#if isMatrix}}\n {{else}}\n <dt>{{t builds.config}}</dt>\n <dd class=\"config\">{{formatConfig config}}</dd>\n {{/if}}\n </dl>\n\n {{#if isLoaded}}\n {{#if isMatrix}}\n {{view Travis.JobsView}}\n {{else}}\n {{view Travis.LogView}}\n {{/if}}\n {{/if}}\n</div>\n");
|
1
public/javascripts/app/templates/jobs/list.hbs
Normal file
1
public/javascripts/app/templates/jobs/list.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
Ember.TEMPLATES['list']=Ember.Handlebars.compile("<table id=\"jobs\">\n <caption>{{t jobs.build_matrix}}</caption>\n <thead>\n <tr>\n {{#each configKeys}}\n <th>{{this}}</th>\n {{/each}}\n </tr>\n </thead>\n <tbody>\n {{#each requiredJobs}}\n <tr {{bindAttr class=\"color\"}}>\n <td class=\"number\"><a {{action viewJob href=true context=this}}>#{{number}}</a></td>\n <td class=\"duration\" {{bindAttr title=\"started_at\"}}>{{formatDuration duration}}</td>\n <td class=\"finished_at timeago\" {{bindAttr title=\"finished_at\"}}>{{formatTime finished_at}}</td>\n {{#each configValues}}\n <td>{{this}}</td>\n {{/each}}\n </tr>\n {{/each}}\n </tbody>\n</table>\n\n{{#if isFailureMatrix}}\n <table id=\"allow_failure_builds\">\n <caption>\n {{t jobs.allowed_failures}}{{whats_this allow_failure_help}}\n </caption>\n <thead>\n <tr>\n {{#each configKeys}}\n <th>{{this}}</th>\n {{/each}}\n </tr>\n </thead>\n <tbody>\n {{#each allowedFailureJobs}}\n <tr {{bindAttr class=\"color\"}}>\n <td class=\"number\"><a {{action viewJob href=true}}>#{{number}}</a></td>\n <td class=\"duration\" {{bindAttr title=\"started_at\"}}>{{formatDuration duration}}</td>\n <td class=\"finished_at timeago\" {{bindAttr title=\"finished_at\"}}>{{formatTime finished_at}}</td>\n {{#each configValues}}\n <td>{{this}}</td>\n {{/each}}\n </tr>\n {{/each}}\n </tbody>\n </table>\n\n <div id=\"allow_failure_help\" class=\"context_help\">\n <div class=\"context_help_caption\">{{t \"jobs.allowed_failures\"}}</div>\n <div class=\"context_help_body\">\n <p>\n Allowed Failures are items in your build matrix that are allowed to\n fail without causing the entire build to be shown as failed. This lets you add\n in experimental and preparatory builds to test against versions or\n configurations that you are not ready to officially support.\n </p>\n <p>\n You can define allowed failures in the build matrix as follows:\n </p>\n <pre>\n matrix:\n allow_failures:\n - rvm: ruby-head\n </pre>\n </div>\n </div>\n{{/if}}\n\n");
|
1
public/javascripts/app/templates/jobs/log.hbs
Normal file
1
public/javascripts/app/templates/jobs/log.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
Ember.TEMPLATES['log']=Ember.Handlebars.compile("{{! ugh ... }}\n{{#with jobs.firstObject}}\n <pre class=\"log\">{{{formatLog log.body}}}</pre>\n\n {{#if sponsor.name}}\n <p class=\"sponsor\">\n {{t builds.messages.sponsored_by}}\n <a {{bindAttr href=\"sponsor.url\"}}>{{sponsor.name}}</a>\n </p>\n {{/if}}\n{{/with}}\n");
|
1
public/javascripts/app/templates/jobs/show.hbs
Normal file
1
public/javascripts/app/templates/jobs/show.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
Ember.TEMPLATES['show']=Ember.Handlebars.compile("<div {{bindAttr class=\"color\"}}>\n <dl class=\"summary clearfix\">\n <div class=\"left\">\n <dt>Job</dt>\n <dd class=\"number\"><a {{bindAttr href=\"urlJob\"}}>{{number}}</a></dd>\n <dt class=\"finished_at_label\">{{t jobs.finished_at}}</dt>\n <dd class=\"finished_at timeago\" {{bindAttr title=\"finished_at\"}}>{{formatTime finished_at}}</dd>\n <dt>{{t jobs.duration}}</dt>\n <dd class=\"duration\" {{bindAttr title=\"started_at\"}}>{{formatDuration duration}}</dd>\n </div>\n\n <div class=\"right\">\n <dt>{{t jobs.commit}}</dt>\n <dd class=\"commit-hash\"><a {{bindAttr href=\"urlGithubCommit\"}}>{{formatCommit commit}}</a></dd>\n {{#if commit.compare_url}}\n <dt>{{t jobs.compare}}</dt>\n <dd class=\"compare_view\"><a {{bindAttr href=\"commit.compare_url\"}}>{{pathFrom commit.compare_url}}</a></dd>\n {{/if}}\n {{#if commit.author_name}}\n <dt>{{t jobs.author}}</dt>\n <dd class=\"author\"><a {{bindAttr href=\"urlAuthor\"}}>{{commit.author_name}}</a></dd>\n {{/if}}\n {{#if commit.committer_name}}\n <dt>{{t jobs.committer}}</dt>\n <dd class=\"committer\"><a {{bindAttr href=\"urlCommitter\"}}>{{commit.committer_name}}</a></dd>\n {{/if}}\n </div>\n\n <dt>{{t jobs.message}}</dt>\n <dd class=\"commit-message\">{{formatMessage commit.message}}</dd>\n <dt>{{t jobs.config}}</dt>\n <dd class=\"config\">{{formatConfig config}}</dd>\n </dl>\n\n {{view Travis.LogView}}\n</div>\n\n");
|
1
public/javascripts/app/templates/loading.hbs
Normal file
1
public/javascripts/app/templates/loading.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
Ember.TEMPLATES['loading']=Ember.Handlebars.compile("loading stuff ...\n");
|
1
public/javascripts/app/templates/repositories/list.hbs
Normal file
1
public/javascripts/app/templates/repositories/list.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
Ember.TEMPLATES['list']=Ember.Handlebars.compile("{{#collection tagName=\"ul\" id=\"repositories\" contentBinding=\"content\" itemViewClass=\"Travis.RepositoriesItemView\" itemClassBinding=\"classes\"}}\n {{#with view.content}}\n <div class=\"wrapper\">\n <a {{action viewCurrent href=true context=\"content\"}} class=\"slug\">{{slug}}</a>\n <a {{action viewBuild href=true context=\"lastBuild\"}} class=\"build\">#{{last_build_number}}</a>\n <p class=\"summary\">\n <span class=\"duration_label\">{{t repositories.duration}}:</span>\n <abbr class=\"duration\" {{bindAttr title=\"last_build_started_at\"}}>{{formatDuration last_build_duration}}</abbr>,\n <span class=\"finished_at_label\">{{t repositories.finished_at}}:</span>\n <abbr class=\"finished_at timeago\" {{bindAttr title=\"last_build_finished_at\"}}>{{formatTime last_build_finished_at}}</abbr>\n </p>\n {{#if description}}\n <p class=\"description\">{{description}}</p>\n {{/if}}\n <span class=\"indicator\"></span>\n </div>\n {{/with}}\n{{/collection}}\n\n{{^collection contentBinding=\"repositories\" id=\"list\" class=\"loading\"}}\n <p></p>\n{{/collection}}\n");
|
1
public/javascripts/app/templates/repositories/show.hbs
Normal file
1
public/javascripts/app/templates/repositories/show.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
Ember.TEMPLATES['show']=Ember.Handlebars.compile("<h3>\n <a {{bindAttr href=\"urlGithub\"}}>{{slug}}</a>\n</h3>\n\n<p class=\"description\">{{description}}</p>\n\n<ul class=\"github-stats\">\n <li class=\"language\">{{last_build_language}}</li>\n <li><a class=\"watchers\" title=\"Watches\" {{bindAttr href=\"urlGithubWatchers\"}}>{{stats.watchers}}</a></li>\n <li><a class=\"forks\" title=\"Forks\" {{bindAttr href=\"urlGithubNetwork\"}}>{{stats.forks}}</a></li>\n</ul>\n\n{{outlet tabs}}\n\n<div class=\"tab\">\n {{outlet tab}}\n</div>\n");
|
1
public/javascripts/app/templates/repositories/tabs.hbs
Normal file
1
public/javascripts/app/templates/repositories/tabs.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
Ember.TEMPLATES['tabs']=Ember.Handlebars.compile("<ul class=\"tabs\">\n <li><a {{action viewCurrent href=true context=\"repository\"}} class=\"current\">Current</a></li>\n <li><a {{action viewHistory href=true context=\"repository\"}} class=\"history\">History</a></li>\n {{#if build}}\n <li><a {{action viewBuild href=true context=\"build\"}} class=\"build\">Build #{{build.number}}</a></li>\n {{/if}}\n {{#if job}}\n <li><a {{action viewJob href=true context=\"job\"}} class=\"job\">Job #{{job.number}}</a></li>\n {{/if}}\n</ul>\n");
|
1
public/javascripts/application.js
Normal file
1
public/javascripts/application.js
Normal file
File diff suppressed because one or more lines are too long
26088
public/javascripts/vendor.js
Normal file
26088
public/javascripts/vendor.js
Normal file
File diff suppressed because one or more lines are too long
98
public/stylesheets/application.css
Normal file
98
public/stylesheets/application.css
Normal file
|
@ -0,0 +1,98 @@
|
|||
/*
|
||||
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
||||
* listed below.
|
||||
*
|
||||
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
||||
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
||||
*
|
||||
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
||||
* compiled file, but it's generally better to create a new file per style scope.
|
||||
*
|
||||
*= require_self
|
||||
*= require_tree .
|
||||
*/
|
||||
|
||||
body {
|
||||
font-family: Helvetica;
|
||||
}
|
||||
|
||||
#head {
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#left, #main {
|
||||
float: left;
|
||||
height: 500px;
|
||||
}
|
||||
|
||||
#left {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
#main {
|
||||
width: 800px;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.tabs li {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.tab {
|
||||
clear: both;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.github-stats {
|
||||
float: right;
|
||||
width: 100px;
|
||||
}
|
||||
.github-stats li {
|
||||
float: left;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.summary .left,
|
||||
.summary .right {
|
||||
float: left;
|
||||
width: 350px;
|
||||
}
|
||||
|
||||
dt {
|
||||
clear: both;
|
||||
float: left;
|
||||
width: 60px;
|
||||
}
|
||||
dd {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.green {
|
||||
border-top: 5px solid lightgreen;
|
||||
}
|
||||
.red {
|
||||
border-top: 5px solid red;
|
||||
}
|
||||
|
||||
#jobs,
|
||||
.log {
|
||||
clear: both;
|
||||
padding-top: 20px;
|
||||
}
|
Loading…
Reference in New Issue
Block a user