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
|
# Development notes
Version bumping
---------------
Edit the following files:
* lib/jquery-turbolinks/version.rb
* package.json
* src/jquery.turbolinks.coffee
Updating .js files
------------------
Update the .js files from the source CoffeeScript file using: (do this before
releasing)
$ rake build
Testing
-------
Simply use npm/mocha:
$ npm install
$ npm test
Or:
$ rake test
Releasing new versions
----------------------
* Bump version (see above)
* Build .js (`rake build`)
* Release into npm and rubygems (`rake release:all`)
* Draft release in https://github.com/kossnocorp/jquery.turbolinks/releases
Release it into npm/rubygems using:
$ rake release:all
|