This repository has been archived by the owner on Nov 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathportkey.json
96 lines (92 loc) · 3.23 KB
/
portkey.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"portkeys": ["ember:custom"],
"app/models/**.coffee": {
"type": "model",
"alternate": ["app/routes/%s.coffee", "app/routes/%{source|plural}.coffee", "app/routes/%{source|plural}/index.coffee"],
"related": ["app/controllers/%s.coffee", "app/controllers/%{source|plural}.coffee", "app/controllers/%{source|plural}/index.coffee"],
"template": "module.exports = App.%S = DS.Model.extend()",
"test": "tests/models/%s_test.coffee"
},
"app/views/**.coffee": {
"type": "view",
"alternate": ["app/routes/%s.coffee", "app/models/%{source|mname}.coffee"],
"related": ["app/controllers/%s.coffee", "app/templates/%s.hbs"],
"test": "tests/views/%s_test.coffee",
"template": "module.exports = App.%SView = Ember.View.extend\n templateName: '%s'"
},
"app/controllers/**.coffee": {
"type": "controller",
"alternate": ["app/routes/%s.coffee", "app/models/%{source|mname}.coffee"],
"related": ["app/templates/%s.hbs", "app/views/%s.coffee"],
"test": "tests/controllers/%s_test.coffee",
"template": "module.exports = App.%SController = Ember.ObjectController.extend()"
},
"app/routes/**.coffee": {
"type": "route",
"alternate": ["app/models/%{source|mname}.coffee"],
"related": ["app/controllers/%s.coffee", "app/templates/%s.hbs"],
"test": "tests/routes/%s_test.coffee",
"template": "module.exports = App.%SRoute = Ember.Route.extend()"
},
"app/templates/**.hbs": {
"type": "template",
"alternate": ["app/routes/%s.coffee", "app/models/%{source|mname}.coffee"],
"related": ["app/controllers/%s.coffee", "app/views/%s.coffee"],
"template": "Template for %s"
},
"app/helpers/*.coffee": {
"type": "helper",
"template": "Ember.Handlebars.helper '%s', (value, options) ->",
"test": "tests/helpers/%s_test.coffee"
},
"app/initializers/*.coffee": {
"type": "initializer",
"template": "Ember.Application.initializer\n name: '%s'\n\n initialize: (container, application) ->\n container.register('store:main', application.Store)"
},
"app/components/*.coffee": {
"type": "component",
"related": "app/templates/components/%s.hbs",
"test": "tests/components/%s_test.coffee",
"template": "module.exports = App.%SComponent = Ember.Component.extend()"
},
"app/mixins/*.coffee": {
"type": "mixin",
"template": "module.exports = App.%SMixin = Ember.Mixin.create()"
},
"app/adapters/*.coffee": {
"type": "adapter",
"test": "tests/adapters/%s.coffee",
"template": "module.exports = App.%SAdapter = DS.RESTAdapter.extend()"
},
"app/serializers/*.coffee": {
"type": "serializer",
"test": "tests/serializers/%s.coffee",
"template": "module.exports = App.%SSerializer = DS.RESTSerializer.extend()"
},
"app/config/*.coffee": {
"type": "config"
},
"config/environments/*.coffee": {
"type": "environment"
},
"app/initialize.coffee": {
"type": "initialize"
},
"app/utilities/*.coffee": {
"type": "utility",
"test": "tests/utilities/%s.coffee",
"template": "module.exports = ->\n \n\n"
},
"app/assets/**": {
"type": "asset"
},
"app/styles/**.styl": {
"type": "style"
},
"test/**_test.coffee": {
"type": "tests"
},
"test/*.coffee": {
"type": "testhelper"
}
}