public
Description: Builds JavaScript projects using PackR and ERB
Homepage:
Clone URL: git://github.com/jcoglan/jake.git
jake / History.txt
100644 45 lines (23 sloc) 1.128 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
=== 1.0.0 / 2009-07-06
 
* A proper test suite is now in place.
 
* Helper methods and event hooks and are now separated. Use `jake_helper`
  and `jake_hook` instead of just `jake`.
 
* :after_build event is now called :build_complete, and we added
  a :file_created event that is called whenever a new package file is
  written to disk.
 
* Metadata can be added to packages using the :meta option. This
  data is available as Package#meta inside event hooks.
 
* Erubis is now used instead of ERB if available.
 
 
=== 0.9.3 / 2009-05-10
 
* Adds an 'extends' option to packages to allow one package to
  inherit config from another. Useful for making packages that include
  all the files from another, plus a few extras.
 
* Helper methods have access to commandline input via `options`.
 
 
=== 0.9.2 / 2008-11-14
 
* Allows '-min' suffixes to be omitted.
 
* Supports use of ERB in the jake.yml file to generate configs.
 
 
=== 0.9.1 / 2008-09-11
 
* Adds ERB support to header files.
 
 
=== 0.9.0 / 2008-09-11
 
* First release, supports packages, bundles, ERB code generation.
 
* Supports :after_build event hook for post-build tasks.