mes 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md
CHANGED
@@ -16,11 +16,19 @@ The commandline boilerplate was "borrowed" from middleman.
|
|
16
16
|
|
17
17
|
## Usage
|
18
18
|
|
19
|
-
|
19
|
+
make sure to install middleman first
|
20
20
|
|
21
|
-
|
21
|
+
$ gem install middleman
|
22
|
+
|
23
|
+
then
|
24
|
+
|
25
|
+
$ mes help
|
26
|
+
|
27
|
+
|
28
|
+
-or-
|
29
|
+
|
30
|
+
$ mes new [folder]
|
22
31
|
|
23
|
-
mes new [folder]
|
24
32
|
|
25
33
|
|
26
34
|
## Contributing
|
@@ -1,30 +1,87 @@
|
|
1
|
-
middleman-ember-template
|
2
|
-
|
3
|
-
|
4
|
-
**Template Layout**
|
1
|
+
Alot of the template is based off of 'middleman-ember-template'
|
2
|
+
with some tweaks in favor of coffee-script and sass.
|
5
3
|
|
6
|
-
|
7
|
-
index.html
|
8
|
-
stylesheets/
|
9
|
-
images/
|
10
|
-
app/
|
11
|
-
main.js
|
12
|
-
routes.js
|
13
|
-
controllers/ foo_controller.js
|
14
|
-
views/ foo_view.js
|
15
|
-
templates/ foo.handlebars
|
16
|
-
models/ foo.js
|
17
|
-
vendor/
|
18
|
-
javascripts/
|
19
|
-
stylesheets/
|
4
|
+
https://github.com/GutenYe/middleman-ember-template
|
20
5
|
|
21
|
-
You may also want to checkout the [Ember.js with Middleman example](https://github.com/GutenYe/example-ember-with-middleman).
|
22
6
|
|
23
|
-
|
24
|
-
|
7
|
+
middleman-ember-template: with Ember.js
|
8
|
+
=======================================
|
25
9
|
|
26
|
-
|
10
|
+
**Template Layout**
|
27
11
|
|
28
|
-
|
12
|
+
.
|
13
|
+
├── Capfile
|
14
|
+
├── Gemfile
|
15
|
+
├── README.md
|
16
|
+
├── component.json
|
17
|
+
├── components
|
18
|
+
│ ├── ember
|
19
|
+
│ │ ├── component.json
|
20
|
+
│ │ ├── ember.js
|
21
|
+
│ │ └── ember.min.js
|
22
|
+
│ ├── ember-data
|
23
|
+
│ │ ├── README.md
|
24
|
+
│ │ ├── component.json
|
25
|
+
│ │ ├── ember-data-spade.js
|
26
|
+
│ │ ├── ember-data.amd.js
|
27
|
+
│ │ ├── ember-data.js
|
28
|
+
│ │ ├── ember-data.min.js
|
29
|
+
│ │ └── ember-data.prod.js
|
30
|
+
│ ├── handlebars
|
31
|
+
│ │ ├── component.json
|
32
|
+
│ │ ├── handlebars.js
|
33
|
+
│ │ └── handlebars.runtime.js
|
34
|
+
│ └── jquery
|
35
|
+
│ ├── component.json
|
36
|
+
│ ├── composer.json
|
37
|
+
│ ├── jquery-migrate.js
|
38
|
+
│ ├── jquery-migrate.min.js
|
39
|
+
│ ├── jquery.js
|
40
|
+
│ └── jquery.min.js
|
41
|
+
├── config
|
42
|
+
│ └── deploy.rb
|
43
|
+
├── config.rb
|
44
|
+
├── source
|
45
|
+
│ ├── app
|
46
|
+
│ │ ├── application.coffee
|
47
|
+
│ │ ├── controllers
|
48
|
+
│ │ │ ├── application_controller.coffee
|
49
|
+
│ │ │ └── index_controller.coffee
|
50
|
+
│ │ ├── main.coffee
|
51
|
+
│ │ ├── models
|
52
|
+
│ │ │ └── foo.coffee
|
53
|
+
│ │ ├── routes.coffee
|
54
|
+
│ │ └── views
|
55
|
+
│ │ ├── application_view.coffee
|
56
|
+
│ │ └── index_view.coffee
|
57
|
+
│ ├── images
|
58
|
+
│ ├── index.html.haml
|
59
|
+
│ ├── layout.haml
|
60
|
+
│ ├── stylesheets
|
61
|
+
│ │ ├── application.css.scss
|
62
|
+
│ │ └── variables.scss
|
63
|
+
│ ├── swf
|
64
|
+
│ └── templates_emblem
|
65
|
+
│ ├── application
|
66
|
+
│ │ └── index.emblem
|
67
|
+
│ └── application.emblem
|
68
|
+
├── vendor
|
69
|
+
│ ├── javascripts
|
70
|
+
│ │ ├── bootstrap-dropdown.js
|
71
|
+
│ │ ├── bootstrap-modal.js
|
72
|
+
│ │ ├── bootstrap-modalmanager.js
|
73
|
+
│ │ ├── bootstrap-popover.js
|
74
|
+
│ │ ├── bootstrap-tabs.js
|
75
|
+
│ │ ├── bootstrap-tooltip.js
|
76
|
+
│ │ ├── date.js
|
77
|
+
│ │ ├── ember-data.js -> ../../components/ember-data/ember-data.js
|
78
|
+
│ │ ├── ember.js -> ../../components/ember/ember.js
|
79
|
+
│ │ ├── handlebars.js -> ../../components/handlebars/handlebars.js
|
80
|
+
│ │ ├── jquery.js -> ../../components/jquery/jquery.js
|
81
|
+
│ │ ├── jquery.validate.min.js
|
82
|
+
│ │ ├── json2.js
|
83
|
+
│ │ ├── underscore.js
|
84
|
+
│ │ └── utils.js
|
85
|
+
│ └── stylesheets
|
86
|
+
└── watch
|
29
87
|
|
30
|
-
You can read more about project templates on the [Middleman site](http://middlemanapp.com/getting-started/welcome/).
|