joosy 1.2.0.alpha.9 → 1.2.0.alpha.10

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f48499e5f1cd22a870ec0169cb0f09230c774128
4
- data.tar.gz: cf6827058ec3bd63a66750fed7714a387a4e6658
3
+ metadata.gz: 189119c3f0d2f0f5b9da50851e9058ea61365316
4
+ data.tar.gz: 2a97d4505ddc4b870ae3988e6aad53bfd71d36e6
5
5
  SHA512:
6
- metadata.gz: cfac80113670fdad66e9df9f5183dc7309d149361d974901fbc954f3aa0c47bd1309de5f331b7e3e9bd11da558887b63707c7941a363ee16be12509001a9e3c0
7
- data.tar.gz: 56e760e70cafaa8c11a6c9d3edd3359c99fce8d1a66ef36b69f02208ecdc0bc2bca8afedd21a9c20c26ec979381c8eb05480225717f370cf52b8d6de6e6f00ef
6
+ metadata.gz: f8bb5362e0e7eb269121479678726ceffc5ed6b69895fe4312662554560663de52271f94d54eb7b2789938888db18681a58c1b554ab85738697d9e7f6d4b0f00
7
+ data.tar.gz: aeaf3f0e04501d291a5c2209317884fe8ec049a37947f7271326d69ff8a8d60d0eb7ed50398fdc459fe5c166f9f5b82a402820553d0f399b1676dc93a7389d20
data/bower.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joosy",
3
- "version": "1.2.0-alpha.9",
3
+ "version": "1.2.0-alpha.10",
4
4
  "main": "lib/joosy.js",
5
5
  "ignore": [
6
6
  "bin",
data/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "keywords": [
5
5
  "joosy"
6
6
  ],
7
- "version": "1.2.0-alpha.9",
7
+ "version": "1.2.0-alpha.10",
8
8
  "author": "Boris Staal <boris@staal.io>",
9
9
  "bin": {
10
10
  "joosy": "bin/joosy"
@@ -31,6 +31,7 @@ class ProjectBase extends @Base
31
31
 
32
32
  @template ['application', 'base', 'application.coffee'], ['application.coffee'],
33
33
  application: @options.name
34
+ dependencies: @options.dependencies.replace /^\s+|\s+$/g, ''
34
35
 
35
36
  @actions
36
37
 
@@ -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
 
@@ -1,6 +1,4 @@
1
- #= require jquery/jquery.js
2
- #= require jquery-form/jquery.form.js
3
- #= require sugar/release/sugar-full.min.js
1
+ <%= dependencies %>
4
2
  #
5
3
  #= require joosy
6
4
  #
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: joosy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0.alpha.9
4
+ version: 1.2.0.alpha.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boris Staal