This file contains 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": "marketplace", | |
"version": "0.0.0", | |
"private": true, | |
"directories": { | |
"doc": "doc", | |
"test": "tests" | |
}, | |
"scripts": { | |
"start": "ember server", |
This file contains 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": "marketplace", | |
"dependencies": { | |
"handlebars": "~1.3.0", | |
"jquery": "^1.11.1", | |
"ember": "1.8.0-beta.4", | |
"ember-data": "1.0.0-beta.10", | |
"ember-resolver": "~0.1.7", | |
"loader.js": "stefanpenner/loader.js#1.0.1", | |
"ember-cli-shims": "stefanpenner/ember-cli-shims#0.0.3", |
This file contains 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 Base | |
attr_reader :foo | |
def initialize | |
@foo = 42 | |
end | |
end | |
class Super < Base | |
attr_reader :bar |
This file contains 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
var list = new List(), | |
town = new Town(); | |
i; | |
for(i:=0;i<2;i++) { | |
list.check(); | |
} | |
town.Add('Santa Claus'); |
This file contains 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
(defn song[list] | |
(do | |
(take 2 (repeatedly #(map list check))) | |
(send santa town))) |
This file contains 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
100 files 200 files 207 text files. | |
classified 207 files Duplicate file check 207 files (185 known unique) Unique: 100 files 203 unique files. | |
Counting: 100 Counting: 200 5 files ignored. | |
http://cloc.sourceforge.net v 1.62 T=1.06 s (192.1 files/s, 6943.4 lines/s) | |
------------------------------------------------------------------------------- | |
Language files blank comment code | |
------------------------------------------------------------------------------- | |
SASS 37 502 185 2461 | |
Javascript 99 533 38 2352 |
This file contains 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
100 files 200 files 219 text files. | |
classified 219 files Duplicate file check 219 files (196 known unique) Unique: 100 files 212 unique files. | |
Counting: 100 Counting: 200 8 files ignored. | |
http://cloc.sourceforge.net v 1.62 T=1.19 s (178.6 files/s, 6617.1 lines/s) | |
------------------------------------------------------------------------------- | |
Language files blank comment code | |
------------------------------------------------------------------------------- | |
Javascript 103 552 36 2727 | |
SASS 38 505 189 2504 |
This file contains 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
100 files 200 files 221 text files. | |
classified 221 files Duplicate file check 221 files (199 known unique) Unique: 100 files 214 unique files. | |
Counting: 100 Counting: 200 8 files ignored. | |
http://cloc.sourceforge.net v 1.62 T=1.43 s (149.3 files/s, 5452.5 lines/s) | |
------------------------------------------------------------------------------- | |
Language files blank comment code | |
------------------------------------------------------------------------------- | |
Javascript 103 567 35 2737 | |
SASS 42 410 192 2506 |
This file contains 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'; | |
var path = require('path'); | |
module.exports = { | |
name: 'ember-cli-pretender', | |
included: function included(app) { | |
this.app = app; | |
if (app.env !== 'production') { |
This file contains 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
import Ember from 'ember'; | |
export default Ember.Route.extend({ | |
renderTemplate: function() { | |
this.render('loading'); | |
} | |
}); |