Commit Graph

15 Commits

Author SHA1 Message Date
Mathias Meyer
b3fbb5f5cf Add setting for number of concurrent builds.
Includes a little rework of the settings page to fit in an input
field.
2014-06-16 15:45:03 +02:00
Piotr Sarnacki
f5f9a77a18 Remove i18n from Assetfile 2014-01-16 20:49:54 +01:00
Piotr Sarnacki
3d0c215174 Use ember.prod.js when compiling for production
For some reason uflify fails on regular ember.js build. Using production
build fixes the problem and we should do it anyway - our assets pipeline
does some debug version cleaning, but I'm not sure if it's still
compatible with what's done when generating Ember's production build.
2014-01-09 13:20:12 +01:00
Piotr Sarnacki
5fea9d1d7b Change spec runner to qunit
New ember-testing additions can be plugged into qunit without any
changes, so the easiest way to start using it is to rewrite our tests to
qunit.
2013-07-30 17:12:58 +02:00
Sven Fuchs
e7ea4f7662 disable production compilation for now 2013-02-27 22:51:13 +01:00
Piotr Sarnacki
aac84916e2 Compress javascripts directly to app.js in production mode 2013-01-19 01:24:18 +01:00
Piotr Sarnacki
fa0ae8065a Can't pass nil as options to sass method in Assetsfile 2013-01-19 01:23:58 +01:00
Piotr Sarnacki
8aade9e2ba We don't need css compressing, sass do it (thanks @nschonni!) 2013-01-19 01:13:15 +01:00
Piotr Sarnacki
e8ce5020a4 Compress css in production mode 2013-01-18 01:22:40 +01:00
Piotr Sarnacki
fc40190c29 Optimize log viewer
Till now, log viewer was rendered in handlebars, which was the simplest
solution, but it had a major drawback - every append to log caused it to
rerender which was not efficient and memory consuming.

The new approach is to make Travis.Log interpret the log and send lines
with instructions to the view, so for example if view should add a line,
it gets something like:

    { number: 1, content: '$ bundle install' }

Such approach is required to handle cases where data coming from pusher
is not actually a new line. For example output containing dots from
tests needs to be appended:

    $ rake
    ....

Such output could be sent to client in 2 chunks: "$ rake\n.." and "..".
In such situation we would need to send 3 instructions:

  { number: 1, content: '$ rake' }
  { number: 2, content: '..'     }
  { number: 2, content: '..', append: true }

The third instruction can come much later, because tests can take a
while to run, so we can't assume that each line will come in one piece.

The other scenario is \r, for example when showing progress:

    \rDownloading: 10%
    \rDownloading: 50%
    \rDownloading: 100%

Such input should be changed into such instructions:

  { number: 1, content: 'Downloading: 10%' }
  { number: 1, content: 'Downloading: 50%',  replace: true }
  { number: 1, content: 'Downloading: 100%', replace: true }

Travis.Log also supports folds, for example on bundle install, the code
was rewritten to make folds management simpler.
2012-12-04 22:57:57 +01:00
Randy Morgan
acc48c441f Removed comment from Assetfile 2012-11-23 14:39:46 +09:00
Randy Morgan
f176a2a77f Enabled i18n-js fallbacks 2012-11-23 13:53:07 +09:00
Randy Morgan
c4bfc7b1d7 Added i18n web filters and rake task for pulling the translations down from localeapp
You will need to set ENV['LOCALEAPP'] to the secret key to run the
update. Contact randym if you need it.
2012-11-22 20:47:38 +09:00
Piotr Sarnacki
44a4466919 Set encodings to UTF-8 when compiling assets 2012-10-30 02:23:22 +01:00
Piotr Sarnacki
5c229320fa AssetFile -> Assetfile 2012-10-30 02:21:14 +01:00