exojs 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/README.md +4 -3
  2. data/lib/exojs/version.rb +1 -1
  3. data/lib/exojs.rb +8 -0
  4. metadata +2 -2
data/README.md CHANGED
@@ -5,12 +5,13 @@ This is a gem distribution of the [Exo.js](https://github.com/jpettersson/exo.js
5
5
 
6
6
  Documentation
7
7
  -------------
8
+ Library documentation can be found at the [source repository](https://github.com/jpettersson/exo.js).
8
9
 
9
- Use with Rails
10
+ Use with Rails or Middleman
10
11
  -----
11
12
 
12
13
  Add to Gemfile & bundle:
13
- ```
14
+ ```Ruby
14
15
  gem 'exojs'
15
16
  ```
16
17
 
@@ -19,4 +20,4 @@ Require Exo.js with Spine.js extensions:
19
20
  ```Ruby
20
21
  #= require 'exo'
21
22
  #= require 'exo.spine'
22
- ```
23
+ ```
data/lib/exojs/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module ExoJS
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
data/lib/exojs.rb CHANGED
@@ -1,5 +1,13 @@
1
1
  module ExoJS
2
2
 
3
+ if defined?(Rails)
4
+ module Rails
5
+ class Engine < ::Rails::Engine
6
+ # Get rails to add app, lib, vendor to load path
7
+ end
8
+ end
9
+ end
10
+
3
11
  end
4
12
 
5
13
  require_relative 'exojs/version'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exojs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-26 00:00:00.000000000 Z
12
+ date: 2013-03-27 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Gives you easy access to the latest stable version of the Exo.js JavaScript
15
15
  library, for use in Middleman, Rails or other Sprockets capable applications.