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
- mes help
19
+ make sure to install middleman first
20
20
 
21
- -or
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
@@ -14,7 +14,7 @@ module MiddlemanEmberScaffold
14
14
  # Change flag to a module
15
15
  ARGV.unshift("help") if ARGV.delete("--help")
16
16
 
17
- unless ARGV[1].nil? || ARGV[1].include?("-")
17
+ unless ARGV[1].nil? || ARGV[1].start_with?("-")
18
18
  ARGV.push ARGV[1]
19
19
  ARGV[1] = '-p'
20
20
  end
@@ -1,30 +1,87 @@
1
- middleman-ember-template: with Ember.js
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
- source/
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
- Usage
24
- -----
7
+ middleman-ember-template: with Ember.js
8
+ =======================================
25
9
 
26
- 1. Download and install into ~/.middleman/ember (you'll need to create the directory it doesn't already exist)
10
+ **Template Layout**
27
11
 
28
- 2. Initialize a new middleman project with `middleman init my_project --template=ember`
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/).
@@ -1,3 +1,3 @@
1
1
  module MiddlemanEmberScaffold
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: