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
view.js: | |
/** | |
* @jsx React.DOM | |
*/ | |
define(function(require) { | |
'use strict'; | |
var template = require('jsx!./template'), |
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
gulp = require 'gulp' | |
coffee = require 'gulp-coffee' | |
coffeelint = require 'gulp-coffeelint' | |
connect = require 'gulp-connect' | |
cached = require 'gulp-cached' | |
clean = require 'gulp-clean' | |
rjs = require 'gulp-requirejs' | |
karma = require('karma').server | |
karmaRunner = require('karma').runner | |
requirejs = require 'requirejs' |
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
Starting Build | |
Settings evaluated using empty settings script. | |
Projects loaded. Root project using build file '/maven-repo/source/sds-ui/build.gradle'. | |
Included projects: [root project 'sds-ui'] | |
Evaluating root project 'sds-ui' using build file '/maven-repo/source/sds-ui/build.gradle'. | |
All projects evaluated. | |
Selected primary task 'build' | |
Tasks to be executed: [task ':install', task ':build'] | |
:install | |
Task ':install' has not declared any outputs, assuming that it is out-of-date. |
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
{ | |
"name": "SDS-UI", | |
"description": "Software Delivery System User Interface", | |
"version": "2.0.0", | |
"license": "Copyright (c) 2005-2013 Electric Cloud, Inc.", | |
"config": { | |
"commander": "localhost" | |
}, | |
"scripts": { | |
"preinstall": "gem install bundler --no-ri --no-rdoc --conservative && bundle install", |
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
module.exports = (config) -> | |
config.set({ | |
# base path, that will be used to resolve files and exclude | |
basePath: '../' | |
frameworks: ['mocha'], | |
files: [ | |
{ | |
pattern: 'tests/vendor/*.js' |
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
{ | |
"responses": [{ | |
"job": { | |
"jobId": "97415f6f-bf41-11e3-bd92-005056330c34", | |
"jobName": "2_MyStep1_AtyomApp_Default_20140408101658", | |
"applicationName": "AtyomApp", | |
"combinedStatus": { | |
"message": "Success", | |
"status": "completed_success" | |
}, |
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
{ | |
"responses": [{ | |
"job": { | |
"jobId": "2229ebb4-c73a-11e3-8e21-005056330c34", | |
"jobName": "1_AppProc_app10_Default_20140418134344", | |
"abortStatus": "ABORT", | |
"applicationName": "app10", | |
"combinedStatus": { | |
"message": "Error", | |
"status": "completed_error" |
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
<div ng-controller="CalendarController"> | |
<!-- repeat etc --> | |
<div>Event {{name}}</div> | |
... | |
<button value="Add New Event" ng-controller="EventsController" ng-click="AddEvent()"> | |
</div> |
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
'use strict' | |
requirejs.config( | |
baseUrl: 'public/app/' | |
urlArgs: 'bust=' + Date.now() | |
config: | |
i18n: | |
locale: 'root' |
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
requirejs: | |
options: | |
baseUrl: '.' | |
appDir: 'public/app' | |
mainConfigFile: 'public/app/config.js' | |
waitSeconds: 60 | |
optimize: 'uglify2' | |
removeCombined: true | |
preserveLicenseComments: false | |
useStrict: true |
OlderNewer