phaser-rails 2.0.1.0

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 038f2702e0b3b45d0b1aaea3147ade23c3ab1181
4
+ data.tar.gz: 4f5832f01e157870769af16d1b52c055bffea991
5
+ SHA512:
6
+ metadata.gz: ab22b8dc9b89bfa3f7652cb037856682935070a2c3541ae5078a342e55030f5a82695ef4f22f5f04dc80d263d9188719684fef0bb6801190f891cdb8027468bf
7
+ data.tar.gz: 524970092be5ba6fe9f60f8fce19aaa502a2f417a2170b9b072995f83ec810993d8d3f0397484df7af6351eaadd8a4db06cc9b69e0833f6c6bcb1a80668b3fc9
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # phaser-rails
2
+
3
+ Phaser(http://phaser.io) is HTML5 game framework built with JavaScript.
4
+
5
+ This gem just installs phaser.min.js for you.
6
+
7
+ If it's outdated, please let me know!
8
+
9
+ ## Versioning
10
+
11
+ Version of this gem will be in <b>phaser-version.gem-patch-version</b> format.
12
+
13
+ (ex: when Phaser's version is 2.0.1 and this gem's patch version is 0, it will be '2.0.1.0')
14
+
15
+ ## Installation
16
+
17
+ Add this line to your application's Gemfile:
18
+
19
+ gem 'phaser-rails'
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install phaser-rails
28
+
29
+ ## Usage
30
+
31
+ Add `//= require phaser.min` to your `app/assets/javascripts/application.js`.
32
+
33
+ ## Contributing
34
+
35
+ 1. Fork it ( http://github.com/meinside/phaser-rails/fork )
36
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
37
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
38
+ 4. Push to the branch (`git push origin my-new-feature`)
39
+ 5. Create new Pull Request
@@ -0,0 +1,5 @@
1
+ module Phaser
2
+ module Rails
3
+ VERSION = "2.0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ require "phaser/rails/version"
2
+
3
+ module Phaser
4
+ module Rails
5
+ class Engine < ::Rails::Engine
6
+ # doing nothing here...
7
+ end
8
+ end
9
+ end