Project

blade

0.05
Low commit activity in last 3 years
There's a lot of open issues
No release in over a year
Sprockets test runner and toolkit
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 2.0
>= 10.0

Runtime

 Project Readme

Blade

A Sprockets Toolkit for Building and Testing JavaScript Libraries

Getting Started

Add Blade to your Gemfile.

source "https://rubygems.org"

gem 'blade'

Create a .blade.yml (or blade.yml) file in your project’s root, and define your Sprockets load paths and logical paths. Example:

# .blade.yml
load_paths:
  - src
  - test/src
  - test/vendor

logical_paths:
  - widget.js
  - test.js

Compiling

Configure your build paths and compressors:

# .blade.yml

build:
  logical_paths:
    - widget.js
  path: dist
  js_compressor: uglifier # Optional

Run bundle exec blade build to compile dist/widget.js.

Testing Locally

By default, Blade sets up a test runner using QUnit via the blade-qunit_adapter gem.

Run bundle exec blade runner to launch Blade’s test console and open the URL it displays in one or more browsers. Blade detects changes to your logical paths and automatically restarts the test suite.

Blade Runner

Testing on CI

Run bundle exec blade ci to start Blade’s test console in non-interactive CI mode, and launch a browser pointed at Blade’s testing URL (usually http://localhost:9876). The process will return 0 on success and non-zero on failure.

To test on multiple browsers with Sauce Labs, see the Sauce Labs plugin.

Projects Using Blade


Licensed under the MIT License

© 2016 Javan Makhmali