Sha256: 24c62bc0d0faeb575d706be6d8420c75fdb9520736d7a265a08c4f68cf652064

Contents?: true

Size: 1.84 KB

Versions: 16

Compression:

Stored size: 1.84 KB

Contents

# Up.js: Snappy UI for server-side web applications

Up.js gives your traditional web application fast-responding views with minimal changes to your code and development style. If you require modern UX but don't want to pay the Javascript MVC complexity tax, Up.js can be a solution for you.

See [upjs.io](http://upjs.io) for more information and API documentation.

See [`CHANGELOG.md`](https://github.com/makandra/upjs/blob/master/CHANGELOG.md) for notable changes.


## Running tests

Overview:

- This currently requires Ruby
- There's a Rails app in `spec_app`
- Jasmine tests live in `spec_app/spec/javascripts`
- There are also some Cucumber integration tests left in `spec_app/features`, but this is legacy code.
  Testing with Jasmine works so well that we want the entire test suite to become pure-JS Jasmine specs.
 
To run Jasmine tests:
 
- Install Ruby 2.1.2
- `cd` into `spec_app`
- Install dependencies by running `bundle install`
- Migrate
- Start the Rails server
- Access `http://localhost:3000/specs`


## Making a new release

We are currently feeding three release channels:

- Manual download from Github
- Bower
- Rubygems (as the `upjs-rails` gem)

To make a new release:

- Edit `lib/upjs/rails/version.rb` and bump the version number. Use [semantic versioning](http://semver.org/).
- Add an entry to `CHANGELOG.md`
- Commit and push the version bump and `CHANGELOG.md`
- From the project root, type `rake assets:compile`. This will output minified JS and CSS files to the `dist` folder.
- Commit and push the generated files
- From the project root, type `rake release`. This will publish a new gem version to Rubygems.org.
  It will also push a tag for this version, which Bower requires for its own versioning scheme.

Always run `rake assets:compile` before `rake release` so the git tag points to the correct commit (required for Bower versioning).

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
upjs-rails-0.14.0 README.md
upjs-rails-0.13.0 README.md
upjs-rails-0.12.5 README.md
upjs-rails-0.12.4 README.md
upjs-rails-0.12.3 README.md
upjs-rails-0.12.2 README.md
upjs-rails-0.12.1 README.md
upjs-rails-0.12.0 README.md
upjs-rails-0.11.1 README.md
upjs-rails-0.11.0 README.md
upjs-rails-0.10.5 README.md
upjs-rails-0.10.4 README.md
upjs-rails-0.10.3 README.md
upjs-rails-0.10.2 README.md
upjs-rails-0.10.1 README.md
upjs-rails-0.10.0 README.md