join 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,10 +21,3 @@ module Join
21
21
 
22
22
  end
23
23
 
24
- compiler = Join::Compiler.new({:dest => "compiled", :compressed => true})
25
-
26
- compiler.join([
27
- 'src/1.css',
28
- 'src/2.css'
29
- ])
30
-
@@ -1,5 +1,5 @@
1
1
  module Join
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
4
4
 
5
5
 
data/readme.md CHANGED
@@ -1,6 +1,7 @@
1
1
  #Join
2
2
 
3
- Join is an asset manager for concatenating together files for deployment.
3
+ Join is an file manager for concatenating together .js or css files for deployment. It uses the Google closure
4
+ compiler to compress javascript.
4
5
 
5
6
  ##Installation
6
7
 
@@ -8,7 +9,7 @@ Join is an asset manager for concatenating together files for deployment.
8
9
 
9
10
  ##Usage
10
11
 
11
- join file1.js file2.js file3.js
12
+ $ join file1.js file2.js file3.js
12
13
 
13
14
  ##Calling directly
14
15
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: join
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-09-18 00:00:00.000000000Z
12
+ date: 2011-09-19 00:00:00.000000000Z
13
13
  dependencies: []
14
14
  description: A Ruby library for joining files together. Principally aimed at joining
15
15
  JavaScript modules
@@ -29,10 +29,6 @@ files:
29
29
  - lib/join/compiler.rb
30
30
  - lib/join/compressor.rb
31
31
  - lib/join/version.rb
32
- - lib/src/1.css
33
- - lib/src/1.js
34
- - lib/src/2.css
35
- - lib/src/2.js
36
32
  - readme.md
37
33
  - test/tc_join.rb
38
34
  homepage: ''
@@ -1,40 +0,0 @@
1
- hr {
2
- display: block;
3
- height: 1px;
4
- border: 0;
5
- border-top: 1px solid #cccccc;
6
- margin: 20px 0 19px 0;
7
- padding: 0; }
8
-
9
- input, select {
10
- vertical-align: middle; }
11
-
12
- textarea {
13
- overflow: auto; }
14
-
15
- .ie6 legend, .ie7 legend {
16
- margin-left: -7px; }
17
-
18
- input[wtype="radio"] {
19
- vertical-align: text-bottom; }
20
-
21
- input[type="checkbox"] {
22
- vertical-align: bottom; }
23
-
24
- .ie7 input[type="checkbox"] {
25
- vertical-align: baseline; }
26
-
27
- .ie6 input {
28
- vertical-align: text-bottom; }
29
-
30
- label, input[type="button"], input[type="submit"], input[type="image"], button {
31
- cursor: pointer; }
32
-
33
- button, input, select, textarea {
34
- margin: 0; }
35
-
36
- body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, input, textarea {
37
- line-height: 20px;
38
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
39
- color: gray;
40
- font-size: 13px; }
@@ -1,3 +0,0 @@
1
- var x = 56;
2
-
3
- Object.prototype.join = function(){}
@@ -1,23 +0,0 @@
1
- /* --------------------------------------------------------------
2
- * Gravity CSS
3
- * Version 0.1
4
- * Developed by: Owain Lewis
5
- * www.owainlewis.com
6
- * License: MIT
7
- * http://www.opensource.org/licenses/mit-license.php
8
- *-------------------------------------------------------------- */
9
- html, body, div, span, object, iframe,
10
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
11
- abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
12
- small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
13
- fieldset, form, label, legend,
14
- table, caption, tbody, tfoot, thead, tr, th, td,
15
- article, aside, canvas, details, figcaption, figure,
16
- footer, header, hgroup, menu, nav, section, summary,
17
- time, mark, audio, video {
18
- margin: 0;
19
- padding: 0;
20
- border: 0;
21
- font-size: 100%;
22
- font: inherit;
23
- vertical-align: baseline; }
@@ -1,6 +0,0 @@
1
- (function(){
2
-
3
- //File number 1
4
-
5
- });
6
-