JBundle
Ruby utility to help in developing JavaScript libraries. Lets you declare JavaScript libraries composed of multiple files. Easily bundle and minify your JavaScript bundles when you're done. Includes a Rack server for easy testing.
Installation
JBundle is a Ruby gem.
gem install jbundle
Usage
Define a set of javascript files to bundle and minify
JBundle.config do
version '1.6.1'
src_dir File.dirname(__FILE__) + '/src'
bundle 'foo.js' do
file 'file1.js'
file 'file2.js'
end
bundle 'foo2.js' do
file 'file3.js'
file 'file4.js'
end
file 'file4.js'
file 'text.txt'
# Filters can be use for string substitution
filter do |src, config|
src.gsub(/<VERSION>/, config.version)
end
target_dir 'dist'
end
Then write them to the configured target directory
JBundle.write!
JBundle.write! returns an array of paths of all files written.
This will write the following files:
'dist/1.6.1/foo.js'
'dist/1.6.1/foo.min.js'
'dist/1.6.1/foo2.js'
'dist/1.6.1/foo2.min.js'
'dist/1.6.1/file4.js'
'dist/1.6.1/file4.min.js'
'dist/1.6.1/text.txt'
'dist/1.6/foo.js'
'dist/1.6/foo.min.js'
'dist/1.6/foo2.js'
'dist/1.6/foo2.min.js'
'dist/1.6/file4.js'
'dist/1.6/file4.min.js'
'dist/1.6/text.txt'
Or you can build a single bundle/file dynamically (ie. for testing, or for serving and caching on first serve)
JBundle.config_from_file './JFile'
JBundle.build('foo.js').src
Or
JBundle.config_from_file './JFile'
JBundle.build('foo.js').min
You can bundle licenses in bundles. Licenses will not be minified even though they end up being part of minified files
bundle 'foo2.js' do
license 'license.txt'
file 'file3.js'
file 'file4.js'
end
All defined filters will run on the src for all these cases.
Versioned file names, jQuery style
All of the examples above bundle to versioned directories in the "dist" directory. If you want jQuery-style file names, where there's no version directory and the version number is part of the file name, you can do this:
version '1.6.1', :directory => false
bundle 'foo.js' => 'foo2-[:version].js' do
license 'license.txt'
file 'file3.js'
file 'file4.js'
end
That will produce:
'dist/foo-1.6.1.js'
'dist/foo-1.6.1.min.js'
'dist/foo-1.6.js'
'dist/foo-1.6.min.js'
That works for single-file libraries too:
file 'jquery.lightbox.js' => 'jquery.lightbox-[:version].js'
Filters
You can filter both minified and un-minified source and license content with the filter method
# Filters can be use for string substitution
filter do |src, config|
src.gsub(/<VERSION>/, config.version)
end
You can declare filters that run on un-minified output only
filter :src do |src, config|
src.gsub(/<SRC_MODE>/, 'full source')
end
... And minified output only
filter :min do |src, config|
src.gsub(/<SRC_MODE>/, 'minified source')
end
All filters must return a copy of the source, so use src.gsub instead of src.gsub!
JFile
You can add configuration in a JFile in the root of your project.
version '1.0.1'
src_dir './'
bundle 'foo.js' do
license 'license.txt'
file 'file1.js'
file 'file2.js'
end
file 'page.html'
filter do |src, config|
src.gsub! /<VERSION>/, config.version.to_s
end
target_dir 'dist'
Then you can bundle everything up with the command line tool
$ jbundle
You can run arbitrary code after writing all versioned files by registering an after_write block in your JFile. The following example copies a .swf file from the src dir to all versioned directories
after_write do |config|
config.version.releaseable.each do |version|
from = "#{config.src_dir}/foo.swf"
to = "#{config.target_dir}/#{version}/foo.swf"
puts "copying #{to}"
FileUtils.cp(from, to)
end
end
config.version.releaseble returns an array with with all created versions (ie. ['1.6.1', '1.6'] or just ['1.6.1-pre'] for prereleases).
Files in subdirectories in the src directory will keep the local directory tree, so
file 'foo/text.txt'
Ends up as ./dist/1.6/foo/text.txt and ./dist/1.6.1/foo/text.txt
You can also copy to a different file name in the target directory using hash notation
file 'foo/text.txt' => 'bar.txt'
Pre-releases
If you want a prerelease not to overwrite the previous point release, suffix it with "-pre", as in:
version '1.0.1-pre'
Test server
JBundle command-line comes with a built-in Rack server that makes it easy to test you JavaScript bundles as you develop them.
jbundle server
Starting test server on http://localhost:5555. Available bundles:
- /foo.js
Run tests on ./tests/index.html
That serves JavaScript bundles defined in your JFile in port 5555. Pass the -p option for a different port. ./tests/index.html runs your tests (Qunit by default) in the ./tests directory
You can chose what testing framework to use when initialising the project. Options are qunit and jasmine.
jbundle init foo.js --tests=jasmine
Learn more about the JBundle command-line with
jbundle help # all commands
jbundle help server # server command options
Generator
The command line has a quick generator that creates stub files for your library code, an example file and tests using Qunit.
jbundle init my_library.js
create JFile
create src
create src/license.txt
create src/my_library.js
create test
create test/index.html
create test/tests.js
create test/qunit.js
create test/qunit.css
create dist
Done. Try it!
jbundle s
open test/index.html
At the moment only Qunit is supported in the generator but others (like Jasmine) would be easy to add.
If you don't need the test stubs run the command with --no-tests
TODO
- DRY up stuff, better error handling for missing config