jumbler 0.0.0 → 0.0.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 +31 -0
- data/lib/gcc/compiler.jar +0 -0
- data/lib/subfolder/Copy (2) of sad.js +4 -0
- data/lib/subfolder/sad.js +6 -0
- metadata +6 -2
data/README.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# Jumbler
|
2
|
+
|
3
|
+
Jumbler is an application used to watch folders containg javascript
|
4
|
+
and pass them to Googles closure compiler upon modification
|
5
|
+
resulting in a minified file in a specified directory
|
6
|
+
|
7
|
+
Inspired by Compass and Google's Closure Compiler
|
8
|
+
|
9
|
+
##Uses
|
10
|
+
|
11
|
+
* [Listen](http://github.com/guard/listen)
|
12
|
+
* [Google Closure Compiler](http://google.com/closure/compiler)
|
13
|
+
|
14
|
+
## Requirements
|
15
|
+
|
16
|
+
* Java
|
17
|
+
* java must be accessible from command line
|
18
|
+
|
19
|
+
## Install
|
20
|
+
|
21
|
+
``` bash
|
22
|
+
gem install jumbler
|
23
|
+
```
|
24
|
+
|
25
|
+
## Usage
|
26
|
+
|
27
|
+
Change directory to where you javascript files are and call:
|
28
|
+
``` bash
|
29
|
+
jumbler
|
30
|
+
```
|
31
|
+
To stop watching the folder press CTRL + C
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jumbler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -51,8 +51,12 @@ executables:
|
|
51
51
|
extensions: []
|
52
52
|
extra_rdoc_files: []
|
53
53
|
files:
|
54
|
-
-
|
54
|
+
- README.md
|
55
55
|
- bin/jumbler
|
56
|
+
- lib/gcc/compiler.jar
|
57
|
+
- lib/jumbler.rb
|
58
|
+
- lib/subfolder/Copy (2) of sad.js
|
59
|
+
- lib/subfolder/sad.js
|
56
60
|
homepage: https://github.com/adamdama/jumbler
|
57
61
|
licenses: []
|
58
62
|
post_install_message:
|