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
| loadTasks = require 'load-grunt-tasks' | |
| module.exports = (grunt) -> | |
| env = process.env | |
| cwd = process.cwd() | |
| root = "#{cwd}/../../go" | |
| src = "#{root}/src/#{env.src}" | |
| command = (cmd, opts) -> | |
| command: cmd |
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
| #encoding: IBM437 | |
| require 'rake' | |
| require 'fileutils' | |
| task :clean, :folder do |t, args| | |
| Music.new(args.to_hash).cleanup | |
| end | |
| task :biggie, :folder do |t, args| |
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
| #ugly | |
| (0..servers.count - 1).each { |i| servers[i][:ip] = ips[i] } | |
| #pretty | |
| servers.each_with_index { |server, i| server[:ip] = ips[i] } | |
| #beautiful | |
| servers.zip(ips) { |server, ip| server[:ip] = ip } | |
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
| # before | |
| while @servers.collect { |server| server.done? }.include? false | |
| # after | |
| until servers.all? &:done? do |
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
| fs = require 'fs' | |
| process.stdin.resume() | |
| rawData = fs.readSync process.stdin.fd, 100, 0, 'utf8' | |
| @lines = rawData[0].split '\r\n' |
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
| wd = require('wd'); | |
| browser = wd.remote 'localhost', 9134 | |
| products = [] | |
| browser.init -> | |
| browser.get "http://www.shopmania.es", -> | |
| browser.elementById 'autocomplete_prod', (err, el)-> | |
| browser.clear el, (err)-> | |
| browser.type el, '3TL941C', (err)-> |
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
| should = require 'should' | |
| describe 'cool', -> | |
| it 'is', (done) -> done() | |
| it 'is not', (done) -> | |
| process.nextTick -> | |
| true.should.be.false |
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
| class exports.Login | |
| 'when a user logs in': -> true | |
| 'it should be greeted': -> true | |
| 'when #{user} logs in': (user) -> true | |
| 'it should say #{msg}': (msg) -> true |
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
| exports.benchmark = (user_options) -> | |
| start user_options | |
| queue = async.queue run, options.workers | |
| queue.drain = finish | |
| queue.push i for i in [1..options.runs] |
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
| async.series [ | |
| (done) -> fs.writeFile '/tmp/test', 'yay', -> | |
| console.log 'yay!!' | |
| done null | |
| (done) -> | |
| console.log 'hello' | |
| done null | |
| -> console.log 'world' | |
| ] |
NewerOlder