Sha256: bbae59d7df2ee44a658a8bde882d0411b91ed7ef5dccc957165ab59ef75fb48a

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

# Appjs::Rails
[![Gem Version](https://badge.fury.io/rb/appjs-rails.png)](http://badge.fury.io/rb/appjs-rails)
[![Dependency Status](https://gemnasium.com/raglub/appjs-rails.png)](https://gemnasium.com/raglub/appjs-rails)

The additional library for javaScript

## Installation

Add this line to your application's Gemfile:

    gem 'appjs-rails'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install appjs-rails

## Usage

The app file will be added to the asset pipeline when you in file ```app/assets/javascripts/application.js``` add this line:

//= require app

Creation new singleton

```javascript
app._singleton.add('example', function() {
  return {
    toString: 'Class Example'
  }
} );
app.example.init();
app.example.toString; // 'Class Example'
```
Generation UUID

```javascript
app._uuid(); //6b644386-6ccb-98af-1144-6b8de194387a
```

# License

appjs-rails uses the MIT license. Please check the [LICENSE][] file for more details.

[license]: https://github.com/raglub/appjs-rails/blob/master/LICENSE

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
appjs-rails-1.0.1 README.md