coffee_without_nodejs 0.7.0 → 0.8.0

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: 12fcb4053d05a53dcb59ebcd1363aea2a0cb267e
4
- data.tar.gz: 9db0035e415b10be1585857d90f6785d505ff088
3
+ metadata.gz: 26f6c700ba660e8d5a5fc4b655fbdfff56a1a083
4
+ data.tar.gz: b99fe1e6622bbe6d58b1cb1a8fded9ceeb7ebd83
5
5
  SHA512:
6
- metadata.gz: 4ef014f7867eb5a27754513cf9c73b6379820d8cdf34cf4893c657c2a0a97bb39ee96e884017cf344f8e042d54fd3e4b0590fa6666d28d11c1ae06dbb8de7190
7
- data.tar.gz: 29fdfded99b3b208ea160c341368f9be9d311d21eefb662568c3678e60ddc30d30a2057f3b3ac52639065d0953af747679533ffb65e19173f7b5d16c67457211
6
+ metadata.gz: a61b43c32b9a82a1559ce818fac3f8ad811882607daa4503f3312a2b69c8933298e4ffb29383f3f470b085c1ae0570abd8e37e92088a1b80353ab19bf20183c3
7
+ data.tar.gz: 80f2def31dc54856ffce7db941a226a95c4d9ecdffc7544f21d24abc7419cc3b7f400e4d46fca0e8a68b15621d5eb44cf76a197497801073c460ea6994798d43
data/README.md CHANGED
@@ -33,23 +33,22 @@ Install via Rubygems
33
33
 
34
34
  Or ...
35
35
 
36
- $ coff some_coffee_directory
36
+ $ coff some_coffee_files_directory
37
37
 
38
38
  This will create corresponding js and source map file in same directory as coffee file live in.
39
39
 
40
- [](http://zw963.github.io/snapshot11.png)
40
+ ![Monitor](http://zw963.github.io/snapshot11.png)
41
41
 
42
42
  If one directory named 'coffee' in you project root, and run `coff` in project root.
43
+ will create two new `js` `.map` directory the same level as `coffee` directory,
44
+ with cloned directory hierarchy, store js and source map individually.
43
45
 
44
46
  $ ls
45
47
  coffee/
46
48
 
47
49
  $ coff coffee
48
-
49
- [](http://zw963.github.io/snapshot14.png)
50
-
51
- will create two new `js` `.map` directory the same level as `coffee` directory,
52
- with cloned directory hierarchy, store js and source map individually.
50
+
51
+ ![Monitor](http://zw963.github.io/snapshot14.png)
53
52
 
54
53
  Or ...
55
54
 
@@ -58,7 +57,7 @@ This will output compiled js content to STDOUT with very pretty format.
58
57
 
59
58
  $ coff some_path/file1.coffee
60
59
 
61
- [](http://zw963.github.io/snapshot11.png)
60
+ ![File](http://zw963.github.io/snapshot12.png)
62
61
 
63
62
  You still can use redirect `coff some_path/file1.coffee > another_path/file2.js` to
64
63
  save literal js outout to file2.js
@@ -2,7 +2,7 @@
2
2
  # -*- coding: utf-8 -*-
3
3
 
4
4
  module CoffeeWithoutNodejs
5
- VERSION = [0, 7, 0]
5
+ VERSION = [0, 8, 0]
6
6
 
7
7
  class << VERSION
8
8
  def to_s
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coffee_without_nodejs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Billy.Zheng(zw963)