joosy 1.2.0.alpha.9 → 1.2.0.alpha.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bower.json +1 -1
- data/package.json +1 -1
- data/src/joosy/generators/project/base.coffee +1 -0
- data/src/joosy/generators/project.coffee +6 -0
- data/templates/application/base/application.coffee +1 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 189119c3f0d2f0f5b9da50851e9058ea61365316
|
4
|
+
data.tar.gz: 2a97d4505ddc4b870ae3988e6aad53bfd71d36e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8bb5362e0e7eb269121479678726ceffc5ed6b69895fe4312662554560663de52271f94d54eb7b2789938888db18681a58c1b554ab85738697d9e7f6d4b0f00
|
7
|
+
data.tar.gz: aeaf3f0e04501d291a5c2209317884fe8ec049a37947f7271326d69ff8a8d60d0eb7ed50398fdc459fe5c166f9f5b82a402820553d0f399b1676dc93a7389d20
|
data/bower.json
CHANGED
data/package.json
CHANGED
@@ -4,6 +4,12 @@ Path = require 'path'
|
|
4
4
|
|
5
5
|
module.exports = class
|
6
6
|
constructor: (@options) ->
|
7
|
+
@options.dependencies = """
|
8
|
+
#= require jquery/jquery.js
|
9
|
+
#= require jquery-form/jquery.form.js
|
10
|
+
#= require sugar/release/sugar-full.min.js
|
11
|
+
"""
|
12
|
+
|
7
13
|
@standalone = new Standalone(@options)
|
8
14
|
@base = new Base(@options, Path.join(@standalone.destination, 'source'))
|
9
15
|
|