joosy 1.2.0.alpha.10 → 1.2.0.alpha.11
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 +2 -2
- data/tasks/joosy.coffee +2 -3
- data/templates/application/standalone/Gruntfile.coffee +8 -7
- data/templates/application/standalone/package.json +1 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2562609e94bd0b3bdf7a9edde2cc5d41f9290848
|
4
|
+
data.tar.gz: 4986201f074531fdbd1d50e6c733b3c78ba0ec05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02b7f851c6a7a66871a3a9f8d4c06b98f16e371925e15e8b42695357c5fffdf8469d409f22d54b89cd29f73a8c79ef16115f074f1cfc7b640036ee0ba2e402d9
|
7
|
+
data.tar.gz: 0cf587ba0d8b4af332008ccfd88332ed51ef9f9926ae25b519ab0d1946a4d23475fca95ced5dc6d5d0acc0028b6dd66beb27a8a26930ca16781c08f9a05fe008
|
data/bower.json
CHANGED
data/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
"keywords": [
|
5
5
|
"joosy"
|
6
6
|
],
|
7
|
-
"version": "1.2.0-alpha.
|
7
|
+
"version": "1.2.0-alpha.11",
|
8
8
|
"author": "Boris Staal <boris@staal.io>",
|
9
9
|
"bin": {
|
10
10
|
"joosy": "bin/joosy"
|
@@ -27,7 +27,7 @@
|
|
27
27
|
"bower": "~0.9.2",
|
28
28
|
"mincer": "~0.4.6",
|
29
29
|
"grunt-mincer": "~0.3.1",
|
30
|
-
"grunt-contrib-jasmine": "
|
30
|
+
"grunt-contrib-jasmine": "~0.5.1",
|
31
31
|
"grunt-contrib-watch": "~0.4.4",
|
32
32
|
"grunt-contrib-coffee": "~0.7.0",
|
33
33
|
"grunt-contrib-connect": "~0.3.0",
|
data/tasks/joosy.coffee
CHANGED
@@ -5,13 +5,12 @@ module.exports = (grunt) ->
|
|
5
5
|
grunt.loadNpmTasks 'grunt-mincer'
|
6
6
|
grunt.loadNpmTasks 'grunt-contrib-connect'
|
7
7
|
grunt.loadNpmTasks 'grunt-contrib-uglify'
|
8
|
-
grunt.loadNpmTasks 'grunt-contrib-stylus'
|
9
8
|
grunt.loadNpmTasks 'grunt-contrib-cssmin'
|
10
9
|
grunt.loadNpmTasks 'grunt-bower-task'
|
11
10
|
|
12
11
|
grunt.registerTask 'joosy:compile', ['joosy:compile:code', 'joosy:compile:styles', 'joosy:compile:playground']
|
13
|
-
grunt.registerTask 'joosy:compile:code', ['mince:
|
14
|
-
grunt.registerTask 'joosy:compile:styles', ['
|
12
|
+
grunt.registerTask 'joosy:compile:code', ['mince:code', 'uglify:application']
|
13
|
+
grunt.registerTask 'joosy:compile:styles', ['mince:styles', 'cssmin:application']
|
15
14
|
|
16
15
|
grunt.registerTask 'joosy:compile:playground', ->
|
17
16
|
hamlc = require 'haml-coffee'
|
@@ -16,16 +16,17 @@ module.exports = (grunt) ->
|
|
16
16
|
base: 'public'
|
17
17
|
|
18
18
|
mince:
|
19
|
-
|
19
|
+
code:
|
20
20
|
include: ['source', 'components', 'vendor', 'node_modules/joosy/src']
|
21
21
|
src: 'application.coffee'
|
22
22
|
dest: 'public/assets/application.js'
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
23
|
+
styles:
|
24
|
+
include: ['stylesheets', 'public']
|
25
|
+
src: 'application.styl'
|
26
|
+
dest: 'public/assets/application.css'
|
27
|
+
configure: (mincer) ->
|
28
|
+
mincer.StylusEngine.registerConfigurator (stylus) ->
|
29
|
+
stylus.use require('nib')()
|
29
30
|
|
30
31
|
uglify:
|
31
32
|
application:
|
@@ -9,11 +9,10 @@
|
|
9
9
|
"nib": "~0.9.1",
|
10
10
|
"haml-coffee": "~1.11.1",
|
11
11
|
"grunt": "~0.4.1",
|
12
|
-
"grunt-mincer": "
|
12
|
+
"grunt-mincer": "git://github.com/inossidabile/grunt-mincer.git",
|
13
13
|
"grunt-contrib-connect": "~0.3.0",
|
14
14
|
"grunt-contrib-uglify": "~0.2.2",
|
15
15
|
"grunt-contrib-watch": "~0.4.4",
|
16
|
-
"grunt-contrib-stylus": "~0.5.0",
|
17
16
|
"grunt-contrib-cssmin": "~0.6.1",
|
18
17
|
"grunt-bower-task": "~0.2.3",
|
19
18
|
"grunt-cli": "~0.1.9"
|
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.
|
4
|
+
version: 1.2.0.alpha.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boris Staal
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2013-06-
|
14
|
+
date: 2013-06-25 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: sprockets
|